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

:root {
    --gold: #C4963C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --gold-shimmer: linear-gradient(105deg, #C4963C 0%, #E8C97A 45%, #FFE4A0 50%, #E8C97A 55%, #C4963C 100%);
    --green-deep: #142e24;
    --green: #2d6b4f;
    --green-light: #3d8b6a;
    --green-pale: #e8f5e9;
    --red: #c0392b;
    --red-warm: #d4574a;
    --cream: #FDF8F0;
    --cream-dark: #f0e6d3;
    --brown: #5D4037;
    --brown-light: #8D6E63;
    --navy: #0b1420;
    --pink-soft: #f3d9dc;
    --text-dark: #2c1810;
    --text-light: #f5ead6;
}

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

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--cream); color: var(--text-dark);
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ============================================
   PAPER TEXTURE OVERLAY (applied to cream sections)
   ============================================ */
.paper-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* Warm grain overlay for dark sections */
.grain-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.6'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Scroll snap for premium page-turn feel */
@media (min-width: 768px) {
    html {
        scroll-snap-type: y proximity;
    }
    section, .ornamental-divider {
        scroll-snap-align: start;
    }
}

/* Hide body scroll when entrance is active */
body.entrance-active { overflow: hidden; }

/* ============================================
   ENTRANCE OVERLAY
   ============================================ */
.entrance-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 40px 24px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated gradient orbs background */
.entrance-overlay::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(196, 150, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(196, 150, 60, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 107, 79, 0.1) 0%, transparent 40%);
    pointer-events: none;
    animation: entranceGradientDrift 8s ease-in-out infinite alternate;
}

