:root {
    /* Color Palette */
    --primary: #800000; /* Deep Crimson */
    --primary-light: #a52a2a;
    --secondary: #D4AF37; /* Champagne Gold */
    --accent: #FFD700;
    --bg-pearl: #FFFDD0; /* Pearl Ivory */
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 5%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-pearl);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

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

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 3rem;
    margin-bottom: 20px;
}

.loader-logo span {
    color: var(--text-light);
    font-style: italic;
}

.loader-bar {
    width: 150px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    animation: loading 1.5s ease-in-out infinite;
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--secondary); /* Gold on dark hero */
    transition: color 0.4s;
}

.navbar.scrolled .nav-logo {
    color: var(--primary); /* Crimson once scrolled */
}

.nav-logo span {
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.navbar.scrolled .nav-logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85); /* White on dark hero */
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark); /* Dark once scrolled */
}

.nav-links a:hover {
    color: var(--secondary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-rsvp {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.navbar.scrolled .nav-rsvp {
    background: var(--primary) !important;
    color: white !important;
}

.nav-rsvp:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(128,0,0,0.25) !important;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 6px 10px;
    transition: all 0.3s;
    line-height: 1;
}

.navbar.scrolled .mobile-menu-btn {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-nav-close:hover {
    background: rgba(255,255,255,0.2);
}

.mobile-nav-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.mobile-nav-logo span {
    color: white;
    font-style: italic;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--secondary);
}

.mobile-nav-rsvp {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 12px 35px !important;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 10px;
}

.mobile-nav-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 5, 5, 0.5), rgba(26, 5, 5, 0.7)), url('premium_couple_v2.png');
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 140px 5% 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* Intro Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ganesha Header */
.ganesha-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.ganesha-icon {
    margin-bottom: 15px;
    animation: floatGanesha 6s ease-in-out infinite;
}

.ganesha-text {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--secondary);
    letter-spacing: 2px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@keyframes floatGanesha {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.hero-badge {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 18px;
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.hero-title .and {
    font-size: 0.6em;
    font-style: italic;
    opacity: 0.7;
    color: var(--secondary);
}

.hero-date {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

/* Countdown */
.countdown {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.count-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 64px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
}

.count-item span {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1;
}

.count-item label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    color: white;
    margin-top: 4px;
}

/* --- Sections --- */
.section {
    padding: var(--section-padding);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin: 10px 0;
}

.ornament {
    width: 200px;
    height: 40px;
    margin: 20px auto;
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="%23D4AF37"><path d="M0 10 Q25 0 50 10 Q75 20 100 10 Q75 0 50 10 Q25 20 0 10 Z"/></svg>') no-repeat center;
    background-size: contain;
}

.ornament::after {
    content: '❤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-pearl);
    padding: 0 15px;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* --- Story Section --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.9;
}

.image-main {
    position: relative;
    border: 15px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.image-main:hover {
    transform: rotate(0deg);
}

.image-main img {
    width: 100%;
    display: block;
}

/* --- Events Section --- */
.events {
    background: #f9f4e8;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.event-card {
    padding: 50px 35px;
    text-align: center;
    border-radius: 4px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    pointer-events: none;
    border-radius: 2px;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(128, 0, 0, 0.12);
}

.event-card.highlighted {
    background: var(--primary);
    color: white;
    border-color: var(--secondary);
    animation: subtleGlow 3s infinite alternate ease-in-out;
}

@keyframes subtleGlow {
    0% { box-shadow: 0 10px 30px rgba(128, 0, 0, 0.1); }
    100% { box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35); }
}

.event-card.highlighted::before {
    border-color: rgba(212, 175, 55, 0.5);
}

.event-card.highlighted .event-icon,
.event-card.highlighted h3,
.event-card.highlighted .btn-text,
.event-card.highlighted .event-lagnam {
    color: var(--secondary);
}

/* Fix: highlighted card time/location text must be readable */
.event-card.highlighted .event-time,
.event-card.highlighted .event-loc {
    color: rgba(255, 255, 255, 0.85);
}

.event-lagnam {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Date badge top-right corner of event card */
.event-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
}

.event-date-badge.gold {
    background: var(--secondary);
    color: var(--primary);
}

/* Tagline under event title */
.event-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.5;
}

.event-card.highlighted .event-tagline {
    color: rgba(255,255,255,0.6);
}

/* Group event detail rows */
.event-details {
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
    text-align: left;
}

.event-card.highlighted .event-details {
    background: rgba(255,255,255,0.07);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.event-icon svg {
    width: 40px;
    height: 40px;
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.event-time, .event-loc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.event-time svg, .event-loc svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 12px;
}

.btn-text svg {
    width: 14px;
    height: 14px;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    aspect-ratio: 4/5;
    border: 4px solid white;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(128, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
}

.overlay-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    border: 1.5px solid var(--secondary);
    padding: 8px 15px;
    background: rgba(128, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--secondary);
}

.gallery-item:hover .overlay-text {
    transform: translateY(0);
}

.gallery-overlay svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    padding: 20px;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid var(--secondary);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

/* --- RSVP Section --- */
.rsvp {
    background: #f9f4e8;
}

.rsvp-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border: 1px solid var(--secondary);
    text-align: center;
    position: relative;
    border-radius: 4px;
    animation: subtleGlow 3s infinite alternate ease-in-out;
}

.rsvp-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.rsvp-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.rsvp-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.25);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.35);
}

/* --- Footer --- */
.footer {
    background: var(--primary);
    padding: 60px 5% 40px;
    text-align: center;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.footer-logo span {
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.footer-save-the-date {
    font-size: 0.9rem;
    color: var(--secondary);
    letter-spacing: 5px;
    font-weight: 700;
    margin: -5px 0 25px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-names {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 8px;
}

.footer-date {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
    margin: 0 auto 20px;
}

.footer-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-note .heart {
    color: #ff6b8a;
}

/* --- Reveal Animations --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Floating Petals --- */
.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Below navbar and content */
    overflow: hidden;
}

.petal {
    position: absolute;
    border-radius: 150% 0 150% 0;
    pointer-events: none;
    animation: fall linear infinite;
    top: -20px;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(110vh) translateX(80px) rotate(360deg);
        opacity: 0;
    }
}

/* --- Music Toggle --- */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.music-toggle.playing {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }

    .story-grid { grid-template-columns: 1fr; gap: 40px; }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .countdown {
        justify-content: center;
        gap: 12px;
    }
    .count-item {
        min-width: 56px;
        padding: 10px 12px;
    }
    .count-item span { font-size: 1.8rem; }
    .hero-actions { display: flex; justify-content: center; }
}

@media (max-width: 600px) {
    :root { --section-padding: 70px 5%; }

    .section-header h2 { font-size: 2rem; }
    .event-card { padding: 35px 24px; }
    .rsvp-card { padding: 40px 24px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .story-grid { gap: 30px; }
    .image-main { border-width: 8px; }
    .footer { padding: 40px 5% 30px; }
}
