/* ==========================================================================
   NUR GÖKSU & NAZMİ DÜĞÜN DAVETİYESİ - ALTIN BAŞAK & ZARAFET TEMASI
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel+Decorative:wght@400;700&family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700&family=Parisienne&family=Pinyon+Script&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --gold-primary: #c5a059;
    --gold-dark: #9e7935;
    --gold-deep: #7c5d24;
    --gold-light: #e6cb93;
    --gold-soft: #fcf8f0;
    --gold-border: #caa560;
    
    --bg-page: #fbf9f5;
    --bg-card: #ffffff;
    --bg-card-soft: #fffdfa;
    
    --text-main: #1f1e1c;
    --text-muted: #5e584f;
    --text-gold: #ab853a;
    
    --font-calligraphy: 'Alex Brush', 'Pinyon Script', 'Great Vibes', cursive;
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* ==========================================================================
   SOL ÜST ALTIN MÜZİK BUTONU
   ========================================================================== */
.music-float-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(170, 124, 40, 0.45);
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-float-btn:hover {
    background: linear-gradient(135deg, #e0be4d 0%, #8c641c 100%);
    transform: scale(1.08);
}

.music-float-btn.playing {
    animation: musicGoldPulse 2s infinite;
}

@keyframes musicGoldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.music-icon-svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ==========================================================================
   1. GİRİŞ VE ZARF SAHNESİ
   ========================================================================== */
.envelope-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    cursor: pointer;
    overflow: hidden;
    background: #f7f4ed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.envelope-screen.opened-fade {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.envelope-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 10;
    user-select: none;
    -webkit-user-drag: none;
}

.envelope-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.envelope-video.is-playing {
    opacity: 1;
}

.envelope-hint-container {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.envelope-hint-container.fade-out {
    opacity: 0;
}

.envelope-hint-text {
    font-family: var(--font-serif);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 24px;
    background: rgba(45, 36, 20, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 30px;
    border: 1px solid rgba(230, 203, 147, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: hintGoldPulse 2.4s infinite ease-in-out;
}

@keyframes hintGoldPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.92;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.55);
        border-color: rgba(255, 255, 255, 0.85);
    }
}

/* ==========================================================================
   2. ANA DAVETİYE SAYFASI
   ========================================================================== */
.invitation-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.invitation-page.page-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HERO BÖLÜMÜ & ALTIN DAVETİYE KARTI
   ========================================================================== */
.hero-gold-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 60px 16px 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 30%, #fffdf8 0%, #f7f1e4 60%, #ece2cd 100%);
    box-sizing: border-box;
}

/* Kartın Arka Planındaki İnce Altın Parıltı */
.hero-gold-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    height: 90%;
    max-height: 850px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   ORİJİNAL ALTIN ÇERÇEVELİ DAVETİYE KARTI (BİREBİR ŞABLON)
   ========================================================================== */
.davetiye-gold-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    background: #ffffff;
    border: 5px solid var(--gold-border);
    padding: 10px;
    box-shadow: 0 16px 45px rgba(160, 125, 50, 0.18), 0 4px 16px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    margin: 0 auto;
}

.card-inner-frame {
    border: 1.5px solid var(--gold-border);
    padding: 38px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    position: relative;
}

/* Gelin Damat Başlığı & Orta Başak Motifi */
.card-names-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.5vw, 24px);
    width: 100%;
    margin-bottom: 22px;
}

.card-name {
    font-family: var(--font-calligraphy);
    font-size: clamp(2.4rem, 6.5vw, 3.8rem);
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.1;
    white-space: nowrap;
}

.wheat-stalk-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wheat-stalk-svg {
    width: clamp(30px, 6vw, 44px);
    height: auto;
    color: var(--gold-primary);
}

/* Davetiye Sözü */
.card-quote {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2b2b2b;
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 28px;
}

/* Aileler & Çelenk */
.card-families-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 420px;
    margin-bottom: 24px;
}

.family-title-text {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #222222;
    line-height: 1.25;
}

.wheat-wreath-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.wheat-wreath-svg {
    width: clamp(48px, 10vw, 70px);
    height: auto;
    color: var(--gold-primary);
}

/* Düğün Tarih ve Mekan Bloğu */
.card-event-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 26px;
    width: 100%;
}

.event-type-badge {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #222222;
    margin-bottom: 8px;
}

/* Tarih Çizgisi: --- EKİM  31  2026 --- */
.event-date-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    width: 100%;
    max-width: 320px;
}

.date-rule {
    flex: 1;
    height: 1.5px;
    background: #222222;
}

.date-month, .date-year {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #222222;
}

.date-day-number {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6.2vw, 3.6rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
    margin: 0 4px;
}

.event-time-str {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4.5vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 9px;
    letter-spacing: 0.02em;
}

.event-venue-main {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.event-venue-sub {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2.4vw, 1.15rem);
    color: #333333;
    line-height: 1.4;
}

