
:root {
    --gold: #ffb384;
    --gold-light: #e8cc90;
    --dark: #204338;
    --dark2: #161410;
    --dark3: #fff3eb;
    --cream: #f5efe6;
    --cream2: #ede3d4;
    --text-light: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


/* ─── HEADER ─────────────────────── */




/* ─── HERO ───────────────────────── */
.hero {
    /* height: 100vh; */
    min-height: 612px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to top, rgba(10,8,5,1) 0%, rgba(10,8,5,0.3) 50%, rgba(10,8,5,0.5) 100%), url('../images/partners/destination-wedding-jim-corbett/destination-wedding-uttarakhand-resort.jpg') center/cover no-repeat;
     
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 90px;
    max-width: 860px;
    padding-inline: 24px;
    animation: fadeUp 1.2s ease both;
}

.hero-tag {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 7px 20px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

    .hero h1 em {
        font-style: italic;
        color: #ffb384;
    }

.hero p {
    font-size: 1rem;
    color: var(--cream2);
    max-width: 580px;
    margin: 0 auto 36px;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #792d12;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--gold-light);
    }

.btn-outline {
    border: 1px solid rgba(201,168,92,0.5);
    color: var(--gold);
    padding: 15px 40px;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--gold);
        background: rgba(201,168,92,0.08);
    }

/* scroll indicator */
.scroll-line {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

    .scroll-line span {
        font-size: 0.6rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
    }

    .scroll-line::after {
        content: '';
        display: block;
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollDown 2s ease infinite;
    }

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* ─── SECTIONS ───────────────────── */
section {
    padding: 100px 48px;
}

.section-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

    h2.section-title em {
        font-style: italic;
        color: var(--gold);
        display: contents;
    }

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 28px;
    opacity: 0.6;
}

p.lead {
    font-size: 1rem;
    color: #ffffff;
    max-width: 680px;
    line-height: 1.9;
}

/* ─── INTRO ──────────────────────── */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

    .intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .intro-image::before {
        content: '';
        position: absolute;
        inset: -1px;
        border: 1px solid rgba(201,168,92,0.25);
        z-index: 2;
        pointer-events: none;
    }

    .intro-image .img-badge {
        position: absolute;
        bottom: 28px;
        left: -28px;
        z-index: 3;
        background: var(--dark);
        border: 1px solid var(--gold);
        padding: 20px 28px;
        text-align: center;
    }

.img-badge .num {
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.img-badge .lbl {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream2);
}

/* ─── WHY CHOOSE ─────────────────── */
.why-section {
    background: var(--dark2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.why-card {
    background: var(--dark3);
    padding: 48px 36px;
    border-top: 2px solid transparent;
    transition: border-color 0.4s;
    position: relative;
    overflow: hidden;
}

    .why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background: rgba(201,168,92,0.04);
        transition: height 0.4s;
    }

    .why-card:hover {
        border-top-color: var(--gold);
    }

        .why-card:hover::after {
            height: 100%;
        }

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #792d12;
    margin-bottom: 14px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ─── PACKAGES ───────────────────── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pkg-card {
    border: 1px solid rgba(201,168,92,0.15);
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.3s;
    background: var(--dark3);
}

    .pkg-card:hover {
        border-color: rgba(201,168,92,0.5);
    }

    .pkg-card.featured {
        border-color: var(--gold);
    }

.pkg-badge {
    position: absolute;
    top: -1px;
    right: 28px;
    background: #792d12;
    color: #ffffff;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    font-weight: 500;
}

.pkg-name {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #792d12;
    margin-bottom: 12px;
}

.pkg-card h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 20px;
}

.pkg-list {
    list-style: none;
    margin-bottom: 32px;
}

    .pkg-list li {
        font-size: 0.85rem;
        color: var(--text-light);
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .pkg-list li::before {
            content: '✦';
            color: #792d12;
            font-size: 0.6rem;
            flex-shrink: 0;
        }

.pkg-cta {
    display: block;
    text-align: center;
    border: 1px solid #792d12;
    color: #792d12;
    padding: 12px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

    .pkg-cta:hover, .pkg-card.featured .pkg-cta {
        background: #792d12;
        color: #ffffff;
    }

/* ─── VENUE FEATURES ─────────────── */
.venues-section {
    background: var(--dark2);
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
}

.venue-item {
    background: var(--dark3);
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
}

    .venue-item h3 {
        font-size: 1.6rem;
        color: #792d12;
        margin-bottom: 12px;
    }

    .venue-item p {
        font-size: 0.88rem;
        color: var(--text-light);
    }

.venue-num {
    position: absolute;
    right: 28px;
    top: 20px;
    font-size: 4rem;
    color: rgb(121 45 18 / 38%);
    font-weight: 700;
    line-height: 1;
}

/* ─── SEO CONTENT ────────────────── */
.seo-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.seo-inner {
    max-width: 860px;
    margin: 0 auto;
}

    .seo-inner h2 {
        font-size: 2rem;
        color: #fff;
        margin: 40px 0 16px;
    }

    .seo-inner h3 {
        font-size: 1.4rem;
        color: #ffb384;
        margin: 28px 0 12px;
    }

    .seo-inner p {
        color: #ffffff;
        font-size: 0.93rem;
        margin-bottom: 16px;
        line-height: 1.9;
    }

    .seo-inner ul {
        margin: 0 0 20px 20px;
    }

        .seo-inner ul li {
            color: #ffffff;
            font-size: 0.9rem;
            padding: 4px 0;
        }

/* ─── TESTIMONIALS ───────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testi-card {
    background: var(--dark3);
    border: 1px solid rgba(201,168,92,0.1);
    padding: 36px 30px;
}

.stars {
    color: #792d12;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.testi-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-author {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #792d12;
}

/* ─── FAQ ────────────────────────── */
.faq-section {
    background: var(--dark2);
}

.faq-list {
    max-width: 820px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(201,168,92,0.15);
    padding: 24px 0;
}

.faq-q {
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-q .icon {
        color: var(--gold);
        font-size: 1.4rem;
        transition: transform 0.3s;
    }

.faq-a {
    font-size: 0.88rem;
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 14px;
}

.faq-item.open .icon {
    transform: rotate(45deg);
}

/* ─── CTA STRIP ──────────────────── */
.cta-strip {
    background: linear-gradient(135deg, #1a140a 0%, #2a1f10 50%, #1a140a 100%);
    border-top: 1px solid rgba(201,168,92,0.2);
    border-bottom: 1px solid rgba(201,168,92,0.2);
    text-align: center;
    padding: 80px 48px;
}

    .cta-strip h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 600;
        color: #fff;
        margin-bottom: 16px;
    }

    .cta-strip p {
        color: var(--text-light);
        margin-bottom: 36px;
        font-size: 0.95rem;
    }

.cta-contact {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

    .cta-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--cream);
        text-decoration: none;
        font-size: 0.85rem;
    }

        .cta-contact a span {
            color: var(--gold);
            font-size: 1.2rem;
        }

/* ─── FOOTER ─────────────────────── */


/* ─── ANIMATIONS ─────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ─── RESPONSIVE ─────────────────── */
@media (max-width: 900px) {
    section {
        padding: 70px 24px;
    }

    header {
        padding: 16px 24px;
    }

    nav {
        display: none;
    }

    .intro-grid, .venue-grid {
        grid-template-columns: 1fr;
    }

    .why-grid, .packages-grid, .testi-grid {
        grid-template-columns: 1fr;
    }

    .intro-image .img-badge {
        left: 0;
        bottom: 16px;
    }
}
