/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B1A3A;
    --primary-light: #A52A4A;
    --secondary: #D4A574;
    --gold: #C9956B;
    --bg-cream: #FFF8F5;
    --bg-light: #FFF5F0;
    --bg-section: #FDF6F0;
    --accent-rose: #C9788B;
    --text-dark: #4A2C2A;
    --text-medium: #6B4444;
    --text-light: #8B6B6B;
    --white: #FFFFFF;
    --border: #F0D4C8;
    --border-light: #F5E6DF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.mobile-only { display: none; }
.desktop-only { display: block; }

/* ===== FLOATING MUSIC BUTTON ===== */
.floating-music {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    box-shadow: 0 3px 12px rgba(139, 26, 58, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-music:hover {
    background: var(--white);
    box-shadow: 0 4px 18px rgba(139, 26, 58, 0.2);
    transform: scale(1.05);
}

.floating-music img {
    width: 22px;
    height: 22px;
}

.floating-music.playing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    left: 20px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}



/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floral-left, .floral-right {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 300px;
}

.floral-left { left: 0; }
.floral-right { right: 0; transform: scaleX(-1); }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.monogram {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 6px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.monogram-divider {
    margin: 0 4px;
    opacity: 0.4;
}

.tagline {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--text-medium);
    margin-bottom: 10px;
    font-weight: 400;
}

.couple-names { font-family: 'Playfair Display', serif; margin-bottom: 20px; }

.name-aarav, .name-riya {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 8px;
    line-height: 1.1;
}

.ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 44px;
    color: var(--secondary);
    display: block;
    margin: 2px 0;
    font-weight: 400;
}

.invite-text {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 22px;
    line-height: 1.8;
    font-style: italic;
}

.wedding-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 1px;
}

.detail-item i { color: var(--primary); margin-right: 6px; }
.detail-separator { color: var(--text-light); font-size: 12px; }

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 45px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 26, 58, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 26, 58, 0.4);
}

.btn-primary i { margin-left: 8px; font-size: 11px; }

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.ornament { width: 70px; opacity: 0.5; }
.ornament.flipped { transform: scaleX(-1); }

/* ===== COUPLE SECTION ===== */
.couple-section {
    padding: 70px 20px;
    background: var(--bg-cream);
}

.couple-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.person { text-align: center; flex: 1; }

.person-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.person-photo {
    width: 180px;
    height: 220px;
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 3px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(139, 26, 58, 0.08);
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.relation {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-medium);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.heart-divider { width: 35px; flex-shrink: 0; }
.heart-divider img { width: 35px; }

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    padding: 60px 20px;
    background: var(--bg-section);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 650px;
    margin: 0 auto;
}

.countdown-item {
    background: var(--white);
    border-radius: 10px;
    padding: 22px 30px;
    min-width: 130px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.countdown-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 70px 20px;
    background: var(--bg-cream);
}

.timeline-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.timeline-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.timeline-item h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.timeline-date {
    font-size: 11px;
    color: var(--text-medium);
    font-weight: 500;
}

.timeline-time {
    font-size: 11px;
    color: var(--text-light);
}

.timeline-btn-wrap {
    text-align: center;
    margin-top: 30px;
}

/* ===== PRE WEDDING SECTION ===== */
.prewedding-section {
    padding: 70px 20px;
    background: var(--bg-section);
}

.prewedding-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.prewedding-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(139, 26, 58, 0.05);
    transition: transform 0.3s;
}

.prewedding-card:hover { transform: translateY(-4px); }

.prewedding-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.prewedding-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.prewedding-card:hover .prewedding-img img { transform: scale(1.05); }

.prewedding-info {
    padding: 18px 15px;
    text-align: center;
}

.prewedding-info h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 6px;
}

.event-datetime {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 6px;
}

.event-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== VENUE SECTION ===== */
.venue-section {
    padding: 70px 20px;
    background: var(--bg-cream);
}

.venue-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.venue-info { text-align: left; }
.venue-label { font-size: 11px; letter-spacing: 3px; color: var(--text-light); margin-bottom: 8px; }

.venue-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.venue-info p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 9px 22px;
    border-radius: 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.venue-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.venue-map img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ===== TRAVEL & INFO SECTION ===== */
.travel-section {
    padding: 60px 20px;
    background: var(--bg-section);
}

.desktop-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.info-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-card h4 {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 6px;
}

.btn-watch {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 8px;
    transition: all 0.3s;
}

.btn-watch:hover { background: var(--primary-light); }

/* Mobile info styles */
.mobile-info { display: none; }

.mobile-info-section {
    margin-bottom: 25px;
}

.mobile-info-title {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.mobile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border-light);
}

.mobile-info-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.mobile-info-icon img { width: 100%; height: 100%; object-fit: contain; }

.mobile-info-item h5 {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 3px;
}

.mobile-info-item p {
    font-size: 11px;
    color: var(--text-light);
}

.mobile-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.mobile-info-card h5 {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.mobile-info-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 4px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 60px 20px;
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto 25px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(139, 26, 58, 0);
    transition: background 0.3s;
    border-radius: 8px;
}

.gallery-item:hover::after { background: rgba(139, 26, 58, 0.12); }

.gallery-btn-wrap { text-align: center; }

/* ===== RSVP SECTION ===== */
.rsvp-section {
    padding: 60px 20px;
    background: var(--bg-section);
}

.rsvp-section .section-header { margin-bottom: 30px; }

.rsvp-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s;
    outline: none;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    border-color: var(--primary);
}

.rsvp-form textarea { margin-bottom: 15px; resize: vertical; }

