/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background-color: #fff;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
    background: #504f4f4d;
}

.navbar.scrolled {
    background: #221F1C;
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #c9a96e;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #999999;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a96e;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: #c9a96e;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-image img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 40px;
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.hero-badge-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 10px;
    color: #c9a96e;
    margin-bottom: 8px;
}

.hero-badge-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #999999;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #cab078;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    color: #bbbbbb;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #c9a96e, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 16px 40px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #c9a96e;
    color: #c9a96e;
    background: transparent;
}

.btn-outline:hover {
    background: #c9a96e;
    color: #0a0a0a;
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #c9a96e;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #cab078;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-paragraphs p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-lead {
    font-size: 18px !important;
    color: #cccccc !important;
}

.about-highlight {
    font-size: 20px !important;
    color: #c9a96e !important;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.about-closing {
    font-size: 18px !important;
    color: #cab078 !important;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: 32px !important;
}

.about-image {
    height: 600px;
    overflow: hidden;
}

.about-image img {
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ===== WELLNESS SECTION ===== */
.section-wellness {
    background: #f9f9f9;
    max-width: 100%;
    padding: 120px 60px;
}

.wellness-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.wellness-intro {
    color: #999999;
    font-size: 15px;
    line-height: 1.8;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.wellness-item {
    padding: 40px 30px;
    border: 1px solid #222222;
    transition: all 0.4s ease;
}

.wellness-item:hover {
    border-color: #c9a96e;
    transform: translateY(-8px);
}

.wellness-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #c9a96e;
    margin-bottom: 24px;
    font-weight: 400;
}

.wellness-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #9a793d;
}

.wellness-item p {
    color: #999999;
    font-size: 14px;
    line-height: 1.7;
}

.wellness-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== RESORT SECTION ===== */
.section-resort {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.resort-image {
    height: 600px;
    overflow: hidden;
}

.resort-image img {
    transition: transform 0.6s ease;
}

.resort-image:hover img {
    transform: scale(1.03);
}

.resort-text p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.resort-content .btn {
    margin-top: 20px;
}

/* ===== RESIDENCES SECTION ===== */
.section-residences {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    background: #f9f9f9;
    max-width: 100%;
    padding: 120px 60px;
}

.residences-text p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.residences-content .btn {
    margin-top: 20px;
}

.residences-image {
    height: 600px;
    overflow: hidden;
}

.residences-image img {
    transition: transform 0.6s ease;
}

.residences-image:hover img {
    transform: scale(1.03);
}

/* ===== CLUB SECTION ===== */
.section-club {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.club-description p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.club-text .btn {
    margin-top: 20px;
}

.club-image {
    height: 550px;
    overflow: hidden;
}

.club-image img {
    transition: transform 0.6s ease;
}

.club-image:hover img {
    transform: scale(1.03);
}

/* ===== LOCATION SECTION ===== */
.section-location {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    background: #f9f9f9;
    max-width: 100%;
    padding: 120px 60px;
}

.location-image {
    height: 550px;
    overflow: hidden;
}

.location-image img {
    transition: transform 0.6s ease;
}

.location-image:hover img {
    transform: scale(1.03);
}

.location-text p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.location-content .btn {
    margin-top: 20px;
}

/* ===== CULINARY SECTION ===== */
.section-culinary {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.culinary-text p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.culinary-content .btn {
    margin-top: 20px;
}

.culinary-image {
    height: 550px;
    overflow: hidden;
}

.culinary-image img {
    transition: transform 0.6s ease;
}

.culinary-image:hover img {
    transform: scale(1.03);
}

/* ===== EXPERIENCE SECTION ===== */
.section-experience {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    background: #f9f9f9;
    max-width: 100%;
    padding: 120px 60px;
}

.experience-image {
    height: 550px;
    overflow: hidden;
}

.experience-image img {
    transition: transform 0.6s ease;
}

.experience-image:hover img {
    transform: scale(1.03);
}

.experience-text p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-content .btn {
    margin-top: 20px;
}

/* ===== CTA SECTION ===== */
.section-cta {
    text-align: center;
    padding: 160px 60px;
    max-width: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 1) 0%,
        rgba(30, 25, 15, 1) 50%,
        rgba(10, 10, 10, 1) 100%
    );
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 48px;
    color: #cab078;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px;
    border-top: 1px solid #1a1a1a;
    background: #221F1C;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #c9a96e;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #666666;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-copyright {
    font-size: 12px;
    color: #444444;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section {
        padding: 80px 40px;
    }

    .nav-container {
        padding: 0 40px;
    }

    .about-grid,
    .section-resort,
    .section-residences,
    .section-club,
    .section-location,
    .section-culinary,
    .section-experience {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wellness-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image,
    .resort-image,
    .residences-image,
    .club-image,
    .location-image,
    .culinary-image,
    .experience-image {
        height: 400px;
    }

    .section-residences,
    .section-location,
    .section-experience,
    .section-wellness {
        padding: 80px 40px;
    }

    /* Reorder for mobile: image first */
    .section-residences .residences-image {
        order: -1;
    }

    .section-culinary .culinary-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 5px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .section {
        padding: 60px 24px;
    }

    .section-residences,
    .section-location,
    .section-experience,
    .section-wellness {
        padding: 60px 24px;
    }

    .wellness-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer {
        padding: 40px 24px;
    }

    .about-image,
    .resort-image,
    .residences-image,
    .club-image,
    .location-image,
    .culinary-image,
    .experience-image {
        height: 300px;
    }

    .nav-container {
        padding: 0 24px;
    }
}