/* ===== ROOT & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Military Theme Colors */
    --military-green: #4a5f3a;
    --military-dark: #2d3a24;
    --olive-light: #7a9060;
    
    /* Medical Theme Colors */
    --medical-blue: #0077be;
    --medical-light: #4da6d6;
    --medical-sky: #e8f4f8;
    
    /* Neutral Colors */
    --gold: #d4af37;
    --cream: #f8f6f0;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    
    /* Fonts */
    --font-cursive: 'Great Vibes', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COVER PAGE ===== */
.cover-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 58, 36, 0.9) 0%, rgba(74, 95, 58, 0.9) 50%, rgba(0, 119, 190, 0.9) 100%), url('img/01 (3).jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cover-page.hidden {
    opacity: 0;
    visibility: hidden;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.3;
}

.cover-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 600px;
    z-index: 10;
}

.floral-left,
.floral-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    width: 150px;
    height: 150px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(41%) saturate(542%) hue-rotate(357deg) brightness(93%) contrast(86%);
    animation: floatFlower 6s ease-in-out infinite;
}

.floral-left {
    left: -100px;
    animation-delay: 0s;
}

.floral-right {
    right: -100px;
    animation-delay: 1s;
}

@keyframes floatFlower {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-60%) rotate(5deg);
    }
}

.cover-ornament {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.cover-ornament.top {
    margin-bottom: 30px;
}

.cover-ornament.bottom {
    margin-top: 30px;
}

.military-badge {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.cover-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    color: var(--white);
}

.couple-names {
    font-family: var(--font-cursive);
    font-size: 64px;
    color: var(--gold);
    margin: 20px 0;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
    line-height: 1.2;
}

.cover-date {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    color: var(--white);
}

.guest-info {
    margin: 30px 0;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.dear-text {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    color: var(--white);
}

.guest-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.btn-open {
    background: linear-gradient(135deg, var(--gold), #e5c158);
    color: var(--military-dark);
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
}

.btn-open:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-open i {
    font-size: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.main-content.visible {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('img/01 (4).jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 50px 60px;
}

.medical-icon,
.military-icon {
    font-size: 50px;
    color: var(--white);
    margin: 20px 0;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.9));
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-title {
    font-family: var(--font-cursive);
    font-size: 72px;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0,0,0,0.9), -1px -1px 5px rgba(0,0,0,0.8);
    line-height: 1.2;
    margin: 30px 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-family: var(--font-cursive);
    font-size: 56px;
    color: var(--military-green);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-flower {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(41%) saturate(542%) hue-rotate(357deg) brightness(93%) contrast(86%);
    animation: rotateFlower 8s ease-in-out infinite;
}

@keyframes rotateFlower {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 100px 20px;
    background: var(--cream);
    text-align: center;
}

.quote-icon {
    font-size: 40px;
    color: var(--military-green);
    margin-bottom: 30px;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.quote-source {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--military-green);
    font-weight: 600;
}

/* ===== COUPLE SECTION ===== */
.couple-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.couple-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
}

.couple-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.couple-card:hover {
    transform: translateY(-10px);
}

.couple-photo {
    margin-bottom: 30px;
}

.photo-frame {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.military-frame {
    border-color: var(--military-green);
}

.medical-frame {
    border-color: var(--medical-blue);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.military-badge-small,
.medical-badge-small {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.military-badge-small {
    background: var(--military-green);
}

.medical-badge-small {
    background: var(--medical-blue);
}

.couple-name {
    font-family: var(--font-cursive);
    font-size: 36px;
    color: var(--military-green);
    margin-bottom: 10px;
}

.couple-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.couple-parents {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin: 20px 0;
}

.couple-parents p {
    margin: 5px 0;
    font-size: 15px;
}

.couple-parents strong {
    color: var(--military-green);
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--military-green);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.couple-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon {
    font-size: 60px;
    color: var(--gold);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--military-green), var(--medical-blue));
    color: var(--white);
}

.countdown-section .section-title {
    color: var(--white);
    margin-bottom: 50px;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-serif);
}

.countdown-label {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 100px 20px;
    background: var(--cream);
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin: 40px auto;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--military-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.blessing-icon {
    background: var(--gold);
}

.adat-icon {
    background: var(--military-green);
}

.syukuran-icon {
    background: var(--medical-blue);
}

.event-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--military-green);
    margin-bottom: 30px;
}

.event-details {
    text-align: left;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 16px;
}

.event-detail i {
    color: var(--military-green);
    font-size: 20px;
    width: 25px;
}

.event-address {
    margin: 20px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.btn-map {
    display: inline-block;
    background: linear-gradient(135deg, var(--military-green), var(--olive-light));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 95, 58, 0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 95, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
}

.gallery-close:hover {
    color: var(--gold);
}

.gallery-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.gallery-nav button:hover {
    background: rgba(212, 175, 55, 0.5);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

/* ===== GIFT SECTION ===== */
.gift-section {
    padding: 100px 20px;
    background: var(--cream);
    text-align: center;
}

.gift-subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 16px;
}

.gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.gift-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-10px);
}

.gift-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--military-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.gift-icon.medical {
    background: var(--medical-blue);
}

.gift-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--military-green);
    margin-bottom: 20px;
}

