/* ==========================================================================
   TEMA: VINTAGE BOTANIC (PREMIUM EDITORIAL)
   MİMARİ: Modüler, Düzenlenebilir, Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL RESET VE TEMEL DEĞİŞKENLER
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-paper);
    color: var(--text-main);
    font-family: 'Jost', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Analog Fotoğraf Gren Efekti (Performans dostu SVG) */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   2. TİPOGRAFİ (YAZI TİPİ VE HİYERARŞİ)
   -------------------------------------------------------------------------- */
.serif {
    font-family: 'Cormorant Garamond', serif;
}

.italic {
    font-style: italic;
}

.text-gold {
    color: var(--accent-gold);
}

.text-dark {
    color: var(--dark);
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.paragraph {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-main);
    margin: 0 auto 20px auto;
    max-width: 90%;
}

/* --------------------------------------------------------------------------
   3. ANA DİZGİ VE KONTEYNERLER
   -------------------------------------------------------------------------- */
.main-content {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px 100px 20px; /* Alttaki 100px Sticky CTA içindir */
}

.editorial-block, 
.story-section, 
.gallery-section, 
.timeline-section, 
.faq-section, 
.rsvp-section {
    padding: 60px 0;
    text-align: center;
}

/* --------------------------------------------------------------------------
   4. MODÜL: SİNEMATİK KAPAK (HERO)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%); /* Alt kemer kesimi */
}

.hero-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    /* Ken Burns Yakınlaşma Efekti */
    animation: kenBurns 25s ease-out infinite alternate; 
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,31,24,0.1), rgba(26,31,24,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 20px;
}

.hero-date {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-names {
    margin: 0;
    line-height: 1;
}

.hero-names .name {
    display: block;
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 400;
}

.hero-names .ampersand {
    display: block;
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--accent-gold);
    margin: 10px 0;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   5. MODÜL: MİNİMALİST SAYAÇ
   -------------------------------------------------------------------------- */
.countdown-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.cd-item {
    text-align: center;
}

.cd-item span {
    display: block;
    font-size: 2.2rem;
    color: var(--dark);
    line-height: 1;
}

.cd-item small {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.cd-separator {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   6. MODÜL: EDİTORYAL GALERİ GRID
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.g-item {
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.g-large {
    grid-column: span 2;
    height: 350px; /* Büyük odak görseli */
}

/* --------------------------------------------------------------------------
   7. MODÜL: MEKAN VE ÇAKIŞAN (OVERLAP) KART
   -------------------------------------------------------------------------- */
.overlap-section {
    position: relative;
    padding: 40px 0 60px 0;
}

.overlap-image {
    width: 90%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 200px 200px 0 0; /* Üst kemer formu */
}

.overlap-card {
    position: relative;
    margin-top: -150px; /* Görselin üzerine binmesi için negatif margin */
    margin-left: 10%;
    width: 90%;
    background: rgba(244, 242, 238, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: -10px 15px 40px rgba(0,0,0,0.08);
    border-radius: 12px;
}

.map-iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    filter: grayscale(30%); /* Tasarıma uyması için hafif renksizleştirme */
}

/* --------------------------------------------------------------------------
   8. MODÜL: PROGRAM AKIŞI (TIMELINE)
   -------------------------------------------------------------------------- */
.timeline-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin-bottom: 25px;
}

.t-time {
    width: 35%;
    text-align: right;
    font-size: 1.6rem;
}

.t-line {
    width: 30%;
    height: 1px;
    background: var(--accent-sage);
    margin: 0 15px;
    opacity: 0.5;
}

.t-desc {
    width: 35%;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   9. MODÜL: SIKÇA SORULANLAR (FAQ)
   -------------------------------------------------------------------------- */
.faq-list {
    margin-top: 30px;
    text-align: left;
    max-width: 400px;
    margin-inline: auto;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.faq-q {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.faq-a {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. MODÜL: LCV VE DRESS CODE (GLASS KART)
   -------------------------------------------------------------------------- */
.rsvp-glass-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 50px 20px;
    text-align: center;
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.thin-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    margin: 40px 0;
}

/* --------------------------------------------------------------------------
   11. BİLEŞEN: FORM VE BUTONLAR (FLOATING LABELS)
   -------------------------------------------------------------------------- */
.modern-form {
    margin-top: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 35px;
}

.input-group input {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--dark);
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    outline: none;
    background: transparent;
    font-family: inherit;
    text-align: center;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    font-size: 1rem;
    color: var(--text-main);
    opacity: 0.6;
    transition: 0.3s ease all;
    pointer-events: none;
    text-align: center;
}

/* Etiket Yukarı Kayma Animasyonu (Floating Label) */
.input-group input:focus ~ label, 
.input-group input:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-group input:focus {
    border-bottom-color: var(--accent-gold);
}

.magnetic-btn {
    background: var(--dark);
    color: var(--bg-paper);
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s ease;
}

.magnetic-btn:hover {
    background: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   12. BİLEŞEN: STICKY LCV BUTONU (MOBİL DÖNÜŞÜM ODAKLI)
   -------------------------------------------------------------------------- */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 999;
}

.btn-solid {
    background: var(--dark);
    color: var(--bg-paper);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer-block {
    padding: 40px 0;
    text-align: center;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   10. PREMIUM MODÜL: CANLI MEDYA GALERİSİ (DAISY SPECIAL)
   -------------------------------------------------------------------------- */
.premium-gallery-section {
    padding: 60px 30px;
    background-color: #fffcf5; /* --color-dc1 */
    text-align: center;
    border-top: 1px solid rgba(251, 192, 45, 0.1);
}

.premium-gallery-inner {
    max-width: 100%;
    margin: 0 auto;
}

.premium-gallery-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #444;
}

.premium-gallery-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.6;
}

.guest-upload-form {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px dashed rgba(251, 192, 45, 0.4);
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
}

.guest-upload-input {
    width: 100%;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.guest-upload-input:focus {
    border-color: var(--daisy-yellow);
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.1);
}

.guest-upload-dropzone {
    border: 2px dashed #eee;
    padding: 25px 15px;
    background: #fffcf5;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.guest-upload-dropzone:hover {
    border-color: var(--daisy-yellow);
    background: #fff;
}

.guest-upload-dropzone input[type="file"] {
    width: 100%;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    color: #888;
    font-size: 0.85rem;
}

.guest-upload-btn {
    background-color: #333;
    color: var(--daisy-yellow);
    border: none;
    padding: 18px;
    width: 100%;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.guest-upload-btn:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.guest-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.guest-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    background: #f9f9f9;
    transition: all 0.4s ease;
}

.guest-gallery-item:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 10px 20px rgba(251, 192, 45, 0.2);
    z-index: 2;
}

.guest-gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-media-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 10px 8px 10px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}