@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Great+Vibes&family=Cinzel:wght@400;700&display=swap');

:root {
    --primary: #1a3020; /* Refined Military Emerald */
    --secondary: #d4af37; /* Royal Gold */
    --accent: #2d5a27; 
    --bg: #fdfaf5; 
    --text: #1a1a1a;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7ef8a 50%, #d4af37 100%);
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.3);
    --military-pattern: rgba(26, 48, 32, 0.05);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body.locked { 
    overflow: hidden !important; 
    height: 100vh !important; 
    position: fixed !important; 
    width: 100% !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.serif { font-family: 'Playfair Display', serif; }
.accent-text { font-family: 'Great Vibes', cursive; }

/* Metallic Gold Text */
.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Cinematic Cover */
#cover {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000;
    background-color: #000;
    transition: transform 1.8s cubic-bezier(0.86, 0, 0.07, 1);
    overflow: hidden;
}

.cover-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('awal foto.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 10s ease-out;
}

#cover.unlocked .cover-bg {
    transform: scale(1.2);
}

#cover.unlocked { 
    transform: translateY(-100%); 
}

.cover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}

.cover-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cover-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.the-wedding-of {
    letter-spacing: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    opacity: 0.9;
}

.cover-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Countdown Styles */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.countdown-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-item p {
    font-size: 0.7rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .countdown-wrapper { gap: 10px; }
    .countdown-item { padding: 10px; min-width: 60px; }
    .countdown-item span { font-size: 1.4rem; }
    .countdown-item p { font-size: 0.6rem; }
}

