/* 
   CSS Stylesheet for Balaji & Krithika's Wedding Invitation
   Theme: Marina Beach Inspired South Indian Tamil Wedding
   Colors: Gold, Sage Green, Cream, Charcoal with Beach tones
*/

/* ========== CSS Variables for Easy Customization ========== */
:root {
    /* Color Palette */
    --primary-gold: #D4AF37;
    --secondary-green: #4A5D4E;
    --cream-white: #FFF8F0;
    --charcoal: #2C2C2C;
    --light-gold: #E8D4A2;
    --soft-gray: #F5F5F5;
    
    /* Beach Theme Colors */
    --beach-sand: #E8D4B8;
    --wet-sand: #D4C4A8;
    --ocean-mist: #B8C9D4;
    --sunset-peach: #FFE8D6;
    --sunset-glow: #FFCBA4;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-tamil: 'Noto Sans Tamil', sans-serif;
    
    /* Spacing */
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    /* Marina Beach inspired gradient - sunset sky to sandy shore */
    background: 
        linear-gradient(180deg, 
            #FFF8F0 0%,           /* Soft cream sky */
            #FFE8D6 15%,          /* Warm peach - sunset glow */
            #F5DEC4 30%,          /* Sandy beige */
            #EDD9C0 50%,          /* Beach sand */
            #E8D4B8 70%,          /* Warm sand */
            #F0E6D8 85%,          /* Light sand */
            #D4C4A8 100%          /* Wet sand near water */
        );
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Beach atmosphere overlay - sun rays and ocean mist */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Soft sun glow from top right */
        radial-gradient(ellipse at 85% 10%, rgba(255, 200, 120, 0.15) 0%, transparent 50%),
        /* Ocean mist from bottom */
        radial-gradient(ellipse at 50% 100%, rgba(150, 180, 200, 0.1) 0%, transparent 40%),
        /* Warm light scattered */
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(232, 180, 120, 0.06) 0%, transparent 35%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle animated shimmer - like sunlight on water */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 200px
        );
    animation: shimmerWave 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmerWave {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.6; transform: translateX(20px); }
}

/* Container for consistent spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Navigation Bar ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nav-logo::after {
    content: '✦';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    color: var(--secondary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-green);
    font-weight: 400;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-green);
    margin: 3px 0;
    transition: var(--transition);
}

/* ========== Hero Section - Beach Theme ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-large) var(--spacing-medium);
    margin-top: 60px;
    /* Beach sunset gradient overlay */
    background: 
        linear-gradient(180deg, 
            rgba(255, 248, 240, 0.4) 0%,
            rgba(255, 232, 214, 0.5) 30%,
            rgba(255, 203, 164, 0.3) 60%,
            rgba(184, 201, 212, 0.2) 100%
        );
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Animated ocean waves at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23B8C9D4' fill-opacity='0.3' d='M0,50 C150,80 350,20 500,50 C650,80 850,20 1000,50 C1150,80 1350,20 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 720px 100px;
    animation: waveFlow 8s linear infinite;
    z-index: 1;
}

@keyframes waveFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-720px); }
}

/* Layer 1: Decorative mandala background */
.mandala-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, transparent 30%, var(--light-gold) 30.5%, transparent 31%, transparent 40%, var(--light-gold) 40.5%, transparent 41%);
    opacity: 0.1;
    animation: rotate 60s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Layer 2: Floating caricatures */
.caricature-bride {
    position: absolute;
    left: 5%;
    top: 15%;
    width: 150px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 200"><circle cx="75" cy="60" r="35" fill="%234A5D4E" opacity="0.8"/><ellipse cx="75" cy="130" rx="40" ry="60" fill="%23D4AF37" opacity="0.6"/><circle cx="75" cy="50" r="25" fill="%23FFF8F0"/><circle cx="65" cy="50" r="3" fill="%232C2C2C"/><circle cx="85" cy="50" r="3" fill="%232C2C2C"/><path d="M65,60 Q75,70 85,60" stroke="%23D4AF37" stroke-width="2" fill="none"/><path d="M50,30 Q75,20 100,30" stroke="%234A5D4E" stroke-width="15" fill="none" opacity="0.6"/><circle cx="75" cy="25" r="8" fill="%23D4AF37" opacity="0.8"/><path d="M35,100 Q75,90 115,100" stroke="%23D4AF37" stroke-width="3" fill="none" opacity="0.5"/></svg>') center/contain no-repeat;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
    z-index: 2;
}

