/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
    /* Luxury Color Palette */
    --clr-cream: #FDF9F1;
    --clr-cream-dark: #F5EFE6;
    --clr-pink-soft: #F4E3E3;
    --clr-pink: #E17596;
    --clr-pink-dark: #c95d7b;
    --clr-gold: #D4AF37;
    --clr-gold-light: #F0D58C;
    --clr-gold-dark: #A67C00;
    --clr-charcoal: #2A2A2A;
    --clr-black: #111111;
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 40px 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for sticky navbar */
}

body {
    font-family: var(--font-body);
    color: var(--clr-charcoal);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   LAYOUT UTILITIES
========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.bg-cream { background-color: var(--clr-cream); }
.dark-bg { background-color: var(--clr-black); color: var(--clr-white); }
.dark-bg-alt { background-color: var(--clr-charcoal); color: var(--clr-white); }
.gold-text { color: var(--clr-gold); }
.section-padding { padding: var(--section-pad); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-pink);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-pink-dark);
    box-shadow: 0 10px 20px rgba(225, 117, 150, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-charcoal);
    border-color: var(--clr-charcoal);
}

.btn-outline:hover {
    background-color: var(--clr-charcoal);
    color: var(--clr-white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* =========================================
   STICKY CTA
========================================= */
.sticky-cta {
    position: fixed;
    bottom: -100px; /* Hidden by default */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sticky-cta.show {
    bottom: 0;
}

@media(min-width: 768px) {
    .sticky-cta {
        display: none; /* Hide on desktop if you only want it on mobile, else adjust */
    }
}

/* =========================================
   HEADER & HERO
========================================= */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo {
    height: 60px;
    margin: 0 auto;
    display: block;
}

.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* account for fixed navbar height */
}

/* Simulated luxury background with gradient and overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('desktop%20bg.png') no-repeat top center;
    background-size: contain;
    background-color: var(--clr-cream);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
    /* Removed background box to let the beautiful background image show through */
}

/* =========================================
   COUNTDOWN TIMER
========================================= */
.countdown-card {
    background: var(--clr-cream);
    border: 1px solid var(--clr-gold-light);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.countdown-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.fomo-fire {
    color: var(--clr-pink-dark);
}

.countdown-title {
    color: var(--clr-charcoal);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-pink-dark);
    line-height: 1;
}

.time-box small {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    margin-top: 5px;
}

.colon {
    font-size: 2rem;
    color: var(--clr-pink-dark);
    font-weight: 300;
    margin-top: -15px;
}

.countdown-footer {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-gold);
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--clr-charcoal);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-weight: 500;
    flex-wrap: wrap;
}

.price-badge {
    color: var(--clr-pink);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bonus-bar {
    display: inline-block;
    padding: 12px 25px;
    background: var(--clr-gold-light);
    color: var(--clr-charcoal);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--clr-gold);
}

/* =========================================
   TYPOGRAPHY SPECIFICS
========================================= */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--clr-pink-dark);
    margin-bottom: 40px;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.large-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.highlight-text {
    color: var(--clr-gold);
    font-weight: 600;
    margin-top: 30px;
}