.cover-names-h1 { 
    font-family: 'Great Vibes', cursive;
    font-size: 5.5rem; 
    margin: 10px 0;
    font-weight: 400;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.cover-date-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.cover-date-wrap::before, .cover-date-wrap::after {
    content: "";
    height: 1px;
    width: 40px;
    background: white;
    opacity: 0.6;
}

.cover-date {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.cover-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.guest-card {
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-open-white {
    padding: 15px 50px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: var(--transition-slow);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-open-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Main Content Wrapper */
#main-content {
    background: url('modern_military_royal_green_bg.png') repeat-y center top;
    background-size: 100% auto;
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
}

/* Gallery Section - needs light text on dark bg */
#gallery { background: transparent; }
#gallery .section-title-wrap h2 { color: #fff !important; }
#gallery .section-title-wrap p { color: var(--secondary) !important; }

/* Closing section text fix on dark bg */
#closing .final-closing > p { color: rgba(255,255,255,0.85) !important; }
#closing .gift-box > p { color: rgba(255,255,255,0.85) !important; }
#closing .acc-number { color: var(--secondary) !important; }

/* Navigation */
.main-nav {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 48, 32, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 30px;
    border-radius: 50px;
    z-index: 9000;
    display: none;
    gap: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: 0.5s;
}

.main-nav a { 
    color: white; 
    text-decoration: none; 
    font-size: 1.2rem; 
    transition: 0.3s;
    opacity: 0.7;
}

.main-nav a:hover, .main-nav a.active { 
    color: var(--secondary); 
    transform: translateY(-5px); 
    opacity: 1;
}

/* Sections */
section {
    padding: 120px 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-with-pattern {
    background: rgba(255, 255, 255, 0.96);
    position: relative;
}

.section-with-pattern::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(26, 48, 32, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.section-title-wrap { margin-bottom: 50px; }

.section-title-wrap h2 { 
    font-size: 3.5rem; 
    color: var(--primary); 
    margin-bottom: 10px; 
    letter-spacing: 3px;
    text-transform: uppercase;
}
.section-title-wrap p { 
    font-size: 1.2rem; 
    color: var(--secondary); 
    letter-spacing: 8px; 
    text-transform: uppercase;
    font-weight: 600;
}

.intro-p { max-width: 800px; margin: 30px auto; font-size: 1.2rem; line-height: 2; color: #555; }

.greeting-text {
    font-size: 3rem;
    margin-bottom: 25px;
}

#intro .quote-box {
    display: none; /* Hide redundant quote box as requested to fix messy layout */
}

.quote-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    margin-top: 50px;
    max-width: 700px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.quote-box::after {
    content: "";
    position: absolute;
    bottom: -5px; right: -5px;
    width: 100%; height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Events Section */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin-top: 60px;
}

.event-box {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.event-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--gold-gradient);
}

.event-box:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.event-box i { font-size: 3.5rem; margin-bottom: 25px; display: block; color: var(--primary); }
.event-box h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.event-box p { font-size: 1.1rem; color: #666; margin-bottom: 10px; }

.gold-hr { border: 0; border-top: 2px solid var(--secondary); width: 60px; margin: 25px auto; opacity: 0.6; }

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
}

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    position: relative;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 48, 32, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(2px);
}

.gallery-overlay i {
    color: var(--secondary);
    font-size: 2rem;
    transform: scale(0.5);
    transition: 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Mempelai */
#couple { background: rgba(255, 255, 255, 0.94); }
.couple-scene { display: flex; flex-direction: column; gap: 60px; width: 100%; max-width: 1100px; }
.couple-profile { 
    background: white; 
    padding: 60px 40px; 
    border-radius: 30px; 
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
}

.couple-profile:hover { transform: translateY(-10px); }

.couple-img-circle { 
    width: 250px; 
    height: 250px; 
    margin: 0 auto 40px; 
    border-radius: 50%; 
    border: 12px solid #f9f9f9; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    overflow: hidden; 
    transition: 0.5s;
}

.couple-profile:hover .couple-img-circle { border-color: var(--secondary); }

.couple-img-circle img { width: 100%; height: 100%; object-fit: cover; }

/* RSVP / Wishes */
.rsvp-container {
    width: 100%;
    max-width: 850px;
    background: rgba(26, 48, 32, 0.98);
    backdrop-filter: blur(25px);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    margin-top: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.rsvp-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    border-radius: 12px;
    flex: 1;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

.stat-box span { display: block; font-size: 1.8rem; font-weight: 700; color: var(--secondary); }
.stat-box p { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; opacity: 0.8; }

.rsvp-form .input-group { margin-bottom: 15px; }

.rsvp-form input, .rsvp-form textarea, .rsvp-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.rsvp-form input::placeholder, .rsvp-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.rsvp-form input:focus, .rsvp-form textarea:focus, .rsvp-form select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}

.rsvp-form select option {
    background-color: var(--primary);
    color: white;
    padding: 10px;
}

.wish-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: left;
    border-left: 4px solid var(--secondary);
}

/* Admin & Footer Polish */
.admin-tool {
    padding: 60px 20px 120px;
    background: rgba(26, 48, 32, 0.97);
    margin-top: 50px;
    border-top: 2px solid rgba(212,175,55,0.3);
    text-align: center;
    color: rgba(255,255,255,0.85);
}

.admin-tool > p {
    color: var(--secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.gen-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
    margin: 15px auto;
}

.admin-tool input {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.4);
    width: 100%;
    background: rgba(255,255,255,0.08);
    color: white;
    font-family: inherit;
}

.admin-tool input::placeholder { color: rgba(255,255,255,0.5); }

#generated-link {
    width: 100%;
    max-width: 420px;
    margin: 15px auto 0;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 15px;
    resize: none;
    line-height: 1.6;
    font-family: inherit;
    display: block;
}

/* Particles & Music */
.particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(212, 175, 55, 0.3); border-radius: 50%; animation: float 15s infinite linear; }
@keyframes float { from { transform: translateY(100vh); } to { transform: translateY(-100vh); } }

#music-toggle {
    position: fixed; bottom: 85px; right: 20px; width: 45px; height: 45px;
    background: white; border-radius: 50%; display: none; align-items: center; justify-content: center;
    z-index: 9999; box-shadow: 0 5px 15px rgba(0,0,0,0.2); cursor: pointer; color: var(--primary);
}

/* =====================================================
   Quran Verse Section - MUST be before @media query
   ===================================================== */
/* Quran Verse Section from Image */
.quran-section-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.quran-img-box {
    width: 100%;
    height: auto;
    line-height: 0;
    overflow: visible;
}

.quran-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

.quran-content-box {
    padding: 40px 30px;
    background: url('bg-3d.png') no-repeat center center;
    background-size: cover;
    position: relative;
    text-align: center;
}