.caricature-groom {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 150px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 200"><circle cx="75" cy="60" r="35" fill="%234A5D4E" opacity="0.8"/><rect x="35" y="100" width="80" height="80" rx="10" fill="%23FFF8F0" opacity="0.8"/><circle cx="75" cy="50" r="25" fill="%23FFF8F0"/><circle cx="65" cy="50" r="3" fill="%232C2C2C"/><circle cx="85" cy="50" r="3" fill="%232C2C2C"/><path d="M65,60 Q75,70 85,60" stroke="%23D4AF37" stroke-width="2" fill="none"/><path d="M50,25 Q75,15 100,25" stroke="%232C2C2C" stroke-width="3" fill="none"/><rect x="60" y="100" width="30" height="40" fill="%234A5D4E" opacity="0.6"/><path d="M60,120 L75,110 L90,120" stroke="%23D4AF37" stroke-width="2" fill="none"/></svg>') center/contain no-repeat;
    animation: float 6s ease-in-out infinite reverse;
    opacity: 0.7;
    z-index: 2;
}

/* Layer 3: Floating decorative elements */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.heart {
    position: absolute;
    font-size: 20px;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: floatUp 15s linear infinite;
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 25px; }
.heart:nth-child(2) { left: 30%; animation-delay: 3s; font-size: 18px; }
.heart:nth-child(3) { left: 50%; animation-delay: 1.5s; font-size: 22px; }
.heart:nth-child(4) { left: 70%; animation-delay: 4s; font-size: 20px; }
.heart:nth-child(5) { left: 90%; animation-delay: 2s; font-size: 24px; }

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.tamil-blessing {
    text-align: center;
    margin-bottom: var(--spacing-medium);
    animation: fadeInDown 1s ease;
}

.tamil-text {
    font-family: var(--font-tamil);
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 400;
}

.blessing-translation {
    font-size: 0.9rem;
    color: var(--secondary-green);
    font-style: italic;
    margin-top: 0.5rem;
}

.hero-content {
    text-align: center;
    z-index: 5;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z" fill="%23D4AF37" opacity="0.2"/></svg>') no-repeat;
    animation: rotate 20s linear infinite;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%234A5D4E" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="20" fill="none" stroke="%234A5D4E" stroke-width="2" opacity="0.3"/></svg>') no-repeat;
    animation: rotate 15s linear infinite reverse;
}

.couple-names {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: var(--spacing-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.name {
    color: var(--secondary-green);
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
}

.name-1 { animation-delay: 0.3s; }
.name-2 { animation-delay: 0.6s; }

.ampersand {
    color: var(--primary-gold);
    font-size: 0.8em;
    font-style: italic;
    animation: fadeIn 1s ease 0.9s both;
}

.wedding-date {
    font-size: 1.2rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease 1.2s both;
}

.date-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-medium);
    animation: fadeIn 1s ease 1.5s both;
}

.decorative-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: var(--spacing-medium) auto;
    animation: fadeIn 1s ease 1.8s both;
}

/* ========== Countdown Timer ========== */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: var(--spacing-medium) 0;
    animation: fadeInUp 1s ease 2s both;
    perspective: 1000px;
}

.countdown-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotateX(10deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-item:hover {
    transform: rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(212, 175, 55, 0.3);
}

.countdown-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-green);
    font-weight: 700;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ========== Buttons ========== */
.cta-button {
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    background: var(--cream-white);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeIn 1s ease 2.3s both;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cta-button:hover {
    background: var(--primary-gold);
    color: var(--cream-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Calendar Button - Split Style */
.calendar-button {
    display: inline-flex;
    align-items: stretch;
    padding: 0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(74, 93, 78, 0.3);
    overflow: hidden;
    font-family: var(--font-body);
}

.calendar-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 93, 78, 0.4);
}

.calendar-date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--cream-white);
    color: var(--secondary-green);
    border: 2px solid var(--light-gold);
    border-right: none;
    border-radius: 50px 0 0 50px;
}

.calendar-icon {
    font-size: 1.3rem;
}

