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

:root {
    --primary-sand: #D2B48C;
    --secondary-terra: #CD853F;
    --accent-gold: #DAA520;
    --deep-brown: #8B4513;
    --warm-cream: #F5F5DC;
    --soft-shadow: rgba(139, 69, 19, 0.2);
    --highlight-shadow: rgba(218, 165, 32, 0.3);
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--deep-brown);
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--primary-sand) 100%);
    overflow-x: hidden;
}

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

/* Neumorphic Elements */
.neuro-card {
    background: var(--warm-cream);
    border-radius: 25px;
    box-shadow: 
        8px 8px 16px var(--soft-shadow),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.neuro-card:hover {
    box-shadow: 
        12px 12px 24px var(--soft-shadow),
        -12px -12px 24px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Hero Section with Organic Shapes */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--secondary-terra);
    border-radius: 50% 30% 70% 40%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    padding: 40px;
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--deep-brown);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-terra);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40% 60% 30% 70%;
    box-shadow: 
        15px 15px 30px var(--soft-shadow),
        -15px -15px 30px rgba(255, 255, 255, 0.7);
    animation: morphing 8s ease-in-out infinite;
}

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

/* Asymmetric Grid Layout */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 80px 0;
    grid-auto-rows: auto;
}

.destination-card {
    padding: 30px;
    height: fit-content;
}

.destination-card:nth-child(odd) {
    margin-top: 20px;
}

.destination-card:nth-child(even) {
    margin-top: -20px;
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

h2 {
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 80px 0 50px;
    color: var(--deep-brown);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Organic CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 
        6px 6px 12px var(--soft-shadow),
        -6px -6px 12px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-terra);
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 16px var(--soft-shadow),
        -8px -8px 16px rgba(255, 255, 255, 0.7);
}

/* Natural Link Integration */
.content-link {
    color: var(--secondary-terra);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.content-link:hover {
    border-bottom-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Organic Shapes Sections */
.organic-section {
    position: relative;
    margin: 100px 0;
    padding: 60px 0;
}

.organic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-sand);
    clip-path: ellipse(100% 100% at 50% 0%);
}

.testimonials {
    background: var(--primary-sand);
    padding: 80px 0;
    margin: 100px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-sand);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-sand);
    clip-path: polygon(0 0, 100% 100%, 100% 50%, 0 100%);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 30px;
    margin: 20px 0;
    box-shadow: 
        10px 10px 20px rgba(139, 69, 19, 0.15),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-card:nth-child(odd),
    .destination-card:nth-child(even) {
        margin-top: 0;
    }

    .hero::before {
        width: 120%;
        right: -30%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destination-card {
        padding: 20px;
    }
}

/* Subtle Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }