/* =============================================
   INDIAN WEDDING INVITATION — Anish ❤️ Divya
   Design System & Complete Styles
   ============================================= */

/* ── DESIGN TOKENS ── */
:root {
    --royal-maroon: #800020;
    --deep-maroon: #5C0015;
    --dark-maroon: #3A000D;
    --deep-gold: #D4A843;
    --bright-gold: #F0C75E;
    --light-gold: #F5DEB3;
    --pale-gold: #FFF3D4;
    --ivory: #FFF8F0;
    --blush-pink: #F8E8E0;
    --dark-bg: #1A0808;
    --darker-bg: #0D0404;
    --rose: #E8A0A0;
    --crimson: #DC143C;
    --white: #FFFFFF;

    --font-heading: 'Cinzel Decorative', serif;
    --font-cursive: 'Great Vibes', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --font-hindi: 'Tiro Devanagari Hindi', serif;

    --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--light-gold);
    background: var(--dark-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.hidden {
    display: none !important;
}

/* ── INTRO OVERLAY ── */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: radial-gradient(ellipse at center, var(--dark-maroon) 0%, var(--darker-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

.intro-overlay.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

/* ── VIDEO INTRO SCENE ── */
.video-intro-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    animation: videoEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes videoEntrance {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tap overlay on top of video */
.video-tap-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 5;
    transition: opacity 0.5s ease;
}

.video-tap-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.tap-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
}

.tap-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--bright-gold);
    animation: tapRingPulse 2s ease-in-out infinite;
}

@keyframes tapRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(240, 199, 94, 0.4);
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(240, 199, 94, 0);
    }
}

.tap-icon {
    font-size: 2.5rem;
    animation: tapBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

@keyframes tapBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.video-tap-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    animation: tapPulse 2s ease-in-out infinite;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ── INTRO PETALS ── */
.intro-petals-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 15px;
    height: 20px;
    background: radial-gradient(ellipse at 30% 30%, #FFB6C1, #FF69B4);
    border-radius: 50% 0 50% 50%;
    opacity: 0.6;
    animation: petalFall linear infinite;
    filter: blur(0.5px);
}

@keyframes petalFall {
    0% {
        transform: translateY(-10vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.5; }
    100% {
        transform: translateY(110vh) rotate(720deg) translateX(100px);
        opacity: 0;
    }
}

@keyframes mandalaSpin {
    to { transform: rotate(360deg); }
}

/* ── MUSIC TOGGLE ── */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--deep-gold);
    background: rgba(26, 8, 8, 0.9);
    color: var(--deep-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.music-toggle:hover {
    background: rgba(212, 168, 67, 0.2);
    transform: scale(1.1);
}

.music-toggle.playing {
    animation: musicPulse 1s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(212, 168, 67, 0); }
}

.music-icon {
    width: 22px;
    height: 22px;
}

/* ── SECTIONS COMMON ── */
.section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.decorative-top {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--deep-gold), transparent);
    margin: 15px auto 10px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--rose);
    font-style: italic;
    margin-top: 5px;
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--deep-gold), transparent);
}

.ornament-diamond {
    color: var(--deep-gold);
    font-size: 0.8rem;
}

.mini-divider {
    width: 40px;
    height: 1px;
    background: var(--deep-gold);
    margin: 12px auto;
    opacity: 0.5;
}

/* Pattern backgrounds */
.section-pattern-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--deep-gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, var(--deep-gold) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* ── HERO SECTION ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--dark-maroon) 0%, var(--darker-bg) 100%);
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.08), transparent 60%);
    pointer-events: none;
}

.mandala-bg {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, 0.08);
    pointer-events: none;
}

.mandala-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    animation: mandalaSpin 40s linear infinite;
    background: conic-gradient(from 0deg, transparent, rgba(212, 168, 67, 0.04), transparent, rgba(212, 168, 67, 0.04), transparent);
}

.mandala-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -200px;
    animation: mandalaSpin 35s linear infinite reverse;
    background: conic-gradient(from 0deg, transparent, rgba(212, 168, 67, 0.03), transparent, rgba(212, 168, 67, 0.03), transparent);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.ganesh-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 168, 67, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.6)); }
}

.hero-shubh {
    font-family: var(--font-hindi);
    font-size: 1.4rem;
    color: var(--deep-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 168, 67, 0.3);
}

.hero-wedding-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--light-gold);
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Couple Photo */
.hero-couple-photo {
    margin: 15px auto 20px;
    display: flex;
    justify-content: center;
}