/* Floating gold particles on entrance */
.entrance-overlay::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(196, 150, 60, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 35% 65%, rgba(196, 150, 60, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 55% 15%, rgba(196, 150, 60, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 75% 45%, rgba(196, 150, 60, 0.35) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 25% 80%, rgba(196, 150, 60, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 85% 75%, rgba(196, 150, 60, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 45% 40%, rgba(196, 150, 60, 0.25) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 65% 85%, rgba(196, 150, 60, 0.45) 50%, transparent 50%),
        radial-gradient(1px 1px at 10% 55%, rgba(232, 201, 122, 0.3) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 90% 20%, rgba(232, 201, 122, 0.35) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 90%, rgba(196, 150, 60, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 20% 10%, rgba(232, 201, 122, 0.2) 50%, transparent 50%);
    pointer-events: none;
    animation: entranceParticleFloat 12s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes entranceGradientDrift {
    0% { 
        background:
            radial-gradient(ellipse at 30% 30%, rgba(196, 150, 60, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 70%, rgba(196, 150, 60, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(45, 107, 79, 0.1) 0%, transparent 40%);
    }
    50% {
        background:
            radial-gradient(ellipse at 60% 20%, rgba(196, 150, 60, 0.14) 0%, transparent 50%),
            radial-gradient(ellipse at 30% 80%, rgba(196, 150, 60, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 50%, rgba(45, 107, 79, 0.12) 0%, transparent 40%);
    }
    100% {
        background:
            radial-gradient(ellipse at 70% 60%, rgba(196, 150, 60, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 20% 40%, rgba(196, 150, 60, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 20%, rgba(45, 107, 79, 0.08) 0%, transparent 40%);
    }
}

@keyframes entranceParticleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(1deg); }
}

/* Entrance border glow ring */
.entrance-border-glow {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(196, 150, 60, 0.08);
    border-radius: 50%;
    pointer-events: none;
    animation: entranceRingPulse 4s ease-in-out infinite;
}
.entrance-border-glow::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(196, 150, 60, 0.04);
    border-radius: 50%;
    animation: entranceRingPulse 4s ease-in-out 1s infinite;
}
@keyframes entranceRingPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.entrance-overlay.hidden {
    opacity: 0; transform: scale(1.05);
    pointer-events: none;
}

.entrance-content {
    position: relative; z-index: 1;
    opacity: 0; transform: translateY(20px);
    animation: entranceFadeIn 1.2s ease 0.3s forwards;
}
@keyframes entranceFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.entrance-ornament { width: 180px; margin: 0 auto 20px; opacity: 0.5; }
.entrance-ornament svg { width: 100%; height: auto; }

.entrance-subtitle {
    font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light);
    opacity: 0.7; margin-bottom: 24px;
}

.entrance-names { margin-bottom: 16px; line-height: 1.2; }
.entrance-name {
    font-family: 'Great Vibes', cursive; font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 400; color: var(--cream); display: block;
}
.entrance-amp {
    font-family: 'Playfair Display', serif; font-size: clamp(1rem, 3vw, 1.4rem);
    font-style: italic; color: var(--gold); display: block; margin: 4px 0;
}

.entrance-date {
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
    color: var(--gold-light); letter-spacing: 2px; opacity: 0.6;
    margin-bottom: 30px;
}

.entrance-buttons { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.entrance-btn {
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
    letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
    border: none; border-radius: 50px; transition: all 0.4s ease;
    padding: 14px 36px; min-width: 220px;
}
.entrance-btn-music {
    background: var(--gold); color: var(--green-deep); font-weight: 500;
    box-shadow: 0 4px 20px rgba(196, 150, 60, 0.35);
}
.entrance-btn-music:hover {
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196, 150, 60, 0.5);
}
.entrance-btn-music .btn-icon { margin-right: 8px; font-size: 1rem; }
.entrance-btn-quiet {
    background: transparent; color: var(--gold-light); font-weight: 400;
    border: 1px solid rgba(196, 150, 60, 0.3); padding: 12px 36px;
}
.entrance-btn-quiet:hover { border-color: var(--gold); color: var(--cream); }

/* ============================================
   MUSIC TOGGLE
   ============================================ */
.music-toggle {
    position: fixed; top: 20px; right: 20px; z-index: 1000;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(20, 46, 36, 0.85); backdrop-filter: blur(10px);
    border: 1.5px solid rgba(196, 150, 60, 0.5); color: var(--gold);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0; pointer-events: none;
}
.music-toggle.visible { opacity: 1; pointer-events: auto; }
.music-toggle:hover { transform: scale(1.08); border-color: var(--gold); }
.music-toggle .bars { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.music-toggle .bar { width: 3px; background: var(--gold); border-radius: 2px; transition: height 0.3s ease; }
.music-toggle.playing .bar:nth-child(1) { animation: musicBar 0.6s ease-in-out infinite alternate; }
.music-toggle.playing .bar:nth-child(2) { animation: musicBar 0.6s ease-in-out 0.15s infinite alternate; }
.music-toggle.playing .bar:nth-child(3) { animation: musicBar 0.6s ease-in-out 0.3s infinite alternate; }
.music-toggle.playing .bar:nth-child(4) { animation: musicBar 0.6s ease-in-out 0.45s infinite alternate; }
.music-toggle:not(.playing) .bar { height: 4px !important; }
@keyframes musicBar { 0% { height: 4px; } 100% { height: 16px; } }

/* ============================================
   SCROLL ANIMATIONS — Multi-type System
   ============================================ */

/* Base hidden state for all animated elements */
[data-animate] { opacity: 0; }
[data-animate].animated { opacity: 1; }

/* fade-up */
[data-animate="fade-up"] { transform: translateY(50px); transition: opacity 0.9s ease, transform 0.9s ease; }
[data-animate="fade-up"].animated { opacity: 1; transform: translateY(0); }

/* fade-blur */
[data-animate="fade-blur"] { transform: translateY(15px); filter: blur(8px); transition: opacity 1s ease, transform 1s ease, filter 1s ease; }
[data-animate="fade-blur"].animated { opacity: 1; transform: translateY(0); filter: blur(0); }

/* scale-in (from center) */
[data-animate="scale-in"] { transform: scale(0.85); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
[data-animate="scale-in"].animated { opacity: 1; transform: scale(1); }

/* scale-up (dramatic, for big text) */
[data-animate="scale-up"] { transform: scale(0.4); letter-spacing: 20px; transition: opacity 0.8s ease, transform 0.8s ease, letter-spacing 0.8s ease; }
[data-animate="scale-up"].animated { opacity: 1; transform: scale(1); letter-spacing: 8px; }

/* slide-right (from left) */
[data-animate="slide-right"] { transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate="slide-right"].animated { opacity: 1; transform: translateX(0); }

/* slide-left (from right) */
[data-animate="slide-left"] { transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate="slide-left"].animated { opacity: 1; transform: translateX(0); }

/* card-deal (slight rotation + slide up) */
[data-animate="card-deal"] { transform: translateY(60px) rotate(-2deg); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1); }
[data-animate="card-deal"].animated { opacity: 1; transform: translateY(0) rotate(0deg); }

/* clip-reveal (circle clip expanding) */
[data-animate="clip-reveal"] { clip-path: circle(0% at 50% 50%); transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; }
[data-animate="clip-reveal"].animated { opacity: 1; clip-path: circle(75% at 50% 50%); }

/* chars (handled via JS — individual letter wrapping) */
[data-animate="chars"] { transition: none; }
[data-animate="chars"].animated { opacity: 1; }
[data-animate="chars"] .char {
    display: inline-block; opacity: 0; transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate="chars"].animated .char {
    opacity: 1; transform: translateY(0);
}

/* story-sequence (handled via JS) */
[data-animate="story-sequence"] { transition: none; }
[data-animate="story-sequence"].animated { opacity: 1; }

/* shimmer text */
[data-animate="shimmer"].animated {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerSweep 3s ease infinite;
}
@keyframes shimmerSweep { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* Delay helper */
[data-delay] { transition-delay: var(--delay); }

/* ============================================
   SECTION 1: BLESSINGS (Sacred Opening)
   ============================================ */
.blessings {
    min-height: 100vh; min-height: 100dvh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: var(--cream); padding: 80px 24px 60px;
    text-align: center; position: relative;
}
.blessings::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(196, 150, 60, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(93, 64, 55, 0.04) 0%, transparent 40%);
    pointer-events: none;
}
.blessings-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.sanskrit-text {
    font-family: 'Noto Sans Devanagari', sans-serif; font-size: 1.05rem;
    color: var(--brown); line-height: 2.2; margin-bottom: 32px; opacity: 0.85;
}
.sanskrit-text.secondary-shloka { font-size: 0.9rem; opacity: 0.7; }
.ganesha-icon {
    width: 210px; margin: 0 auto 32px;
    filter: drop-shadow(0 4px 12px rgba(196, 150, 60, 0.2));
}
.ganesha-icon img { width: 100%; height: auto; display: block; }
.blessing-english {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
    color: var(--brown); font-style: italic; line-height: 1.9;
}

/* Scroll indicator — line style (now inside blessings) */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeInUp 1s ease 2s forwards;
}
.scroll-line {
    width: 1px; height: 40px; background: var(--gold); opacity: 0.4;
    animation: scrollPulse 2s ease infinite;
}
.scroll-text {
    font-family: 'DM Sans', sans-serif; font-size: 0.6rem;
    letter-spacing: 3px; text-transform: uppercase; color: var(--brown-light); opacity: 0.5;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.6); opacity: 0.8; }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ============================================
   ORNAMENTAL DIVIDERS
   ============================================ */
.ornamental-divider {
    width: 100%; height: 50px; display: flex; align-items: center; justify-content: center;
    background: var(--cream); overflow: hidden;
}
.ornamental-divider svg { width: 100%; max-width: 500px; height: auto; }
.ornamental-divider.variant-2 { background: var(--cream); }
.ornamental-divider.variant-3 { background: var(--cream); }

/* ============================================
   ORNAMENTAL LINE (inline)
   ============================================ */
.ornamental-line {
    width: 60px; height: 1.5px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 28px auto;
}
.ornamental-line.gold-line {
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
    margin-bottom: 40px;
}

/* ============================================
   FLOATING DIYAS (inside invitation section)
   ============================================ */
.floating-elements { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.diya {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 40%, rgba(255,165,0,0.3) 70%, transparent 100%);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5), 0 0 25px rgba(255, 165, 0, 0.2);
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(360deg) scale(1); opacity: 0; }
}

/* ============================================
   SECTION 2: INVITATION (Merged Hero + Formal)
   ============================================ */
.invitation {
    background: var(--green-deep); position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 24px; text-align: center; overflow: hidden;
}
.invitation::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196, 150, 60, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 150, 60, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 90%, rgba(45, 107, 79, 0.2) 0%, transparent 40%);
    pointer-events: none;
}
.invitation-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

/* Corner ornaments (moved from hero) */
.invitation-corner { position: absolute; width: 90px; height: 90px; opacity: 0.25; z-index: 1; }
.invitation-corner svg { width: 100%; height: 100%; }
.invitation-corner.top-left { top: 20px; left: 20px; }
.invitation-corner.top-right { top: 20px; right: 20px; transform: scaleX(-1); }
.invitation-corner.bottom-left { bottom: 20px; left: 20px; transform: scaleY(-1); }
.invitation-corner.bottom-right { bottom: 20px; right: 20px; transform: scale(-1); }

@media (min-width: 768px) {
    .invitation-corner { width: 130px; height: 130px; opacity: 0.3; }
}

/* Families row — always side-by-side (like a formal card) */
.families-row {
    display: flex; flex-direction: row; justify-content: center; align-items: stretch;
    gap: 0; margin-bottom: 48px;
}
.families-row .family-section { flex: 1; max-width: 280px; }
.families-divider {
    width: 1.5px; height: auto; align-self: stretch;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    margin: 0 16px; flex-shrink: 0;
}
@media (min-width: 600px) {
    .families-divider { margin: 0 40px; }
}
.family-section { margin-bottom: 0; }
.family-label {
    font-family: 'DM Sans', sans-serif; font-size: 0.65rem;
    letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0.6; margin-bottom: 10px;
}
.family-names { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--cream); line-height: 1.7; }
.family-names .late { font-style: italic; opacity: 0.65; font-size: 0.9em; }
.family-sub {
    font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
    color: var(--gold-light); opacity: 0.4; margin-top: 8px; letter-spacing: 1px;
}

