/* ==========================================================================
   TEMA: MODERN MINIMAL (Id: 11) - ENHANCED EDITION
   MİMARİ: Yüksek Kontrast, Brutalist Keskinlik, Grayscale Görseller
   ========================================================================== */

:root {
    --color-dc1: #111111; /* Siyah Metin/Vurgu */
    --color-dc2: #ffffff; /* Beyaz Zemin */
    --color-dc3: #888888; /* Gri Detay */
    --text-black: var(--color-dc1);
    --bg-white: var(--color-dc2);
}

/* --------------------------------------------------------------------------
   1. GLOBAL BİLEŞENLER
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-black);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

/* --------------------------------------------------------------------------
   2. ANA TAŞIYICI
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

/* --------------------------------------------------------------------------
   3. KAPAK BÖLÜMÜ (HERO)
   -------------------------------------------------------------------------- */
.hero-block {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(100%); /* Minimalist Karakter */
    transition: filter 1s ease;
}

.hero-block:hover {
    filter: grayscale(0%);
}

.hero-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 50px 30px;
    text-align: center;
    border-top: 1px solid var(--text-black);
}

.hero-names {
    font-size: 2.5rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.hero-date {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--color-dc3);
}

/* --------------------------------------------------------------------------
   4. İÇERİK MODÜLLERİ (GENEL)
   -------------------------------------------------------------------------- */
.section-pad {
    padding: 80px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.modern-title {
    font-size: 1rem;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--text-black);
    display: inline-block;
}

.slogan-box {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 300;
    border-left: 5px solid var(--text-black);
    padding-left: 20px;
}

/* --------------------------------------------------------------------------
   5. HİKAYE & GALERİ (BRUTALIST GRID)
   -------------------------------------------------------------------------- */
#storySection img, .gallery-item {
    filter: grayscale(100%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
}

#storySection img:hover, .gallery-item:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.gallery-grid {
    margin-top: 30px;
}

/* --------------------------------------------------------------------------
   6. ZAMAN ÇİZELGESİ (AKIŞ)
   -------------------------------------------------------------------------- */
.modern-timeline {
    margin-top: 20px;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s;
}

.timeline-row:hover {
    background-color: #fafafa;
}

.tl-time {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.tl-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-dc3);
}

/* --------------------------------------------------------------------------
   7. GERİ SAYIM (COUNTDOWN)
   -------------------------------------------------------------------------- */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 50px;
}

.cd-box {
    background: var(--text-black);
    color: var(--bg-white);
    padding: 20px 5px;
    text-align: center;
    transition: transform 0.3s;
}

.cd-box:hover {
    transform: translateY(-5px);
}

.cd-num {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
}

.cd-lbl {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   8. LCV (RSVP)
   -------------------------------------------------------------------------- */
.rsvp-section {
    padding: 80px 40px;
    background-color: var(--text-black);
    color: var(--bg-white);
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-sizing: border-box;
    text-transform: uppercase;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
}

.btn-submit {
    background-color: var(--bg-white);
    color: var(--text-black);
    border: none;
    padding: 22px;
    width: 100%;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--color-dc3);
    color: #fff;
}

/* --------------------------------------------------------------------------
   9. ANİMASYONLAR (REVEAL)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Harita Butonu Özelleştirme */
#mapUrlBlock {
    border: 1px solid var(--text-black) !important;
    color: var(--text-black) !important;
    transition: all 0.3s;
}
#mapUrlBlock:hover {
    background: var(--text-black);
    color: #fff !important;
}

/* --------------------------------------------------------------------------
   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;
}