.photo-frame {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.couple-frame {
    width: 260px;
    height: 320px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 4px solid var(--deep-gold);
    background: var(--dark-maroon);
}

.couple-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.couple-frame:hover img {
    transform: scale(1.05);
}

.couple-frame::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid rgba(240, 199, 94, 0.3);
    pointer-events: none;
    animation: frameGlow 3s ease-in-out infinite;
}

@keyframes frameGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 168, 67, 0.2); }
    50% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.5); }
}

/* Hero Names */
.hero-names {
    font-family: var(--font-cursive);
    font-size: 4rem;
    margin-bottom: 5px;
}

.name-groom {
    color: var(--bright-gold);
    text-shadow: 0 0 30px rgba(240, 199, 94, 0.4);
    display: inline-block;
    animation: nameShimmer 3s ease-in-out infinite;
}

.name-bride {
    color: var(--bright-gold);
    text-shadow: 0 0 30px rgba(240, 199, 94, 0.4);
    display: inline-block;
    animation: nameShimmer 3s ease-in-out infinite 0.5s;
}

@keyframes nameShimmer {
    0%, 100% { text-shadow: 0 0 20px rgba(240, 199, 94, 0.3); }
    50% { text-shadow: 0 0 40px rgba(240, 199, 94, 0.7), 0 0 60px rgba(240, 199, 94, 0.3); }
}

.name-ampersand {
    color: var(--crimson);
    font-size: 2.5rem;
    margin: 0 15px;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--rose);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Countdown */
.countdown-container {
    margin-bottom: 30px;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-gold);
    opacity: 0.7;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 12px;
    padding: 15px 18px;
    min-width: 70px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    border-color: var(--deep-gold);
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--bright-gold);
    display: block;
    line-height: 1;
    text-shadow: 0 0 10px rgba(240, 199, 94, 0.3);
}

.countdown-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--light-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeInUp 1.5s ease-out 2s both;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-gold);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--deep-gold);
    border-bottom: 2px solid var(--deep-gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(8px); }
    60% { transform: rotate(45deg) translateY(4px); }
}

/* Floating Petals */
.floating-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ── COUPLE SECTION ── */
.couple-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-maroon) 50%, var(--dark-bg) 100%);
}

.couple-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.family-card {
    background: linear-gradient(145deg, rgba(128, 0, 32, 0.4), rgba(26, 8, 8, 0.8));
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.family-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.2);
}

/* Card corner ornaments */
.card-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border-color: var(--deep-gold);
    opacity: 0.6;
}
.card-corner-tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.card-corner-tr { top: 10px; right: 10px; border-top: 2px solid; border-right: 2px solid; }
.card-corner-bl { bottom: 10px; left: 10px; border-bottom: 2px solid; border-left: 2px solid; }
.card-corner-br { bottom: 10px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }

.card-header {
    margin-bottom: 15px;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--deep-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.individual-frame {
    width: 170px;
    height: 210px;
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    border: 3px solid var(--deep-gold);
    margin: 0 auto 15px;
    background: var(--dark-maroon);
}

.individual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.individual-frame:hover img {
    transform: scale(1.05);
}

/* Groom photo closer view */
.groom-frame img {
    object-position: center 20%;
    transform: scale(1.15);
}

.groom-frame:hover img {
    transform: scale(1.2);
}

/* ── BILINGUAL TEXT STYLES ── */
.hindi-text {
    font-family: var(--font-hindi);
    display: inline;
    font-size: 1em;
}

.english-sub {
    font-family: var(--font-body);
    font-size: 0.8em;
    opacity: 0.75;
    display: inline;
    letter-spacing: 1px;
}

.section-title .hindi-text {
    font-family: var(--font-hindi);
    font-size: 1.1em;
    display: block;
    margin-bottom: 4px;
}

.section-title .english-sub {
    font-size: 0.65em;
    display: block;
    opacity: 0.7;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-wedding-text .hindi-text {
    font-family: var(--font-hindi);
    font-size: 1.3em;
    display: block;
    letter-spacing: 2px;
}

.hero-wedding-text .english-sub {
    font-size: 0.9em;
    display: block;
    margin-top: 4px;
}

.hero-tagline .hindi-text {
    font-family: var(--font-hindi);
    display: block;
    font-style: normal;
    font-size: 1.1em;
}

.hero-tagline .english-sub {
    display: block;
    font-size: 0.9em;
    margin-top: 2px;
}

.countdown-label .hindi-text {
    font-family: var(--font-hindi);
    display: block;
    font-size: 1.1em;
}

.countdown-label .english-sub {
    display: block;
    font-size: 0.85em;
    margin-top: 3px;
}

.footer-message .english-sub,
.footer-family .english-sub {
    font-size: 0.75em;
    display: block;
    margin-top: 4px;
    opacity: 0.7;
}

.section-subtitle .hindi-text {
    font-family: var(--font-hindi);
    display: block;
    font-style: normal;
}

.section-subtitle .english-sub {
    display: block;
    font-size: 0.85em;
    margin-top: 2px;
}

.person-name {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--bright-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(240, 199, 94, 0.3);
}

.family-details {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gold);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--deep-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.parent-name {
    font-size: 1.1rem;
    color: var(--light-gold);
}

.lineage {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rose);
}

.address {
    font-size: 0.9rem;
    color: var(--light-gold);
    opacity: 0.8;
    line-height: 1.5;
}

/* Heart Divider */
.couple-heart-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.heart-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--deep-gold), transparent);
}