.btn-submit {
    display: block;
    width: auto;
    margin: 0 0 0 auto;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-submit i { margin-left: 8px; }

/* ===== FOOTER ===== */
.footer {
    position: relative;
    padding: 60px 20px 20px;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-floral-left, .footer-floral-right {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 220px;
}

.footer-floral-left { left: 0; }
.footer-floral-right { right: 0; }

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-left {
    text-align: left;
}

.footer-left h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-left p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.footer-center { text-align: center; }

.footer-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 4px;
    border: 1.5px solid rgba(255,255,255,0.4);
    width: 65px;
    height: 65px;
    line-height: 62px;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.footer-monogram span { margin: 0 2px; opacity: 0.5; }

.footer-names {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 400;
}

.footer-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 3px;
}

.footer-right { text-align: right; }

.footer-right span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-content-mobile { display: none; }

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i { color: var(--primary); }

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .prewedding-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .desktop-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 54px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 54px);
        background: var(--bg-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: left 0.3s ease;
    }

    .nav-links.active { left: 0; }

    .nav-container { padding: 12px 20px; }

    /* Hero Mobile */
    .hero { min-height: 100vh; padding: 80px 20px 50px; }
    .floral-left, .floral-right { width: 160px; }
    .name-aarav, .name-riya { font-size: 38px; letter-spacing: 5px; }
    .ampersand { font-size: 34px; }
    .monogram { font-size: 18px; }

    /* Couple Mobile */
    .couple-section { padding: 50px 20px; }
    .couple-container { flex-direction: column; gap: 25px; }
    .person-photo { width: 140px; height: 170px; }
    .heart-divider { transform: none; }

    /* Countdown Mobile */
    .countdown-section { padding: 50px 20px; }
    .countdown-container { gap: 10px; }
    .countdown-item { min-width: 70px; padding: 15px 12px; }
    .countdown-number { font-size: 30px; }
    .countdown-label { font-size: 9px; }

    /* Timeline Mobile - Vertical List */
    .timeline-section { padding: 50px 20px; }
    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 30px;
        max-width: 320px;
    }

    .timeline-track {
        top: 0;
        bottom: 0;
        left: 52px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .timeline-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 12px 0;
        width: 100%;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
        margin: 0;
        flex-shrink: 0;
    }

    .timeline-icon img { width: 24px; height: 24px; }
    .timeline-item h4 { font-size: 12px; margin-bottom: 2px; }
    .timeline-date { font-size: 11px; }
    .timeline-time { font-size: 10px; }

    /* Pre Wedding Mobile - Horizontal card with image left, text right */
    .prewedding-section { padding: 50px 20px; }
    .prewedding-container {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .prewedding-card {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .prewedding-img { height: 100%; min-height: 130px; }
    .prewedding-info { text-align: left; padding: 15px; }
}

@media (max-width: 768px) {
    /* Venue Mobile */
    .venue-section { padding: 50px 20px; }
    .venue-container {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 380px;
        margin: 0 auto;
    }
    .venue-info { text-align: center; }

    /* Travel Mobile */
    .travel-section { padding: 50px 20px; }
    .desktop-info { display: none; }
    .mobile-info { display: block; max-width: 380px; margin: 0 auto; }

    /* Gallery Mobile - 2x2 grid */
    .gallery-section { padding: 50px 20px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* RSVP Mobile */
    .rsvp-section { padding: 50px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; max-width: 100%; margin: 0; }
    .rsvp-section .section-header h2 { font-size: 16px; }

    /* Footer Mobile */
    .footer { padding: 50px 20px 15px; }
    .footer-content { display: none; }
    .footer-content-mobile {
        display: block;
        position: relative;
        z-index: 2;
        text-align: center;
        padding-bottom: 20px;
    }
    .footer-content-mobile .footer-monogram {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        color: var(--white);
        letter-spacing: 4px;
        border: 1.5px solid rgba(255,255,255,0.4);
        width: 65px;
        height: 65px;
        line-height: 62px;
        border-radius: 50%;
        margin: 0 auto 12px;
    }
    .footer-content-mobile .footer-monogram span { margin: 0 2px; opacity: 0.5; }
    .footer-content-mobile .footer-names {
        font-family: 'Great Vibes', cursive;
        font-size: 28px;
        color: var(--white);
        margin-bottom: 4px;
        font-weight: 400;
    }
    .footer-content-mobile .footer-date {
        font-size: 12px;
        color: rgba(255,255,255,0.75);
        letter-spacing: 3px;
        margin-bottom: 25px;
    }
    .footer-thankyou-title {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        color: var(--secondary);
        margin-bottom: 4px;
    }
    .footer-thankyou-text {
        font-size: 12px;
        color: rgba(255,255,255,0.75);
        margin-bottom: 25px;
    }
    .footer-content-mobile .social-icons {
        justify-content: center;
    }

    .footer-floral-left, .footer-floral-right { width: 150px; }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    /* Section headers mobile */
    .section-header h2 { font-size: 18px; letter-spacing: 1.5px; }
    .ornament { width: 50px; }
    .section-header { margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .floral-left, .floral-right { width: 130px; }
    .name-aarav, .name-riya { font-size: 32px; letter-spacing: 4px; }
    .ampersand { font-size: 30px; }
    .tagline { font-size: 9px; letter-spacing: 4px; }
    .invite-text { font-size: 12px; }
    .btn-primary { padding: 12px 35px; font-size: 11px; }
    .person-photo { width: 120px; height: 150px; }
    .countdown-item { min-width: 60px; padding: 12px 10px; }
    .countdown-number { font-size: 26px; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}



.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--accent-rose); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
