@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600&family=Dancing+Script:wght@400;500;600;700&family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,400;1,400;1,500&family=Bad+Script&display=swap');

/* Page Load Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-section,
.image-section,
.countdown-section,
.details-section {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.header-section {
    animation-delay: 0.6s;
}

.image-section {
    animation-delay: 1.5s;
}

.countdown-section {
    animation-delay: 2.4s;
}

.details-section {
    animation-delay: 3.3s;
}

/* Burger Menu Styles */
.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.burger-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-toggle span {
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #f9f9f9;
    transition: left 0.3s ease;
    z-index: 999;
}

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

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000000;
    cursor: pointer;
    z-index: 1002;
}

.menu-items {
    list-style: none;
    text-align: center;
}

.menu-items li {
    margin: 2rem 0;
}

.menu-items a {
    color: #000000;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.menu-items a:hover {
    color: var(--gold-accent);
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: 
        linear-gradient(135deg, 
            #f9d849 0%, 
            #d4af37 15%,
            #ffd700 30%,
            #d4af37 45%,
            #c9a961 60%,
            #ffd700 75%,
            #d4af37 85%,
            #f9d849 100%
        );
    box-shadow: 
        0 1px 2px rgba(212, 175, 55, 0.4),
        0 2px 4px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 2px 0 1px rgba(0, 0, 0, 0.15),
        inset -2px 0 1px rgba(255, 255, 255, 0.2);
    border-radius: 50% 40% 45% 55% / 60% 50% 45% 55%;
    opacity: 0.95;
    clip-path: polygon(
        0% 40%, 2% 60%, 5% 45%, 8% 55%, 12% 35%, 15% 50%, 
        20% 40%, 25% 55%, 30% 45%, 35% 60%, 40% 50%, 45% 40%, 
        50% 55%, 55% 45%, 60% 50%, 65% 40%, 70% 55%, 75% 45%, 
        80% 50%, 85% 40%, 90% 55%, 95% 45%, 98% 50%, 100% 40%,
        100% 60%, 98% 50%, 95% 55%, 90% 65%, 85% 60%, 80% 50%, 
        75% 55%, 70% 65%, 65% 60%, 60% 50%, 55% 55%, 50% 65%, 
        45% 60%, 40% 50%, 35% 60%, 30% 55%, 25% 65%, 20% 60%, 
        15% 50%, 12% 65%, 8% 55%, 5% 60%, 2% 50%, 0% 60%
    );
    transition: width 0.3s ease;
}

.menu-items a:hover::after {
    width: 100%;
}

/* Mobile burger menu adjustments */
@media (max-width: 768px) {
    .burger-toggle {
        top: 15px;
        left: 15px;
        width: 25px;
        height: 20px;
    }
    
    .menu-items a {
        font-size: 1.5rem;
    }
    
    .close-menu {
        top: 15px;
        right: 20px;
        font-size: 1.5rem;
    }
}

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

:root {
    --primary-color: #000000;
    --secondary-color: #34495e;
    --accent-color: #8b9dc3;
    --gold-accent: #d4af37;
    --light-blue: #dfe8f0;
    --soft-white: #fafbfc;
    --emboss-light: rgba(255, 255, 255, 0.8);
    --emboss-shadow: rgba(0, 0, 0, 0.1);
    --transparent-bg: rgba(255, 255, 255, 0.1);
    --elegant-border: 1px solid rgba(44, 62, 80, 0.1);
    --soft-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    --emboss-shadow-deep: 0 4px 8px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #f9f9f9;
    color: #000000;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Enhanced header section */
.header-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: -1rem;
}

.date-badge {
    background: var(--glass-bg);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 8px;
    box-shadow: var(--soft-shadow);
    border: var(--elegant-border);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px var(--emboss-light), -1px -1px 2px var(--emboss-shadow);
    position: relative;
}

.date-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--emboss-light), transparent, var(--emboss-shadow));
    border-radius: 8px;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.heading-container {
    background: transparent;
    padding: 4rem 5rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 600px;
}

.heading-container:hover {
    transform: translateY(-3px);
}

.title-wrapper {
    position: relative;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px var(--emboss-light), -1px -1px 2px var(--emboss-shadow);
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 10px;
    background: 
        linear-gradient(135deg, 
            #f9d849 0%, 
            #d4af37 15%,
            #ffd700 30%,
            #d4af37 45%,
            #c9a961 60%,
            #ffd700 75%,
            #d4af37 85%,
            #f9d849 100%
        );
    box-shadow: 
        0 1px 2px rgba(212, 175, 55, 0.4),
        0 2px 4px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 2px 0 1px rgba(0, 0, 0, 0.15),
        inset -2px 0 1px rgba(255, 255, 255, 0.2);
    border-radius: 50% 40% 45% 55% / 60% 50% 45% 55%;
    opacity: 0.95;
    clip-path: polygon(
        0% 40%, 2% 60%, 5% 45%, 8% 55%, 12% 35%, 15% 50%, 
        20% 40%, 25% 55%, 30% 45%, 35% 60%, 40% 50%, 45% 40%, 
        50% 55%, 55% 45%, 60% 50%, 65% 40%, 70% 55%, 75% 45%, 
        80% 50%, 85% 40%, 90% 55%, 95% 45%, 98% 50%, 100% 40%,
        100% 60%, 98% 50%, 95% 55%, 90% 65%, 85% 60%, 80% 50%, 
        75% 55%, 70% 65%, 65% 60%, 60% 50%, 55% 55%, 50% 65%, 
        45% 60%, 40% 50%, 35% 60%, 30% 55%, 25% 65%, 20% 60%, 
        15% 50%, 12% 65%, 8% 55%, 5% 60%, 2% 50%, 0% 60%
    );
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 1rem;
}