.invite-word {
    font-family: 'Playfair Display', serif; font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 700; letter-spacing: 8px; text-transform: uppercase;
    color: var(--gold); margin: 40px 0 20px;
}
.invite-subtext {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
    color: var(--cream-dark); margin-bottom: 40px; font-style: italic; line-height: 1.7;
}
.couple-names-formal { margin: 28px 0; }
.couple-name-large {
    font-family: 'Great Vibes', cursive; font-size: clamp(3rem, 11vw, 5.5rem);
    font-weight: 400; color: var(--cream); line-height: 1.1;
}
.couple-and {
    font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-style: italic; color: var(--gold); margin: 8px 0;
}

/* Date & venue (new — merged from hero) */
.invite-date {
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--gold-light); letter-spacing: 3px; margin-top: 20px;
}
.invite-venue-hint {
    font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
    color: rgba(232, 201, 122, 0.6); margin-top: 8px; letter-spacing: 2px;
}

.invite-closing {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--cream-dark); margin-top: 40px; font-style: italic; line-height: 1.9; opacity: 0.85;
}

/* ============================================
   EVENTS
   ============================================ */
.events {
    background: var(--cream); padding: 110px 24px; text-align: center; position: relative;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 600; color: var(--green-deep); margin-bottom: 14px;
    position: relative; z-index: 1;
}
.section-subtitle {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--brown-light); font-style: italic; margin-bottom: 20px;
    position: relative; z-index: 1; line-height: 1.7;
}

