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

:root {
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --deep-purple: #1a0a2e;
    --purple: #2d1b4e;
    --lavender: #9d8ec9;
    --teal: #2dd4bf;
    --teal-dark: #0d9488;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--deep-purple);
    color: var(--white);
    overflow-x: hidden;
}

/* ── Animated Background ── */
.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 15%, rgba(45, 212, 191, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 27, 78, 0.6) 0%, transparent 70%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.25;
    animation: floatUp 18s infinite ease-in-out;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.25; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ── Urgency Banner ── */
.urgency-banner {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%);
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-purple);
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.urgency-banner span { margin: 0 0.75rem; }

/* ── Hero ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem 4rem;
}

.hero-inner {
    max-width: 820px;
    animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.8rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-em {
    font-style: italic;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--lavender);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
}

/* Price + Date badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 16px;
    padding: 1rem 1.8rem;
    min-width: 150px;
}

.badge-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 0.3rem;
}

.badge-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.badge-note {
    font-size: 0.7rem;
    color: var(--lavender);
    margin-top: 0.2rem;
    opacity: 0.8;
}

.badge.highlight {
    border-color: var(--teal);
    background: rgba(45, 212, 191, 0.06);
}

.badge.highlight .badge-value {
    color: var(--teal);
}

/* CTA button */
.cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: var(--deep-purple);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(45, 212, 191, 0.4);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(45, 212, 191, 0.55);
}

.cta-btn:hover::before { left: 100%; }

.cta-note {
    font-size: 0.8rem;
    color: var(--lavender);
    opacity: 0.8;
}

/* Spots remaining */
.spots-bar {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.06), transparent);
    border-top: 1px solid rgba(45, 212, 191, 0.15);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}

.spots-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.spots-track {
    width: 280px;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    border-radius: 3px;
    animation: fillPulse 2.5s ease-in-out infinite;
}

@keyframes fillPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.spots-subtext {
    font-size: 0.75rem;
    color: var(--lavender);
    margin-top: 0.6rem;
    opacity: 0.7;
}

/* ── What You'll Get ── */
.section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 3rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.perk {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 18px;
    padding: 1.8rem;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.perk.visible {
    opacity: 1;
    transform: translateY(0);
}

.perk:hover {
    border-color: var(--teal);
    background: rgba(45, 212, 191, 0.04);
    transform: translateY(-4px);
}

.perk-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.perk h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.perk p {
    font-size: 0.88rem;
    color: var(--lavender);
    line-height: 1.6;
    font-weight: 300;
}

/* ── Event Details ── */
.details-card {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.6) 0%, rgba(26, 10, 46, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 28px;
    padding: 3.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.details-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.detail-item h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
}

.detail-item a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.3rem;
}

.detail-item a:hover { color: var(--teal); }

.details-divider {
    width: 60px;
    height: 1px;
    background: rgba(201, 169, 98, 0.3);
    margin: 0 auto 2.5rem;
}

/* ── Path forward ── */
.path-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 212, 191, 0.04) 50%, transparent 100%);
}

.path-label {
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.path-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.path-body {
    color: var(--lavender);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.path-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.path-link:hover {
    color: var(--gold-light);
    gap: 0.9rem;
}

/* ── Final CTA ── */
.final-cta {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 1.5rem 6rem;
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.final-cta .price-callout {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--teal);
    line-height: 1;
    margin: 0.5rem 0 1rem;
}

.final-cta p {
    color: var(--lavender);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.deadline-chip {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(45, 212, 191, 0.8);
    letter-spacing: 1px;
}

/* ── Footer ── */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
}

footer a { color: var(--gold); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
footer p { color: var(--lavender); font-size: 0.85rem; margin-top: 0.8rem; }
.footer-copy { margin-top: 1.5rem; opacity: 0.5; font-size: 0.78rem; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .hero-badges { flex-direction: column; align-items: center; }
    .details-card { padding: 2rem 1.2rem; }
    .details-row { gap: 1.5rem; }
}
