/* ============================================
   STITCH THEME - EXACT REPLICA
   Font: Plus Jakarta Sans
   Color: #eebd2b (Gold), #f5e6c8 (Cream)
   Roundness: 8px
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --gold: #eebd2b;
    --gold-dark: #d4a61e;
    --gold-light: #f9e078;
    --cream: #faf6ee;
    --cream-dark: #f0e8d8;
    --text-dark: #2c2c2c;
    --text-mid: #666;
    --text-light: #999;
    --white: #ffffff;
    --black: #1a1a1a;
    --blue-bg: #e8f4f8;
    --green-soft: #5a8a5e;
    --radius: 8px;
    --font: 'Playfair Display', serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font);
    background: #e5e5e5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

/* ==================== SECTIONS ==================== */
section {
    display: none;
    width: 100%;
    max-width: 390px;
}

section.active-section {
    display: block;
}

.hidden {
    display: none !important;
}

/* ==================== LANDING / GİRİŞ ==================== */
.landing-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-height: 844px;
    background: linear-gradient(180deg, rgba(30, 25, 15, 0.4) 0%, rgba(20, 18, 10, 0.7) 100%),
        url('assets/wedding-bg.jpg') center/cover no-repeat;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.landing-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 30px;
    width: 100%;
}

.landing-heart {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 16px;
}

.landing-top-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.landing-title {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.landing-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.landing-input-group {
    margin-bottom: 16px;
}

.landing-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 600;
}

.landing-input-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 16px;
    font-family: var(--font);
    text-align: center;
    letter-spacing: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.landing-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 6px;
}

.landing-input-group input:focus {
    border-color: var(--gold);
}

/* Gold Button */
.btn-gold {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-gold:active {
    transform: scale(0.98);
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    min-height: 18px;
    margin-top: 10px;
    font-weight: 500;
}

.landing-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
}

.landing-footer span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

/* Venue Images */
.venue-img-small {
    width: 100%;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.venue-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-img-carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.venue-img-carousel img {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius);
    object-fit: cover;
    scroll-snap-align: start;
}

/* Venue Socials & Contact */
.inv-event-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.venue-socials {
    display: flex;
    gap: 12px;
}

.venue-socials a img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.venue-socials a:hover img {
    opacity: 1;
}

.venue-contact-info {
    text-align: left;
    margin-bottom: 16px;
    border-left: 2px solid var(--gold-light);
    padding-left: 12px;
}

.venue-contact-info p {
    font-size: 13px;
    color: var(--text-mid);
    margin: 4px 0;
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px;
    height: 65px;
    background: var(--cream-dark); /* Changed from white to cream-dark for better visibility */
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-mid); /* Darker color for better contrast on cream background */
    cursor: pointer;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 600; /* Slightly bolder */
    flex: 1;
}

.nav-item .material-icons-outlined {
    font-size: 22px;
}

.nav-item.active {
    color: var(--gold-dark);
}

.nav-item.active .material-icons-outlined {
    font-weight: bold;
}

/* Sub-pages */
.sub-page {
    width: 100%;
}

.sub-page.hidden {
    display: none;
}

/* Gallery Styles */
.gallery-frame {
    padding-top: 20px;
}

.gallery-header {
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-dark);
}

.gallery-title span {
    color: var(--gold-dark);
    font-style: italic;
}

.gallery-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.5;
}

.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
    padding: 0 10px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: var(--white);
    font-size: 12px;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
    box-shadow: 0 4px 10px rgba(238, 189, 43, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 15px 30px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 180px;
}

.gallery-item:nth-child(even) {
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Lightbox Modal */
.lightbox.rsvp-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0 5px;
}

.rsvp-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: #7f8c8d;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rsvp-logo-img {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.rsvp-card-white {
    background: #fff;
    margin: 0 20px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    padding: 15px;
    border: 1px solid rgba(238, 189, 43, 0.1);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(238, 189, 43, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(238, 189, 43, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(238, 189, 43, 0);
    }
}

