* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8ddd4 100%);
    overflow-x: hidden;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes morphing {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Header */
header {
    padding: 2rem 0;
    background: transparent;
    position: relative;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.tagline {
    text-align: center;
    font-size: 1.1rem;
    color: #6b5b73;
    font-style: italic;
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523496922380-91d5afba98a3?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    filter: brightness(0.7);
    animation: morphing 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    padding: 2rem;
    background: rgba(196, 125, 83, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 0 auto;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #c47d53 0%, #8b4513 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 125, 83, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 125, 83, 0.6);
}

/* Main Content */
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.content-left {
    padding-right: 2rem;
}

.content-right {
    position: relative;
}

.content-right::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #9d8189, #c47d53);
    border-radius: 50%;
    animation: morphing 15s ease-in-out infinite;
    z-index: -1;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 2.2rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #c47d53 0%, #9d8189 100%);
    border-radius: 2px;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    text-align: justify;
}

.image-container {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Destinations Grid */
.destinations {
    margin: 4rem 0;
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card .card-content {
    padding: 1.5rem;
}

.destination-card h3 {
    font-size: 1.4rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.destination-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Resources section with integrated links */
.resources {
    background: rgba(255, 255, 255, 0.3);
    padding: 3rem 2rem;
    border-radius: 30px;
    margin: 4rem 0;
    backdrop-filter: blur(10px);
}

.resources h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-item:hover {
    transform: translateY(-3px);
}

.resource-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-item p {
    margin-bottom: 1.5rem;
    color: #666;
}

.resource-link {
    display: inline-block;
    color: #c47d53;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #c47d53;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #c47d53;
    color: white;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8b4513 0%, #6b4423 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-left {
        padding-right: 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .destinations h2 {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}