/* Alt Not ve QR Kod Satırı */
.card-bottom-row {
    width: 100%;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px dashed rgba(202, 165, 96, 0.4);
    text-align: center;
}

.card-bayrak-note {
    font-family: var(--font-serif);
    font-size: clamp(0.88rem, 2.2vw, 1.05rem);
    line-height: 1.5;
    color: #383633;
    max-width: 480px;
    margin: 0 auto;
}

.card-bayrak-note strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Sayfa Devamı İpucu (Aşağı Kaydırınız) */
.hero-scroll-hint {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-scroll-hint:hover {
    transform: translateY(3px);
}

.scroll-hint-text {
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 1.6vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.scroll-arrow-wrap {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1.5px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    box-shadow: 0 4px 14px rgba(180, 140, 60, 0.18);
    animation: goldScrollBounce 2.2s infinite ease-in-out;
}

.scroll-arrow-svg {
    stroke: var(--gold-dark);
}

@keyframes goldScrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* ==========================================================================
   3. CANLI GERİ SAYIM SAYACI BÖLÜMÜ (MOCKUP STİLİ)
   ========================================================================== */
.countdown-section-block {
    padding: 70px 20px 65px 20px;
    background: #fbf9f5;
    border-top: 1px solid rgba(202, 165, 96, 0.25);
    text-align: center;
}

.countdown-container-main {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.countdown-header-direct {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 34px;
}

.countdown-badge-gold {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2.6vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.countdown-date-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.4vw, 2.65rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.countdown-time-gold {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 4.8vw, 2.05rem);
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.02em;
}

/* 4 BÜYÜK YAN YANA SAYAÇ KUTUSU (DIŞ ÇERÇEVESİZ, FERAH) */
.countdown-boxes-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.4vw, 24px);
    width: 100%;
    max-width: 780px;
    margin: 0 auto 34px auto;
}

.countdown-card-box {
    flex: 1;
    min-width: 0;
    max-width: 175px;
    aspect-ratio: 1 / 1.05;
    background: linear-gradient(180deg, #ffffff 0%, #faf3e6 100%);
    border: 2px solid #caa560;
    border-radius: clamp(14px, 2.8vw, 20px);
    box-shadow: 0 10px 28px rgba(180, 140, 60, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2.2vw, 20px) 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.countdown-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(180, 140, 60, 0.2);
    border-color: #a88134;
}

.countdown-val-big {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6.8vw, 4.4rem);
    font-weight: 700;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

.countdown-lbl-gold {
    font-family: var(--font-sans);
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: clamp(8px, 1.5vw, 14px);
}

.countdown-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-reminder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c28 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(170, 124, 40, 0.3);
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    max-width: 250px;
}

.btn-reminder:hover {
    background: linear-gradient(135deg, #e0be4d 0%, #8c641c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(170, 124, 40, 0.45);
}

.btn-reminder svg {
    flex-shrink: 0;
    stroke: #ffffff;
}

/* ==========================================================================
   4. "NE ZAMAN & NEREDE" - MERASİM VE DÜĞÜN LOKASYONLARI
   ========================================================================== */
.events-section-block {
    padding: 80px 24px 70px 24px;
    background: #f7f3ea;
    position: relative;
    border-top: 1px solid rgba(202, 165, 96, 0.25);
}

.section-head-center {
    text-align: center;
    margin-bottom: 45px;
}

.section-title-major {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.section-subtitle-minor {
    font-family: var(--font-calligraphy);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--gold-dark);
    margin-top: -6px;
}

.events-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-dual-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .event-dual-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.event-info-card {
    background: #ffffff;
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 250px;
    box-shadow: 0 8px 24px rgba(180, 140, 60, 0.08);
}

.event-type-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.event-datetime-text {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #222222;
    margin-bottom: 2px;
    line-height: 1.35;
}

.event-time-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4.5vw, 1.85rem);
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.event-location-text {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2.1vw, 1.12rem);
    color: #444444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.event-note-box {
    background: #faf7f0;
    border: 1px solid rgba(202, 165, 96, 0.35);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.4;
    font-style: italic;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c28 100%);
    color: #ffffff;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(170, 124, 40, 0.3);
    transition: all 0.25s ease;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(170, 124, 40, 0.45);
    background: linear-gradient(135deg, #e0be4d 0%, #8c641c 100%);
}

.event-map-card {
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 250px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(180, 140, 60, 0.08);
}

.event-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: none;
    display: block;
}

/* ==========================================================================
   5. AİLELER BÖLÜMÜ
   ========================================================================== */
.family-section-block {
    padding: 70px 24px;
    background: #fbf9f5;
    border-top: 1px solid rgba(202, 165, 96, 0.25);
}

.family-box-card {
    background: #ffffff;
    border: 2px solid var(--gold-border);
    border-radius: 14px;
    padding: 40px 30px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 28px rgba(180, 140, 60, 0.08);
}