.gallery-preview-mini {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-preview-mini img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.preview-text {
    flex-grow: 1;
}

.preview-text strong {
    font-size: 15px;
    display: block;
    color: #2c3e50;
}

.preview-text p {
    font-size: 12px;
    color: #95a5a6;
    margin: 4px 0 0;
}

.rsvp-form-container {
    padding: 0 25px;
    text-align: center;
}

.rsvp-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 25px 0 12px;
    color: #2c3e50;
}

.rsvp-form-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.rsvp-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.rsvp-choice-card {
    background: #fff;
    border: 1px solid #edf2f7;
    padding: 24px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rsvp-choice-card.active {
    border-color: var(--gold-dark);
    background: #fffcf0;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(238, 189, 43, 0.15);
}

.choice-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-size: 20px;
    transition: all 0.3s;
}

.rsvp-choice-card.active .choice-icon {
    background: var(--gold-dark);
    color: #fff;
    border-color: var(--gold-dark);
}

.choice-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.rsvp-choice-card.active .choice-text {
    color: #2c3e50;
}

.rsvp-input-group {
    text-align: left;
    margin-bottom: 25px;
}

.rsvp-input-group label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rsvp-select,
.rsvp-textarea,
.rsvp-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    font-size: 15px;
    background: #f8fafc;
    color: #2c3e50;
    outline: none;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.rsvp-select:focus,
.rsvp-textarea:focus,
.rsvp-input:focus {
    border-color: var(--gold-dark);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(238, 189, 43, 0.1);
}

.rsvp-textarea {
    min-height: 100px;
    resize: none;
    line-height: 1.5;
}

.rsvp-submit {
    margin-top: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px !important;
    font-size: 15px !important;
}

/* Shortcut Button */
.btn-rsvp-shortcut {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 15px;
    background: #fff;
    border: 2px solid var(--gold-dark);
    color: var(--gold-dark);
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-rsvp-shortcut:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* ==================== INVITATION PHONE FRAME ==================== */
.inv-phone-frame {
    background: var(--cream);
    border-radius: 0;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
}

/* Header */
.inv-header {
    background: var(--gold);
    margin: -24px -20px 24px -20px;
    padding: 16px 20px;
    border-radius: 0;
}

.inv-header-small {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.inv-header-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

/* Couple Photo */
.inv-couple-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid var(--gold-light);
    box-shadow: 0 4px 15px rgba(238, 189, 43, 0.2);
}

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

/* Couple Names */
.inv-couple-names {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    color: var(--green-soft);
    margin-bottom: 4px;
}

.inv-date-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-mid);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Countdown */
.inv-countdown-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.inv-countdown-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.inv-countdown-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 12px 14px;
    min-width: 65px;
    text-align: center;
}

.inv-count-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.inv-count-label {
    display: block;
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 600;
}

/* Outline Gold Button */
.btn-outline-gold {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--gold-dark);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

/* Divider */
.inv-divider {
    border: none;
    border-top: 1px solid #e0d8c8;
    margin: 20px 0;
}

/* Section Title */
.inv-section-title {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

/* Event Cards */
.inv-event-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    text-align: left;
    border: 1px solid #f0e8d8;
}

.inv-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.inv-event-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.inv-event-icon {
    font-size: 18px;
    color: var(--gold);
}

.inv-event-time {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 4px;
}