.venue-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 0.8rem;
    position: relative;
}

.venue-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0.6;
}

.decorative-line {
    display: none;
}

/* Enhanced image section */
.image-section {
    text-align: center;
    position: relative;
    z-index: 3;
}

.image-frame {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

#weddingImage {
    width: 100%;
    max-width: 450px;
    max-height: 550px;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Enhanced countdown section */
.countdown-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.countdown-title {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px var(--emboss-light), -1px -1px 2px var(--emboss-shadow);
}

.countdown-container {
    background: transparent;
    padding: 2rem 3rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.countdown-container:hover {
    transform: translateY(-3px);
}

#countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

#countdown::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 10px;
    background: 
        linear-gradient(135deg, 
            #f9d849 0%, 
            #d4af37 15%,
            #ffd700 30%,
            #d4af37 45%,
            #c9a961 60%,
            #ffd700 75%,
            #d4af37 85%,
            #f9d849 100%
        );
    box-shadow: 
        0 1px 2px rgba(212, 175, 55, 0.4),
        0 2px 4px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 2px 0 1px rgba(0, 0, 0, 0.15),
        inset -2px 0 1px rgba(255, 255, 255, 0.2);
    border-radius: 50% 40% 45% 55% / 60% 50% 45% 55%;
    opacity: 0.95;
    clip-path: polygon(
        0% 40%, 2% 60%, 5% 45%, 8% 55%, 12% 35%, 15% 50%, 
        20% 40%, 25% 55%, 30% 45%, 35% 60%, 40% 50%, 45% 40%, 
        50% 55%, 55% 45%, 60% 50%, 65% 40%, 70% 55%, 75% 45%, 
        80% 50%, 85% 40%, 90% 55%, 95% 45%, 98% 50%, 100% 40%,
        100% 60%, 98% 50%, 95% 55%, 90% 65%, 85% 60%, 80% 50%, 
        75% 55%, 70% 65%, 65% 60%, 60% 50%, 55% 55%, 50% 65%, 
        45% 60%, 40% 50%, 35% 60%, 30% 55%, 25% 65%, 20% 60%, 
        15% 50%, 12% 65%, 8% 55%, 5% 60%, 2% 50%, 0% 60%
    );
}

.time-section {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-width: 0;
}

.time-section:hover {
    transform: translateY(-5px);
}

.time-section span {
    font-size: 5rem;
    font-weight: 300;
    display: block;
    color: var(--primary-color);
    text-shadow: 
        2px 2px 4px var(--emboss-shadow),
        -1px -1px 2px var(--emboss-light);
    letter-spacing: 1px;
    position: relative;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.time-section p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Enhanced details section */
.details-section {
    width: 100%;
    max-width: 800px;
}

.wedding-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.celebration-text {
    text-align: center;
}

.celebration-text p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.rsvp-text {
    font-size: 1.4rem !important;
    opacity: 0.85;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--text-color);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
    .date-badge {
        font-size: 0.95rem;
        padding: 0.7rem 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .heading-container {
        padding: 2.5rem 1.8rem;
        border-radius: 20px;
        min-width: auto;
        width: 100%;
        max-width: 500px;
    }
    
    .main-title {
        font-size: 1rem;
        letter-spacing: 1px;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 3rem;
        margin-top: 0.5rem;
    }
    
    .countdown-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-container {
        padding: 1rem 1.5rem;
        border-radius: 20px;
        width: 100%;
        max-width: 500px;
    }
    
    #countdown {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        width: 100%;
        justify-items: center;
        padding: 1.5rem 0;
        position: relative;
    }
    
    #countdown::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 10px;
        background: 
            linear-gradient(135deg, 
                #f9d849 0%, 
                #d4af37 15%,
                #ffd700 30%,
                #d4af37 45%,
                #c9a961 60%,
                #ffd700 75%,
                #d4af37 85%,
                #f9d849 100%
            );
        box-shadow: 
            0 1px 2px rgba(212, 175, 55, 0.4),
            0 2px 4px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2),
            inset 2px 0 1px rgba(0, 0, 0, 0.15),
            inset -2px 0 1px rgba(255, 255, 255, 0.2);
        border-radius: 50% 40% 45% 55% / 60% 50% 45% 55%;
        opacity: 0.95;
        clip-path: polygon(
            0% 40%, 2% 60%, 5% 45%, 8% 55%, 12% 35%, 15% 50%, 
            20% 40%, 25% 55%, 30% 45%, 35% 60%, 40% 50%, 45% 40%, 
            50% 55%, 55% 45%, 60% 50%, 65% 40%, 70% 55%, 75% 45%, 
            80% 50%, 85% 40%, 90% 55%, 95% 45%, 98% 50%, 100% 40%,
            100% 60%, 98% 50%, 95% 55%, 90% 65%, 85% 60%, 80% 50%, 
            75% 55%, 70% 65%, 65% 60%, 60% 50%, 55% 55%, 50% 65%, 
            45% 60%, 40% 50%, 35% 60%, 30% 55%, 25% 65%, 20% 60%, 
            15% 50%, 12% 65%, 8% 55%, 5% 60%, 2% 50%, 0% 60%
        );
    }
    
    .time-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 70px;
    }
    
    .time-section span {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .time-section p {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .rsvp-text {
        font-size: 1.3rem !important;
        margin-top: 0.5rem;
    }
    
    #weddingImage {
        max-width: 85vw;
        max-height: 450px;
        border-radius: 2px;
    }
    
    .decorative-line {
        width: 80px;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.8rem;
        gap: 1.8rem;
    }
    
    .date-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .main-title {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 3rem;
    }
    
    .countdown-title {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }
    
    .heading-container {
        padding: 2rem 1.2rem;
        max-width: 400px;
    }
    
    .countdown-container {
        padding: 0.5rem 1.2rem;
        max-width: 400px;
    }
    
    #countdown {
        gap: 0.6rem;
        max-width: 100%;
        justify-items: center;
        padding: 1rem 0;
        position: relative;
    }
    
    #countdown::after {
        content: '';
        position: absolute;
        bottom: 0.3rem;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 10px;
        background: 
            linear-gradient(135deg, 
                #f9d849 0%, 
                #d4af37 15%,
                #ffd700 30%,
                #d4af37 45%,
                #c9a961 60%,
                #ffd700 75%,
                #d4af37 85%,
                #f9d849 100%
            );
        box-shadow: 
            0 1px 2px rgba(212, 175, 55, 0.4),
            0 2px 4px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2),
            inset 2px 0 1px rgba(0, 0, 0, 0.15),
            inset -2px 0 1px rgba(255, 255, 255, 0.2);
        border-radius: 50% 40% 45% 55% / 60% 50% 45% 55%;
        opacity: 0.95;
        clip-path: polygon(
            0% 40%, 2% 60%, 5% 45%, 8% 55%, 12% 35%, 15% 50%, 
            20% 40%, 25% 55%, 30% 45%, 35% 60%, 40% 50%, 45% 40%, 
            50% 55%, 55% 45%, 60% 50%, 65% 40%, 70% 55%, 75% 45%, 
            80% 50%, 85% 40%, 90% 55%, 95% 45%, 98% 50%, 100% 40%,
            100% 60%, 98% 50%, 95% 55%, 90% 65%, 85% 60%, 80% 50%, 
            75% 55%, 70% 65%, 65% 60%, 60% 50%, 55% 55%, 50% 65%, 
            45% 60%, 40% 50%, 35% 60%, 30% 55%, 25% 65%, 20% 60%, 
            15% 50%, 12% 65%, 8% 55%, 5% 60%, 2% 50%, 0% 60%
        );
    }
    
    .time-section {
        max-width: 60px;
    }
    
    .time-section span {
        font-size: 2.2rem;
        margin-bottom: 0.2rem;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .time-section p {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .rsvp-text {
        font-size: 1.2rem !important;
    }
    
    .decorative-line {
        width: 60px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .container {
        padding: 0.8rem 0.5rem;
        gap: 1.5rem;
    }
    
    .main-title {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 3rem;
    }
    
    .countdown-title {
        font-size: 1.7rem;
    }
    
    .heading-container {
        padding: 1.8rem 1rem;
        max-width: 340px;
    }
    
    .countdown-container {
        padding: 0.2rem 1rem;
        max-width: 340px;
    }
    
    #countdown {
        gap: 1rem;
        max-width: 320px;
        justify-items: center;
        padding: 0.8rem 0;
    }
    
    .time-section {
        max-width: 110px;
    }
    
    .time-section span {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .time-section p {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .date-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

/* Desktop enhancements */
@media (min-width: 1200px) {
    .container {
        gap: 2.5rem;
    }
    
    .main-title {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 4rem;
    }
    
    .countdown-title {
        font-size: 3rem;
    }
    
    .heading-container {
        padding: 4rem 5rem;
    }
    
    .countdown-container {
        padding: 2rem 3.5rem;
    }
    
    #countdown {
        gap: 4rem;
        max-width: 800px;
    }
    
    .time-circle {
        width: 140px;
        height: 140px;
    }
    
    .time-section span {
        font-size: 4rem;
    }
    
    .time-section p {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    #weddingImage {
        max-width: 500px;
        max-height: 600px;
    }
    
    .quote-text {
        font-size: 2rem;
    }
    
    .celebration-text p {
        font-size: 1.8rem;
    }
}

/* Additional animations for enhanced appeal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