.heart-icon {
    font-size: 2rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

/* ── EVENTS TIMELINE ── */
.events-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-maroon) 50%, var(--dark-bg) 100%);
    padding-bottom: 100px;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--deep-gold), var(--deep-gold), transparent);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 30px;
    margin-bottom: 30px;
}

.timeline-item[data-side="left"] {
    left: 0;
    text-align: right;
    padding-right: 40px;
}

.timeline-item[data-side="right"] {
    left: 50%;
    text-align: left;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--deep-gold);
    border-radius: 50%;
    top: 25px;
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 0 3px var(--deep-gold), 0 0 15px rgba(212, 168, 67, 0.5);
    transition: all 0.4s ease;
    z-index: 2;
}

.timeline-item[data-side="left"] .timeline-dot {
    right: -8px;
}

.timeline-item[data-side="right"] .timeline-dot {
    left: -8px;
}

.timeline-dot.main-dot {
    width: 22px;
    height: 22px;
    background: var(--crimson);
    animation: mainDotPulse 2s ease-in-out infinite;
}

.timeline-item[data-side="left"] .main-dot {
    right: -11px;
}

.timeline-item[data-side="right"] .main-dot {
    left: -11px;
}

@keyframes mainDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px var(--deep-gold), 0 0 15px rgba(220, 20, 60, 0.5); }
    50% { box-shadow: 0 0 0 6px var(--deep-gold), 0 0 30px rgba(220, 20, 60, 0.8); }
}

.timeline-card {
    background: linear-gradient(145deg, rgba(128, 0, 32, 0.3), rgba(26, 8, 8, 0.7));
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.timeline-card:hover {
    border-color: var(--deep-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.timeline-card.main-card {
    border-color: rgba(220, 20, 60, 0.4);
    background: linear-gradient(145deg, rgba(128, 0, 32, 0.5), rgba(26, 8, 8, 0.8));
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.15);
}

.event-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.event-icon.main-icon {
    font-size: 2.5rem;
    animation: glowPulse 2s ease-in-out infinite;
}

.event-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--deep-gold);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.event-name.main-name {
    font-family: var(--font-hindi);
    font-size: 1.3rem;
    color: var(--bright-gold);
}

.event-name-en {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--deep-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-date {
    font-size: 0.95rem;
    color: var(--light-gold);
    margin-bottom: 5px;
}

.event-day {
    background: rgba(212, 168, 67, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--deep-gold);
}

.event-time {
    font-size: 1.1rem;
    color: var(--bright-gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--rose);
    font-style: italic;
    opacity: 0.85;
}

/* ── VENUE SECTION ── */
.venue-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-maroon) 50%, var(--dark-bg) 100%);
}

.venue-content {
    max-width: 600px;
    margin: 0 auto;
}

.venue-card {
    background: linear-gradient(145deg, rgba(128, 0, 32, 0.4), rgba(26, 8, 8, 0.8));
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.venue-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.venue-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--bright-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(240, 199, 94, 0.3);
}

.venue-address {
    font-size: 1.1rem;
    color: var(--light-gold);
    line-height: 1.6;
    margin-bottom: 15px;
}

.venue-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    color: var(--bright-gold);
    margin-bottom: 15px;
}

.venue-map-container {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--deep-gold), var(--bright-gold));
    color: var(--dark-maroon);
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
    margin-top: 10px;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5);
}

/* ── RSVP SECTION ── */
.rsvp-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-maroon) 50%, var(--dark-bg) 100%);
}