.inv-event-venue {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.btn-small {
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
    border-radius: var(--radius);
}

/* Quote Box */
.inv-quote-box {
    background: rgba(238, 189, 43, 0.08);
    border-left: 3px solid var(--gold);
    padding: 16px;
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.inv-quote-box p {
    font-size: 13px;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.6;
}

.btn-rsvp {
    margin-bottom: 24px;
}

/* Footer Stars */
.inv-footer-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.inv-footer-stars span {
    font-size: 14px;
    color: #ddd;
}

.inv-footer-stars .star-gold {
    color: var(--gold);
}

.inv-footer-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Back Button */
.btn-back {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--text-light);
    font-family: var(--font);
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

/* ==================== VENUE (MEKANLARIMIZ) ==================== */
.venue-frame-blue {
    background: var(--blue-bg) !important;
}

.venue-header-icon {
    width: 40px;
    height: 40px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.venue-header-icon .material-icons-outlined {
    color: var(--white);
    font-size: 20px;
}

.venue-page-title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.venue-page-desc {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Venue Card */
.venue-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.venue-card-img {
    position: relative;
    width: 100%;
    height: 180px;
}

.venue-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-card-camera {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.85);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-mid);
}

.venue-card-body {
    padding: 16px;
    text-align: left;
}

.venue-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.venue-card-datetime {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.venue-card-transport {
    background: #f8f8f8;
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 12px;
}

.venue-card-transport p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 4px;
}

.venue-card-transport p .material-icons-outlined {
    font-size: 16px;
}

/* Dark Pill Button */
.btn-dark-pill {
    display: block;
    width: 100%;
    padding: 12px;
    background: #333;
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-dark-pill:hover {
    background: #555;
}

/* ==================== RSVP (Lale Devri) ==================== */
.venue-frame-white {
    background: var(--white) !important;
}

.rsvp-tulip-header img {
    width: 50px;
    margin: 0 auto 12px;
    display: block;
}

.rsvp-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.rsvp-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.rsvp-gallery-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f8;
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: left;
}

.rsvp-gallery-link .material-icons-outlined:first-child {
    font-size: 24px;
    color: var(--green-soft);
}

.rsvp-gallery-link div {
    flex: 1;
}

.rsvp-gallery-link strong {
    font-size: 14px;
    color: var(--text-dark);
}

.rsvp-gallery-link p {
    font-size: 12px;
    color: var(--text-mid);
    margin-top: 2px;
}

.rsvp-gallery-link .material-icons-outlined:last-child {
    font-size: 20px;
    color: var(--text-light);
}

.rsvp-question {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rsvp-question-desc {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* RSVP Choice Buttons */
.rsvp-buttons-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.rsvp-choice {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px;
    background: #f8f8f8;
    border: 2px solid #eee;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
}

.rsvp-choice .material-icons-outlined {
    font-size: 24px;
}

.rsvp-yes:hover,
.rsvp-yes.selected {
    border-color: var(--green-soft);
    background: rgba(90, 138, 94, 0.08);
    color: var(--green-soft);
}

.rsvp-no:hover,
.rsvp-no.selected {
    border-color: #e57373;
    background: rgba(229, 115, 115, 0.08);
    color: #e57373;
}

/* RSVP Field */
.rsvp-field {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8f8f8;
    border-radius: var(--radius);
}

.rsvp-field label {
    flex: 1;
    font-size: 13px;
    color: var(--text-mid);
    text-align: left;
}

.rsvp-field input {
    width: 50px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
}

.rsvp-field input:focus {
    border-color: var(--gold);
}

.rsvp-field-unit {
    font-size: 13px;
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    margin-bottom: 16px;
}

/* ==================== GALLERY ==================== */
.gallery-frame {
    background: var(--white) !important;
}

.gallery-header-tabs {
    margin-bottom: 8px;
}

.gallery-tab {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.gallery-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
    margin-bottom: 16px;
}

.gallery-filter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-filter {
    padding: 8px 14px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.gallery-filter.active {
    background: var(--gold);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.gallery-counter {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

section.active-section {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-4px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(4px);
    }
}

.shake {
    animation: shake 0.5s both;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 420px) {
    body {
        padding: 0;
    }

    section {
        max-width: 100%;
    }

    .landing-wrapper {
        border-radius: 0;
        min-height: 100vh;
        max-height: none;
    }
}

@media (max-width: 360px) {
    .inv-countdown-row {
        gap: 8px;
    }

    .inv-countdown-item {
        min-width: 58px;
        padding: 10px 8px;
    }

    .inv-count-num {
        font-size: 18px;
    }

    .inv-couple-names {
        font-size: 26px;
    }

    .landing-title {
        font-size: 28px;
    }
}