.gift-bank {
    margin: 20px 0;
}

.bank-logo {
    height: 40px;
}

.gift-account {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.account-number {
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--military-dark);
}

.btn-copy {
    background: var(--military-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ===== RSVP SECTION ===== */
.rsvp-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--military-green), var(--medical-blue));
    color: var(--white);
}

.rsvp-section .section-title {
    color: var(--white);
}

.rsvp-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background: var(--military-dark);
    color: var(--white);
}

.btn-submit {
    background: var(--gold);
    color: var(--military-dark);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* ===== WISHES SECTION ===== */
.wishes-section {
    padding: 100px 20px;
    background: var(--white);
}

.wishes-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray);
    font-size: 16px;
}

.wishes-form {
    max-width: 600px;
    margin: 0 auto 60px;
}

.wishes-form .form-group input,
.wishes-form .form-group textarea {
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--black);
}

.wishes-form .form-group input::placeholder,
.wishes-form .form-group textarea::placeholder {
    color: var(--gray);
}

.wishes-form .form-group input:focus,
.wishes-form .form-group textarea:focus {
    border-color: var(--military-green);
}

.wishes-list {
    max-width: 800px;
    margin: 0 auto;
    max-height: 600px;
    overflow-y: auto;
}

.wish-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--military-green);
}

.wish-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wish-avatar {
    width: 50px;
    height: 50px;
    background: var(--military-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.wish-author {
    flex: 1;
}

.wish-name {
    font-weight: 600;
    color: var(--military-green);
    margin-bottom: 5px;
}

.wish-date {
    font-size: 12px;
    color: var(--gray);
}

.wish-message {
    line-height: 1.8;
    color: var(--black);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 20px;
    background: var(--military-dark);
    color: var(--white);
    text-align: center;
}

.footer-text {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.footer-couple {
    font-family: var(--font-cursive);
    font-size: 48px;
    color: var(--gold);
    margin: 20px 0;
}

.footer-date {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-icons i {
    font-size: 32px;
    color: var(--gold);
    animation: heartbeat 1.5s infinite;
}

/* ===== MUSIC CONTROL ===== */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--military-dark);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    display: none;
}

.music-control.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-control:hover {
    transform: scale(1.1);
}

.music-control.playing {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .couple-names {
        font-size: 48px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 42px;
        flex-direction: column;
        gap: 10px;
    }
    
    .title-flower {
        width: 30px;
        height: 30px;
    }
    
    .floral-left,
    .floral-right {
        display: none;
    }
    
    .couple-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .couple-divider {
        order: 2;
    }
    
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .countdown-value {
        font-size: 42px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-cards {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        padding: 30px 20px;
    }
    
    .gallery-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .gallery-nav button {
        font-size: 24px;
        padding: 15px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--military-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