.invitation-message {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.invite-quote {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--light-gold);
    font-style: italic;
    line-height: 1.8;
    padding: 25px 30px;
    border-left: 3px solid var(--deep-gold);
    border-right: 3px solid var(--deep-gold);
    background: rgba(212, 168, 67, 0.05);
    border-radius: 4px;
}

.hosts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    justify-content: center;
}

.host-card {
    background: linear-gradient(145deg, rgba(128, 0, 32, 0.3), rgba(26, 8, 8, 0.7));
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 340px;
}

.host-label {
    font-family: var(--font-hindi);
    font-size: 1.1rem;
    color: var(--deep-gold);
    margin-bottom: 12px;
}

.host-name {
    font-family: var(--font-cursive);
    font-size: 1.8rem;
    color: var(--bright-gold);
}

.wellwishers-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 1.05rem;
    color: var(--light-gold);
}

.highlight-family {
    color: var(--bright-gold);
    font-weight: 600;
    margin-top: 5px;
}

.contact-section {
    text-align: center;
    margin-bottom: 30px;
}

.contact-card {
    display: inline-block;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 16px;
    padding: 20px 35px;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--deep-gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-name {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 8px;
}

.contact-phone {
    color: var(--bright-gold);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-phone:hover {
    color: var(--white);
    text-shadow: 0 0 15px rgba(240, 199, 94, 0.5);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid var(--deep-gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.calendar-btn {
    background: transparent;
    color: var(--deep-gold);
}

.calendar-btn:hover {
    background: rgba(212, 168, 67, 0.15);
    transform: translateY(-2px);
}

.share-btn {
    background: linear-gradient(135deg, var(--deep-gold), var(--bright-gold));
    color: var(--dark-maroon);
    border-color: transparent;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

/* ── FOOTER ── */
.footer-section {
    background: var(--darker-bg);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('photos/parents.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: 0;
}

.footer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, var(--darker-bg) 100%);
    z-index: 1;
}

.footer-section > * {
    position: relative;
    z-index: 2;
}

.footer-mandala {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 50%;
    animation: mandalaSpin 15s linear infinite;
    background: conic-gradient(from 0deg, transparent, rgba(212, 168, 67, 0.06), transparent, rgba(212, 168, 67, 0.06), transparent);
}

.footer-message {
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--bright-gold);
    margin-bottom: 8px;
}

.footer-family {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--deep-gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-wish {
    font-family: var(--font-hindi);
    font-size: 1.2rem;
    color: var(--deep-gold);
    margin-top: 20px;
}

.footer-translation {
    font-size: 0.9rem;
    color: var(--rose);
    margin-top: 5px;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    transform: translateX(-60px) translateY(0);
}

.reveal-left.active {
    transform: translateX(0) translateY(0);
}

.reveal-right {
    transform: translateX(60px) translateY(0);
}

.reveal-right.active {
    transform: translateX(0) translateY(0);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section {
        padding: 60px 15px;
    }

    .hero-names {
        font-size: 2.8rem;
    }

    .name-ampersand {
        font-size: 2rem;
        margin: 0 8px;
    }

    .hero-shubh {
        font-size: 1.2rem;
    }

    .couple-frame {
        width: 200px;
        height: 250px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 58px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Family cards stack */
    .couple-cards {
        flex-direction: column;
        align-items: center;
    }

    .couple-heart-divider {
        flex-direction: row;
        gap: 15px;
    }

    .heart-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--deep-gold), transparent);
    }

    .family-card {
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }

    .reveal-left, .reveal-right {
        transform: translateY(40px);
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px !important;
        padding-right: 15px !important;
    }

    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }

    .timeline-dot.main-dot {
        left: 9px !important;
    }

    .intro-names {
        font-size: 2.5rem;
    }

    .intro-mandala {
        width: 150px;
        height: 150px;
    }

    .person-name {
        font-size: 2rem;
    }

    .invite-quote {
        font-size: 1.15rem;
        padding: 20px;
    }

    .hosts-grid {
        flex-direction: column;
        align-items: center;
    }

    .host-card {
        width: 100%;
        max-width: 100%;
    }

    .venue-card {
        padding: 30px 20px;
    }

    .venue-name {
        font-size: 1.5rem;
    }

    .music-toggle {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

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

    .action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .hero-names {
        font-size: 2.2rem;
    }

    .intro-names {
        font-size: 2rem;
    }

    .countdown-item {
        padding: 8px 8px;
        min-width: 50px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }
}
