/* ══════════════════════════════════════════
   EVENT FEES & INFO - PREMIUM REDESIGN
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;600&display=swap');

:root {
    --event-dark: #222222;
    --event-accent: #c5a059;
    /* Gold */
    --event-soft-bg: #f9f9f9;
    --white: #ffffff;
    --glass-white: rgba(255, 255, 255, 0.15);
}

body {
    background-color: var(--white);
    color: var(--event-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

.serif-font {
    font-family: 'Cormorant Garamond', serif;
}

.ls-2 {
    letter-spacing: 2px;
}

/* ═══ CINEMATIC HERO ═══ */
.event-hero {
    /* height: 70vh; */
    background: url('img/evnt-fees-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 65px;
    padding: 150px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-title-box {
    background: var(--white);
    padding: 3rem 5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-title-box h1 {
    font-size: 3.5rem;
    letter-spacing: 5px;
    margin: 0;
    font-weight: 300;
}

/* ═══ EDITORIAL INTRO ═══ */
.editorial-intro {
    padding: 100px 0;
}

.intro-sub {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
    font-style: italic;
}

.venue-info-box {
    padding: 4rem 1rem;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

.venue-info-box::before {
    display: none;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #888;
    line-height: 2;
}

.highlight {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-weight: 500;
    color: #444;
}

.venue-list {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.venue-list p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    color: #a89476; /* Goldish light tan */
    line-height: 1.4;
}

.list-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 4px;
    border-bottom: 1px solid var(--event-accent);
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: #222;
}

.check-list {
    list-style: none;
    padding: 0;
    font-size: 1.05rem;
    color: #999;
    font-weight: 300;
}


.check-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.check-list li::before {
    content: '·';
    color: #a89476; /* Matching goldish color for bullets */
    position: absolute;
    left: 0;
    font-size: 2rem;
    line-height: 0.8;
    top: 2px;
}

.exclusions-text {
    font-size: 1.05rem;
    color: #999;
    font-weight: 300;
    line-height: 1.7;
}


/* ═══ PRICING SECTION ═══ */
.pricing-section {
    padding: 120px 0;
    background: url('img/grand.jpg') center/cover no-repeat fixed;
    position: relative;
}

.pricing-bg-layer {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.glass-pricing-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.pricing-col {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-col:last-child {
    border-right: none;
}

.pricing-card {
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    height: 100%;
}

.pricing-card h3 {
    text-decoration: underline;
    text-underline-offset: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.range-text {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.price-box {
    margin-top: auto;
}

.price {
    display: block;
    font-size: 2.2rem;
    font-weight: 200;
}

.price-meta {
    font-size: 0.9rem;
    opacity: 0.6;
    display: block;
    margin-bottom: 1rem;
}

.extra-fee {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* ═══ BUTTON ═══ */
.btn-dark-luxury {
    background: var(--event-dark);
    color: white;
    transition: all 0.4s ease;
}

.btn-dark-luxury:hover {
    background: var(--event-accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ═══ WHATSAPP FLOATING ═══ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #25d366;
    color: white;
    transform: scale(1.05);
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .pricing-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .venue-info-box {
        padding: 3rem 2rem;
    }

    .hero-title-box {
        padding: 2rem;
        width: 80%;
    }

    .hero-title-box h1 {
        font-size: 2rem;
    }
}