.calendar-date-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.calendar-action {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: var(--primary-gold);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.calendar-button:hover .calendar-action {
    background: var(--light-gold);
}

/* Mobile responsive for calendar button */
@media screen and (max-width: 480px) {
    .calendar-button {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .calendar-date {
        border-radius: 15px 15px 0 0;
        justify-content: center;
    }
    
    .calendar-action {
        border-radius: 0 0 15px 15px;
        justify-content: center;
    }
}

/* ========== Section Wave Dividers ========== */
.section-wave-top, .section-wave-bottom {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.section-wave-top svg, .section-wave-bottom svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ========== Events Section ========== */
.events-section {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 240, 0.3);
    pointer-events: none;
}

.events-section .container {
    padding: var(--spacing-large) 20px;
    position: relative;
    z-index: 2;
}

/* Clean Event Cards */
.events-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto var(--spacing-large);
}

.event-card-clean {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.event-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-gold);
}

.event-card-clean h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 0.25rem;
}

.event-tamil {
    font-family: var(--font-tamil);
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1.25rem;
}

.event-details-clean {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.event-details-clean span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile: Stack vertically */
@media screen and (max-width: 768px) {
    .events-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .event-card-clean {
        padding: 1.5rem 1rem;
    }
    
    .event-card-clean h3 {
        font-size: 1.3rem;
    }
}

/* Journey Timeline Design */
.events-journey {
    position: relative;
    margin: var(--spacing-large) 0;
    padding: 2rem 0;
}

.journey-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 400px;
    transform: translateY(-50%);
    z-index: 1;
}

.journey-events {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 3rem;
}

.journey-event {
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 200px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.journey-event:nth-child(1) { animation-delay: 0.2s; }
.journey-event:nth-child(2) { animation-delay: 0.4s; }
.journey-event:nth-child(3) { animation-delay: 0.6s; }
.journey-event:nth-child(4) { animation-delay: 0.8s; }

.event-bubble {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 0.9);
    border: 3px solid var(--light-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.journey-event.featured .event-bubble {
    width: 120px;
    height: 120px;
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
}

.journey-event.featured .event-icon {
    color: white;
}

.event-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.9);
}

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