.highlight-price {
    background: var(--clr-gold-light);
    color: var(--clr-charcoal);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.highlight-price-box {
    background: var(--clr-gold-light);
    color: var(--clr-charcoal);
    padding: 5px 25px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* =========================================
   CARDS (WHY DIFFERENT)
========================================= */
.premium-card {
    background: var(--clr-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--clr-gold);
}

.premium-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* =========================================
   IMAGES UTILITIES
========================================= */
.hero-image-wrapper {
    margin: 40px auto 30px;
    max-width: 400px; /* Keep flyer nice and contained on mobile */
    border-radius: 12px;
    overflow: hidden;
}

.hero-flyer-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.experience-image-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.rounded-image {
    border-radius: 12px;
    width: 100%;
}

.shadow-large {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* =========================================
   TIMELINE (EXPERIENCE)
========================================= */
.timeline {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px; /* Position line between time and content */
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--clr-gold-light);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.time {
    width: 100px;
    font-weight: 600;
    color: var(--clr-gold-dark);
    padding-top: 5px;
    padding-right: 15px; /* Spacing from line */
    text-align: right;
    position: relative;
}

.time::after {
    content: '';
    position: absolute;
    left: 111px; /* Align dot center to 120px */
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--clr-gold);
    border-radius: 50%;
    border: 3px solid var(--clr-white);
}

.timeline .content {
    flex: 1;
    background: var(--clr-cream-dark);
    padding: 20px;
    border-radius: 8px;
    margin-left: 50px; /* Push content past the line */
}

.timeline .content h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.timeline .content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}

/* =========================================
   SECRET SAUCE (SPLIT LAYOUT)
========================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bullet-list {
    margin-top: 30px;
}

.bullet-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.bullet-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
}

.grid-graphic {
    background: var(--clr-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.beauty-graphic-box {
    margin-bottom: 20px;
}

.grid-caption {
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

/* =========================================
   MEET HOSTS
========================================= */
.hosts-wrapper {
    margin-top: 50px;
}

.host-card {
    background: var(--clr-cream);
    padding: 40px;
    border-radius: 12px;
}

.host-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--clr-gold-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.host-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-title {
    color: var(--clr-gold-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.host-bio {
    font-size: 0.95rem;
    color: #666;
}

/* =========================================
   WHO SHOULD ATTEND
========================================= */
.icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.icon-item {
    background: var(--clr-white);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   TESTIMONIALS
========================================= */
.stars {
    color: var(--clr-gold);
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.premium-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
}

.quote-author {
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* =========================================
   TICKETS
========================================= */
.ticket-card {
    background: var(--clr-white);
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid var(--clr-pink-soft);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--clr-gold);
}

.ticket-title {
    font-family: var(--font-body);
    letter-spacing: 2px;
    color: var(--clr-charcoal);
    margin-bottom: 30px;
}

.ticket-features {
    text-align: left;
    margin-bottom: 40px;
}

.ticket-features li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li.highlight-feature {
    color: var(--clr-gold-dark);
    font-weight: 500;
    background: var(--clr-cream);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--clr-gold-light);
    margin-top: 10px;
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-charcoal);
    margin-bottom: 30px;
}

/* =========================================
   URGENCY BANNER
========================================= */
.urgency-banner {
    background: linear-gradient(135deg, var(--clr-pink) 0%, var(--clr-pink-dark) 100%);
    color: var(--clr-white);
    padding: 60px 20px;
}

.urgency-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.urgency-desc {
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.9;
}

/* =========================================
   FAQ
========================================= */
.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--clr-gold);
    transition: transform 0.3s;
}

.accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
}

/* =========================================
   FINAL CTA & FOOTER
========================================= */
.final-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    font-size: 1.2rem;
    flex-wrap: wrap;
}

.footer {
    background: var(--clr-black);
    color: #888;
    padding: 30px 20px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

.footer a {
    color: var(--clr-gold);
}

/* =========================================
   ANIMATIONS & RESPONSIVE
========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-bg {
        background: url('mobile%20bg.png') no-repeat top center;
        background-size: cover;
    }
    
    /* Ensure the mobile menu button is visible against the dark mobile background */
    .menu-btn {
        background-color: rgba(255, 255, 255, 0.95) !important;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .premium-quote {
        font-size: 1.5rem;
    }
    .hero-content {
        padding: 30px 20px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .time-box span {
        font-size: 1.8rem;
    }
    .countdown-timer {
        gap: 8px;
    }
    .final-details {
        flex-direction: column;
        gap: 15px;
    }
    .time {
        position: absolute;
        top: -30px;
        left: 0;
        padding-left: 30px;
        width: auto;
    }
    .timeline::before {
        left: 8px;
    }
    .timeline .content {
        margin-left: 30px;
        margin-top: 20px;
    }
    .time::after {
        left: 0;
        top: 5px;
    }
}