.family-tag-upper {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}

.family-split-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.family-col {
    flex: 1;
    min-width: 200px;
}

.family-col-divider {
    width: 1px;
    height: 60px;
    background: rgba(202, 165, 96, 0.35);
    display: none;
}

@media (min-width: 600px) {
    .family-col-divider {
        display: block;
    }
}

.family-col-tag {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 700;
}

.family-col-names {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-main);
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   6. TEŞEKKÜR VE FOOTER
   ========================================================================== */
.thanks-footer-block {
    text-align: center;
    padding: 85px 24px 75px 24px;
    background: radial-gradient(circle at 50% 50%, #faf6ee 0%, #ece2cc 100%);
    border-top: 1px solid rgba(202, 165, 96, 0.25);
}

.thanks-names-heading {
    font-family: var(--font-calligraphy);
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.1;
}

.thanks-dates-badge {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.thanks-closing-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #403e3b;
    max-width: 580px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.6;
}

/* ==========================================================================
   7. MOBİL CİHAZLAR İÇİN FERAH & KUSURSUZ DÜZEN (IPHONE & ANDROID)
   ========================================================================== */
@media (max-width: 600px) {
    /* Hero & Kart Dış Alanı */
    .hero-gold-section {
        padding: 45px 8px 30px 8px !important;
    }

    .davetiye-gold-card {
        padding: 4px !important;
        border-width: 3.5px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .card-inner-frame {
        padding: 26px 8px 22px 8px !important;
    }

    /* Gelin Damat İsimleri & Başak */
    .card-names-row {
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .card-name {
        font-size: 2.35rem !important;
        line-height: 1.1 !important;
    }

    .wheat-stalk-svg {
        width: 24px !important;
        height: auto !important;
    }

    /* Davetiye Sözü */
    .card-quote {
        font-size: 0.76rem !important;
        line-height: 1.5 !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 18px !important;
        padding: 0 4px !important;
    }

    /* Aileler & Çelenk */
    .card-families-row {
        margin-bottom: 18px !important;
    }

    .family-title-text {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
    }

    .wheat-wreath-svg {
        width: 44px !important;
    }

    /* Düğün Detayları */
    .card-event-details {
        margin-bottom: 18px !important;
    }

    .event-type-badge {
        font-size: 1.1rem !important;
        margin-bottom: 6px !important;
    }

    .event-date-row {
        gap: 8px !important;
        margin-bottom: 6px !important;
    }

    .date-month, .date-year {
        font-size: 0.95rem !important;
    }

    .date-day-number {
        font-size: 2.5rem !important;
    }

    .event-time-str {
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        margin-bottom: 6px !important;
    }

    .event-venue-main {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
    }

    .event-venue-sub {
        font-size: 0.88rem !important;
        line-height: 1.35 !important;
    }

    .card-bottom-row {
        padding-top: 12px !important;
        margin-top: 8px !important;
    }

    .card-bayrak-note {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }

    /* 4 Kutulu Geri Sayım Alanı */
    .countdown-section-block {
        padding: 50px 12px 45px 12px !important;
    }

    .countdown-header-direct {
        margin-bottom: 22px !important;
    }

    .countdown-badge-gold {
        font-size: 1rem !important;
        letter-spacing: 2.5px !important;
    }

    .countdown-date-title {
        font-size: 1.45rem !important;
        margin-bottom: 4px !important;
    }

    .countdown-time-gold {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
    }

    .countdown-boxes-direct {
        gap: 6px !important;
        margin-bottom: 24px !important;
    }

    .countdown-card-box {
        padding: 10px 2px !important;
        border-radius: 12px !important;
        border-width: 1.5px !important;
    }

    .countdown-val-big {
        font-size: 1.85rem !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }

    .countdown-lbl-gold {
        font-size: 0.62rem !important;
        letter-spacing: 1px !important;
        margin-top: 4px !important;
    }

    .btn-reminder {
        padding: 11px 22px !important;
        font-size: 0.88rem !important;
        max-width: 220px !important;
    }

    /* Ne Zaman & Nerede */
    .events-section-block {
        padding: 55px 14px 45px 14px !important;
    }

    .section-head-center {
        margin-bottom: 30px !important;
    }

    .section-title-major {
        font-size: 1.35rem !important;
    }

    .section-subtitle-minor {
        font-size: 1.6rem !important;
    }

    .event-info-card {
        padding: 24px 14px !important;
    }

    .event-type-title {
        font-size: 1.35rem !important;
    }

    .event-datetime-text {
        font-size: 1.15rem !important;
    }

    .event-time-text {
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
    }

    .event-location-text {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    /* Aileler Bölümü */
    .family-section-block {
        padding: 45px 14px !important;
    }

    .family-box-card {
        padding: 28px 16px !important;
    }

    .family-col-names {
        font-size: 1.35rem !important;
    }
}