.event-details {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-details h3 {
    font-family: var(--font-heading);
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-details .tamil {
    font-family: var(--font-tamil);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.event-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Venue Image and Info Styles */
.venue-image {
    height: 280px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.venue-info {
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.venue-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.venue-showcase {
    margin: var(--spacing-large) auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.venue-address {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.5;
    user-select: all;
    cursor: text;
}

.venue-address:hover {
    color: var(--primary-gold);
}

 
.venue-card {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.venue-card * {
    max-width: 100%;
}

.map-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: var(--secondary-green);
    color: white;
    border: none;
    border-radius: 0 0 20px 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: var(--primary-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: var(--spacing-large);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-medium);
    perspective: 1000px;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(5deg);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.event-card:hover {
    transform: rotateX(0deg) translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--light-gold);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card.featured {
    border-color: var(--primary-gold);
    background: 
        linear-gradient(135deg, #FFFCF5, #FFF8E8),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.9);
    transform: rotateX(0deg) scale(1.1);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: bounce 2s ease-in-out infinite;
}

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

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.event-tamil {
    font-family: var(--font-tamil);
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.event-date, .event-time, .event-venue {
    color: var(--charcoal);
    margin: 0.3rem 0;
}

.event-date {
    font-weight: 600;
}

.calendar-section {
    text-align: center;
    margin-top: var(--spacing-medium);
}

/* ========== Enhanced Story Section ========== */
.story-section {
    padding: var(--spacing-large) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.story-header {
    text-align: center;
    margin-bottom: var(--spacing-large);
    position: relative;
    z-index: 2;
}

/* Enhanced Profile Cards Container */
.profiles-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: var(--spacing-large);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Enhanced Profile Cards */
.profile-card {
    flex: 1;
    max-width: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Gradient border effect */
.profile-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold), var(--secondary-green), var(--primary-gold));
    background-size: 300% 300%;
    border-radius: 30px;
    z-index: -1;
    opacity: 0.7;
    animation: gradientShift 8s ease infinite;
}

.profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: 28px;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.profile-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.profile-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.profile-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.profile-role {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ========== Gallery Section - Cinema Theme ========== */
.gallery-section {
    padding: var(--spacing-large) 0;
    background: linear-gradient(180deg, 
        rgba(44, 44, 44, 0.95) 0%, 
        rgba(26, 26, 26, 0.98) 50%,
        rgba(44, 44, 44, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--cream-white);
}

.gallery-section .section-subtitle {
    color: var(--light-gold);
}

/* Cinema Gallery Design */
.cinema-gallery {
    position: relative;
    margin: var(--spacing-large) 0;
}

/* Film Strip Effect */
.film-strip {
    height: 40px;
    background: linear-gradient(90deg, 
        #1a1a1a 0%, #1a1a1a 5%, 
        transparent 5%, transparent 10%, 
        #1a1a1a 10%, #1a1a1a 15%, 
        transparent 15%, transparent 20%, 
        #1a1a1a 20%, #1a1a1a 25%, 
        transparent 25%, transparent 30%, 
        #1a1a1a 30%, #1a1a1a 35%, 
        transparent 35%, transparent 40%, 
        #1a1a1a 40%, #1a1a1a 45%, 
        transparent 45%, transparent 50%, 
        #1a1a1a 50%, #1a1a1a 55%, 
        transparent 55%, transparent 60%, 
        #1a1a1a 60%, #1a1a1a 65%, 
        transparent 65%, transparent 70%, 
        #1a1a1a 70%, #1a1a1a 75%, 
        transparent 75%, transparent 80%, 
        #1a1a1a 80%, #1a1a1a 85%, 
        transparent 85%, transparent 90%, 
        #1a1a1a 90%, #1a1a1a 95%, 
        transparent 95%, transparent 100%);
    background-size: 100px 100%;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    animation: filmRoll 10s linear infinite;
}

@keyframes filmRoll {
    from { background-position: 0 0; }
    to { background-position: 100px 0; }
}

/* Polaroid Gallery */
.polaroid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    justify-items: center;
}

.polaroid-item {
    background: white;
    padding: 15px 15px 50px 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.polaroid-item:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid-item:nth-child(3n) {
    transform: rotate(-1deg);
}

.polaroid-item.featured {
    transform: rotate(0deg) scale(1.1);
    z-index: 2;
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.polaroid-item:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.3);
    z-index: 3;
}

.polaroid-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--soft-gray);
}

.polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: sepia(0.1);
}

.polaroid-item:hover .polaroid-image img {
    transform: scale(1.05);
    filter: sepia(0);
}

.polaroid-caption {
    text-align: center;
    font-family: 'Courier New', monospace;
    color: var(--secondary-green);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Movie Quote */
.movie-quote {
    margin-top: var(--spacing-large);
    text-align: center;
    padding: 2rem;
}

.movie-quote blockquote {
    font-family: var(--font-tamil);
    font-size: 1.5rem;
    color: var(--light-gold);
    font-style: italic;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.movie-quote blockquote::before,
.movie-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-gold);
    position: absolute;
    opacity: 0.3;
}

.movie-quote blockquote::before {
    top: -20px;
    left: -30px;
}

.movie-quote blockquote::after {
    bottom: -40px;
    right: -30px;
}

.movie-quote span {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cream-white);
    font-style: normal;
}

/* ========== RSVP Section ========== */
.rsvp-section {
    padding: var(--spacing-large) 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 240, 0.4);
    pointer-events: none;
}

.rsvp-section .container {
    position: relative;
    z-index: 2;
}

.rsvp-info {
    text-align: center;
    margin-bottom: var(--spacing-medium);
}

.rsvp-info p {
    font-size: 1.2rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.google-form-container {
    max-width: 800px;
    margin: 0 auto var(--spacing-medium);
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.google-form-container iframe {
    border-radius: 10px;
}

.alternative-rsvp {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.alternative-rsvp p {
    color: var(--secondary-green);
    margin: 0.5rem 0;
}

/* ========== Footer ========== */
.footer {
    background: var(--secondary-green);
    color: var(--cream-white);
    padding: var(--spacing-medium) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.footer-blessing {
    margin-bottom: var(--spacing-medium);
    position: relative;
    z-index: 2;
}

.footer-blessing .tamil-text {
    color: var(--light-gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-content {
    margin-bottom: var(--spacing-small);
    position: relative;
    z-index: 2;
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-copyright {
    padding-top: var(--spacing-small);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-small);
    position: relative;
    z-index: 2;
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-green);
    transform: translateY(-5px);
}

/* ========== Music Control ========== */
.music-control {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 998;
}

.music-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    color: var(--secondary-green);
}

.music-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.05);
}

.music-btn.playing {
    background: var(--primary-gold);
    color: white;
    animation: musicPulse 2s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.music-icon {
    font-size: 1.2rem;
    animation: musicNote 2s ease-in-out infinite;
}

.music-btn.playing .music-icon {
    animation: musicNotePlaying 1s ease-in-out infinite;
}

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

@keyframes musicNotePlaying {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* ========== Mobile Responsive Design ========== */

/* Tablet devices (768px and below) */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--cream-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .couple-names {
        flex-direction: column;
        font-size: 3rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .profiles-container {
        gap: 1.5rem;
    }
    
    .profile-card {
        padding: 1.5rem 1rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-icon {
        font-size: 2.5rem;
    }
    
    .profile-card h3 {
        font-size: 1.5rem;
    }

    .journey-events {
        flex-direction: column;
        align-items: center;
    }

    .journey-path {
        display: none;
    }

    .polaroid-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .music-control {
        top: 80px;
        right: 20px;
    }

    .music-btn {
        padding: 10px 15px;
    }

    .music-text {
        display: none;
    }
}

/* Mobile devices (480px and below) */
@media screen and (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

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

    .date-display {
        font-size: 1.5rem;
    }

    .hero {
        padding: var(--spacing-medium) var(--spacing-small);
    }

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

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }

    .profiles-container {
        gap: 1rem;
    }
    
    .profile-card {
        padding: 1rem;
        max-width: 160px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .profile-icon {
        font-size: 2rem;
    }
    
    .profile-card h3 {
        font-size: 1.2rem;
    }
    
    .profile-role {
        font-size: 0.85rem;
        padding: 5px 10px;
    }

    .event-bubble {
        width: 80px;
        height: 80px;
    }

    .journey-event.featured .event-bubble {
        width: 100px;
        height: 100px;
    }

    .polaroid-item {
        max-width: 280px;
    }

    .polaroid-image {
        height: 200px;
    }

    .google-form-container {
        padding: 1rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .mandala-decoration {
        width: 300px;
        height: 300px;
    }

    .caricature-bride,
    .caricature-groom {
        width: 80px;
        height: 107px;
        opacity: 0.3;
    }

    .caricature-bride {
        left: 1%;
        top: 5%;
        z-index: 1;
    }

    .caricature-groom {
        right: 1%;
        top: 5%;
        z-index: 1;
    }
}

@media screen and (max-width: 380px) {
    .caricature-bride,
    .caricature-groom {
        display: none;
    }
}

/* ========== Print Styles ========== */
@media print {
    .navbar,
    .back-to-top,
    .hamburger,
    .cta-button,
    .calendar-button {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }
}

/* Caricature adjustments for tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .caricature-bride,
    .caricature-groom {
        width: 120px;
        height: 160px;
        opacity: 0.5;
    }

    .caricature-bride {
        left: 2%;
        top: 10%;
    }

    .caricature-groom {
        right: 2%;
        top: 10%;
    }
}

/* ========== Welcome Overlay ========== */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #FFF8F0 0%, 
        #FFE8D6 30%, 
        #F5DEC4 60%, 
        #E8D4B8 100%
    );
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.welcome-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    animation: welcomeFadeIn 1s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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


.welcome-tamil {
    font-family: var(--font-tamil);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome-blessing {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--secondary-green);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.welcome-names {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.welcome-amp {
    color: var(--primary-gold);
    font-style: italic;
    font-size: 0.8em;
}

.welcome-invite {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--secondary-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.welcome-enter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: welcomePulse 2s ease-in-out infinite;
}

@keyframes welcomePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 30px rgba(212, 175, 55, 0.5),
            0 0 60px rgba(212, 175, 55, 0.3);
    }
}

.welcome-enter-btn:hover {
    transform: scale(1.08);
    box-shadow: 
        0 8px 35px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(212, 175, 55, 0.3);
}

.welcome-enter-btn:active {
    transform: scale(1);
}

.welcome-music-hint {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.profile-family {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--secondary-green);
    margin-top: 1rem;
}

/* Prevent scrolling when overlay is visible */
body.overlay-active {
    overflow: hidden;
}