/* Calendar Button */
.calendar-actions {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid rgba(196, 150, 60, 0.5);
    border-radius: 50px;
    color: var(--gold-dark);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: rgba(196, 150, 60, 0.08);
}
.calendar-btn:hover {
    background: var(--gold);
    color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 150, 60, 0.3);
}
.calendar-btn svg {
    flex-shrink: 0;
}

.events-grid {
    display: flex; flex-direction: column; gap: 28px;
    max-width: 520px; margin: 0 auto; position: relative; z-index: 1;
}
.event-card {
    background: linear-gradient(145deg, #fefaf2 0%, #f8f0de 100%);
    border: 1.5px solid rgba(196, 150, 60, 0.35); border-radius: 20px;
    padding: 40px 32px; position: relative; overflow: hidden;
    box-shadow: 0 8px 40px rgba(196, 150, 60, 0.08), 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(196, 150, 60, 0.18), 0 4px 15px rgba(0,0,0,0.04);
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.event-card::after {
    content: ''; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(196, 150, 60, 0.12); border-radius: 14px; pointer-events: none;
}

.event-icon { width: 64px; height: 64px; margin: 0 auto 20px; opacity: 0.85; }
.event-icon svg { width: 100%; height: 100%; }

/* Image-based event icons (PNG illustrations — flat, no crop) */
.event-icon.event-icon-img {
    width: auto; height: auto; opacity: 1;
    max-width: 200px;
    border-radius: 0;
    overflow: visible;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0 auto 24px;
    transition: transform 0.4s ease;
}
.event-card:hover .event-icon-img {
    transform: scale(1.04);
}
.event-icon-img img {
    width: 100%; height: auto;
    object-fit: contain;
    display: block;
}

/* Large variant for Haldi & Shubh Vivah icons */
.event-icon.event-icon-lg {
    max-width: 380px;
}

.event-name {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: var(--green-deep);
    margin-bottom: 20px; line-height: 1.4;
}
.event-details { display: flex; flex-direction: column; gap: 6px; }
.event-date {
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
    color: var(--brown); font-weight: 400;
}
.event-venue {
    font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
    color: var(--brown-light); font-style: italic;
}
.event-time {
    font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
    color: var(--gold-dark); font-weight: 500; margin-top: 6px; letter-spacing: 0.5px;
}

@media (min-width: 600px) {
    .events-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 720px; }
    .events-grid .event-card:last-child { grid-column: 1 / -1; max-width: 350px; margin: 0 auto; }
}

/* ============================================
   VENUE
   ============================================ */
.venue {
    position: relative; overflow: hidden;
    padding: 0;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.venue-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 8s ease;
}
.venue:hover .venue-bg-image {
    transform: scale(1.03);
}
.venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 20, 32, 0.75) 0%,
        rgba(11, 20, 32, 0.6) 40%,
        rgba(11, 20, 32, 0.55) 60%,
        rgba(11, 20, 32, 0.8) 100%
    );
    z-index: 1;
}
.venue-content {
    position: relative; z-index: 2;
    max-width: 600px; margin: 0 auto;
    padding: 110px 24px 60px;
}
.venue-name {
    font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 600; color: var(--cream); margin-bottom: 18px; letter-spacing: 3px; text-transform: uppercase;
}
.venue-address {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--gold-light); line-height: 1.8; margin-bottom: 36px; opacity: 0.85;
}