.quran-content-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.quran-text {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.quran-surah {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

/* =====================================================
   RESPONSIVE - Mobile (max 768px)
   ===================================================== */
@media (max-width: 768px) {
    section { padding: 60px 15px; }

    /* Fix cover photo on mobile - show subjects at bottom */
    .cover-bg {
        background-position: center 65% !important;
    }

    /* Fix background-attachment for mobile (known iOS/Android issue) */
    #main-content {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
    }

    /* Fix cover content padding on mobile */
    .cover-content {
        padding: 50px 15px !important;
    }

    .cover-names-h1 { font-size: 3.5rem !important; }
    .stat-box span { font-size: 1.4rem; }
    .stat-box p { font-size: 0.55rem; }
    .section-title-wrap h2 { font-size: 2rem !important; }
    .accent-text { font-size: 3.5rem !important; }
    
    .greeting-text {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }

    /* ---- Quran Photo Section Mobile Fix ---- */
    /* Force the wrapper to show full image, never clip */
    .quran-section-wrapper {
        max-width: 100% !important;
        overflow: visible !important;
        margin-bottom: 25px !important;
        border-radius: 15px !important;
        display: block !important;
        height: auto !important;
        -webkit-transform: translate3d(0,0,0); /* Fix for iOS rendering bugs */
        transform: translate3d(0,0,0);
    }

    /* Remove ALL height constraints on image box */
    .quran-img-box {
        overflow: visible !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        line-height: 0 !important;
    }

    /* Force full image display - showing the couple at the bottom of portrait photo */
    .quran-img-box img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        display: block !important;
        object-fit: contain !important; /* Changed from fill to contain for better ratio */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .quran-content-box {
        padding: 20px 15px !important;
    }

    .quran-text {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 10px !important;
    }

    .quran-surah {
        font-size: 0.9rem !important;
    }

    /* Couple section mobile */
    .couple-profile { padding: 35px 20px !important; }
    .couple-img-circle { width: 180px !important; height: 180px !important; }

    /* Event box mobile */
    .event-box { padding: 35px 20px !important; }
    .event-grid { grid-template-columns: 1fr !important; gap: 25px !important; }

    /* RSVP container mobile */
    .rsvp-container { padding: 35px 20px !important; border-radius: 25px !important; }

    /* Intro text mobile */
    .intro-p { font-size: 1rem !important; line-height: 1.8 !important; }

    .main-nav { 
        width: 95%; gap: 8px; padding: 8px 15px; bottom: 15px; 
        justify-content: space-around;
    }
    .main-nav a { font-size: 0.9rem; }
    
    #music-toggle { bottom: 80px; right: 15px; width: 40px; height: 40px; }
    
    .admin-tool { padding-bottom: 150px; }
    .gen-box { width: 100%; max-width: 100% !important; }
    #generated-link { max-width: 100% !important; }
}

/* Love Story Section */
#story { background: transparent; padding-bottom: 50px; }
#story .section-title-wrap h2 { color: white !important; }
#story .section-title-wrap p { color: rgba(255,255,255,0.8) !important; font-style: italic; }

.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.story-timeline::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    background: var(--gold-gradient);
    transform: translateX(-50%);
    opacity: 0.3;
}

.story-item {
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.story-item.left { justify-content: flex-start; }

.story-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-premium);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-slow);
}

.story-content:hover { transform: translateY(-10px); }

.story-year {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 5px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.story-item.right .story-year { left: auto; right: 30px; }

.story-img-box {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #f9f9f9;
}

.story-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.story-text-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Timeline dots */
.story-item::after {
    content: "";
    position: absolute;
    top: 20px; left: 50%;
    width: 20px; height: 20px;
    background: white;
    border: 4px solid var(--secondary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 15px var(--secondary);
}

@media (max-width: 768px) {
    .story-timeline::before { left: 30px; }
    .story-item { justify-content: flex-end !important; margin-bottom: 60px; }
    .story-content { width: calc(100% - 70px); }
    .story-item::after { left: 30px; top: 30px; }
    .story-year { left: 20px !important; right: auto !important; }
}

/* Turut Mengundang Section */
.guests-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
}

.guest-category {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.guest-category h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.guest-list {
    list-style: decimal;
    padding-left: 25px;
    text-align: left;
    color: #333;
    font-size: 1.1rem;
    line-height: 2.2;
}

.guest-list li {
    margin-bottom: 8px;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .guests-container {
        flex-direction: column;
        padding: 0 10px;
    }
    .guest-category {
        min-width: 100%;
        padding: 30px 20px;
    }
}