.map-link {
    display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px;
    border: 1.5px solid rgba(196, 150, 60, 0.5); border-radius: 50px;
    color: var(--gold); text-decoration: none;
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 400;
    transition: all 0.4s ease; letter-spacing: 1px;
}
.map-link:hover {
    background: var(--gold); color: var(--green-deep);
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196, 150, 60, 0.3);
}
.map-icon { display: flex; align-items: center; }

/* Venue Gallery Strip */
.venue-gallery-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 24px 40px;
    margin-top: 20px;
}
.venue-strip-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.venue-strip-track::-webkit-scrollbar { display: none; }
.venue-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1.5px solid rgba(196, 150, 60, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.venue-thumb:hover {
    transform: scale(1.04);
    border-color: var(--gold);
}
.venue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .venue-strip-track {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
    }
    .venue-thumb {
        width: 220px;
        height: 150px;
    }
}

/* ============================================
   OUR STORY
   ============================================ */
.our-story {
    background: var(--cream); padding: 110px 24px 120px; text-align: center; position: relative;
}

/* Story Illustration (Gemini image) — hero treatment */
.story-illustration {
    max-width: 780px;
    margin: 20px auto 50px;
    padding: 0 10px;
}
.story-img {
    width: 100%; height: auto; display: block;
    border-radius: 16px;
    box-shadow:
        0 12px 50px rgba(0,0,0,0.12),
        0 4px 20px rgba(196, 150, 60, 0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.story-img:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.15),
        0 8px 30px rgba(196, 150, 60, 0.15);
}

.story-text {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    color: var(--brown); line-height: 2; font-style: italic; text-align: center;
}

/* ============================================
   GALLERY / COUPLE SECTION
   ============================================ */
.gallery-section {
    background: var(--green-deep); padding: 110px 24px; text-align: center;
    position: relative; overflow: hidden;
}
.gallery-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(196, 150, 60, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-message {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    color: var(--cream-dark); line-height: 1.9; font-style: italic;
    max-width: 500px; margin: 0 auto 50px; position: relative; z-index: 1; opacity: 0.9;
}

.gallery-slideshow {
    position: relative; z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
}
.slideshow-frame {
    position: relative;
    display: block;
    padding: 12px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.slideshow-frame:active { cursor: grabbing; }
.slideshow-frame::before {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(196, 150, 60, 0.25); border-radius: 22px;
    background: linear-gradient(135deg, rgba(196, 150, 60, 0.04), rgba(196, 150, 60, 0.01));
}
.slideshow-frame::after {
    content: ''; position: absolute; inset: 4px;
    border: 1px solid rgba(196, 150, 60, 0.1); border-radius: 19px;
    pointer-events: none;
}

.slideshow-track {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Slide transitions — cinematic crossfade with subtle zoom */
.slide {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
    animation: kenBurns 10s ease-in-out infinite alternate;
}
/* Slide exiting — slight zoom out */
.slide.exiting {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

.slide img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}

/* Swipe hint indicator */
.slideshow-swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: swipeHintFade 4s ease 2s forwards;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
@keyframes swipeHintFade {
    0% { opacity: 0; }
    20% { opacity: 0.7; }
    80% { opacity: 0.7; }
    100% { opacity: 0; }
}

/* Progress bar dots (replacing plain dots) */
.slideshow-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 28px; position: relative; z-index: 2;
}
.dot {
    width: 24px; height: 3px; border-radius: 2px;
    background: rgba(196, 150, 60, 0.2); border: none; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 0;
    position: relative; overflow: hidden;
}
.dot.active {
    background: rgba(196, 150, 60, 0.3);
    width: 40px;
}
.dot.active::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: dotProgress 5s linear forwards;
}
@keyframes dotProgress {
    from { width: 0%; }
    to { width: 100%; }
}
.dot:hover { background: rgba(196, 150, 60, 0.4); }

/* Slide counter */
.slideshow-counter {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--gold-light);
    opacity: 0.4;
    letter-spacing: 2px;
    margin-top: 16px;
    text-align: center;
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-section {
    background: var(--navy); padding: 110px 24px; text-align: center;
    position: relative; overflow: hidden;
}
.countdown-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(196, 150, 60, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(196, 150, 60, 0.04) 0%, transparent 40%);
    pointer-events: none;
}
.countdown-section::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.4) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(255,255,255,0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 85% 50%, rgba(255,255,255,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 45% 45%, rgba(255,255,255,0.15) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 60% 25%, rgba(255,255,255,0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.2) 50%, transparent 50%);
    pointer-events: none;
}

.hashtag {
    font-family: 'Playfair Display', serif; font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 700; color: var(--gold); position: relative; z-index: 1;
    margin-bottom: 8px; display: inline-block;
}
.hashtag-meaning {
    font-family: 'Noto Sans Devanagari', 'DM Sans', sans-serif; font-size: 0.88rem;
    color: var(--gold-light); opacity: 0.6; position: relative; z-index: 1; margin-bottom: 56px;
}
.countdown-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
    color: var(--gold-light); font-style: italic; margin-bottom: 32px;
    position: relative; z-index: 1; opacity: 0.8;
}
.countdown-timer {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 12px; position: relative; z-index: 1; margin-bottom: 56px;
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.countdown-number-wrap {
    background: rgba(196, 150, 60, 0.08);
    border: 1px solid rgba(196, 150, 60, 0.15);
    border-radius: 14px; padding: 12px 8px; min-width: 68px;
}
.countdown-number {
    font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 7vw, 3rem);
    font-weight: 700; color: var(--gold); line-height: 1; display: block;
}
.countdown-label {
    font-family: 'DM Sans', sans-serif; font-size: 0.65rem;
    color: var(--gold-light); opacity: 0.5; text-transform: uppercase; letter-spacing: 2px;
}
.countdown-separator {
    font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 4vw, 2rem);
    color: var(--gold); opacity: 0.3; margin-top: 16px;
}
.closing-message {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--cream-dark); line-height: 1.9; font-style: italic;
    opacity: 0.75; position: relative; z-index: 1; max-width: 500px; margin: 0 auto;
}

/* ============================================
   RSVP SECTION
   ============================================ */
.rsvp-section {
    background: var(--green-deep); padding: 110px 24px; text-align: center;
    position: relative; overflow: hidden;
}
.rsvp-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(196, 150, 60, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(196, 150, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.rsvp-subtitle {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    color: var(--cream-dark); font-style: italic; opacity: 0.7;
    margin-bottom: 10px; position: relative; z-index: 1;
}

.rsvp-form {
    max-width: 440px; margin: 0 auto; position: relative; z-index: 1;
    text-align: left;
}

.form-group { margin-bottom: 28px; }
.form-label {
    font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light);
    opacity: 0.7; display: block; margin-bottom: 10px;
}
.form-label .optional { opacity: 0.5; font-size: 0.9em; text-transform: none; letter-spacing: 0; }

.form-input, .form-select, .form-textarea {
    width: 100%; padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(196, 150, 60, 0.25);
    border-radius: 12px; color: var(--cream);
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}
.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(232, 201, 122, 0.3);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}
.form-select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C4963C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.form-select option { background: var(--green-deep); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 80px; }

/* Radio group */
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-option {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    padding: 14px 22px; border: 1.5px solid rgba(196, 150, 60, 0.2);
    border-radius: 12px; transition: all 0.3s ease; flex: 1; min-width: 160px;
}
.radio-option:hover { border-color: rgba(196, 150, 60, 0.4); }
.radio-option input[type="radio"] { display: none; }
.radio-custom {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid rgba(196, 150, 60, 0.4); position: relative;
    flex-shrink: 0; transition: border-color 0.3s ease;
}
.radio-custom::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); transition: transform 0.3s ease;
}
.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--gold);
}
.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}
.radio-option input[type="radio"]:checked ~ .radio-text { color: var(--gold); }
.radio-text {
    font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
    color: var(--cream-dark); transition: color 0.3s ease;
}

.rsvp-submit {
    width: 100%; padding: 16px 24px; margin-top: 12px;
    background: var(--gold); color: var(--green-deep);
    border: none; border-radius: 50px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(196, 150, 60, 0.3);
}
.rsvp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 150, 60, 0.5);
}
.rsvp-submit:active { transform: translateY(0); }
.rsvp-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rsvp-success {
    text-align: center; padding: 30px 0;
}
.success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(196, 150, 60, 0.15); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-family: 'DM Sans', sans-serif; font-size: 1.5rem; color: var(--gold);
}
.success-text {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    color: var(--cream); margin-bottom: 6px;
}
.success-sub {
    font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
    color: var(--gold-light); opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--green-deep); padding: 56px 24px 42px; text-align: center; }
.footer-art { margin-bottom: 28px; overflow: hidden; }
.footer-border-svg { width: 100%; height: auto; max-height: 30px; }
.footer-text {
    font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
    color: var(--gold-light); opacity: 0.4; margin-bottom: 14px; letter-spacing: 1px;
}
.footer-names {
    font-family: 'Great Vibes', cursive; font-size: 1.8rem;
    color: var(--gold); font-weight: 400; margin-bottom: 8px;
}
.footer-year {
    font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
    color: var(--gold-light); opacity: 0.35; letter-spacing: 2px;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 380px) {
    .couple-name-large { font-size: 2.2rem; }
    .countdown-number { font-size: 1.6rem; }
    .countdown-number-wrap { min-width: 52px; padding: 8px 4px; }
    .event-card { padding: 32px 22px; }
    .entrance-name { font-size: 2.2rem; }
    .venue-thumb { width: 160px; height: 110px; }
    .ganesha-icon { width: 160px; }
    .family-names { font-size: 0.88rem; line-height: 1.6; }
    .family-label { font-size: 0.58rem; letter-spacing: 1.5px; }
    .family-sub { font-size: 0.65rem; }
    .families-divider { margin: 0 10px; }
    .gallery-slideshow { max-width: 320px; }
}

@media (max-width: 480px) {
    .story-illustration { padding: 0 5px; }
    .gallery-slideshow { max-width: 380px; }
}

@media (min-width: 768px) {
    .family-names { font-size: 1.15rem; line-height: 1.8; }
    .family-label { font-size: 0.7rem; letter-spacing: 3px; }
    .blessings { padding: 100px 40px 80px; }
    .invitation { padding: 100px 40px; }
    .events { padding: 120px 40px; }
    .our-story { padding: 120px 40px 140px; }
    .gallery-section { padding: 120px 40px; }
    .countdown-section { padding: 120px 40px; }
    .rsvp-section { padding: 120px 40px; }
    .gallery-slideshow { max-width: 520px; }
    .story-illustration { max-width: 780px; margin: 24px auto 60px; }
    .story-text { font-size: 1.25rem; line-height: 2.1; }
    .venue { min-height: 100vh; }
    .ganesha-icon { width: 240px; }
}

@media (min-width: 1024px) {
    .gallery-slideshow { max-width: 600px; }
    .story-illustration { max-width: 860px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-animate] { opacity: 1; transform: none; filter: none; clip-path: none; }
    html { scroll-snap-type: none; }
}
