/* ==========================================================================
   TEMA: LAVENDER GARDEN (Id: 5) - ENHANCED EDITION
   MİMARİ: Açık Lila & Mor Paleti, Oval Kesimler, Cam Efekti, Genişletilmiş Modüller
   ========================================================================== */

:root {
    --color-dc1: #e6e6fa; /* Varsayılan Lila */
    --color-dc2: #5d3a6b; /* Varsayılan Mor */
    --color-dc3: #f5f5dc; /* Varsayılan Krem */
    --bg-primary: var(--color-dc1);
    --text-accent: var(--color-dc2);
    --text-dark: #2d2a32;
    --soft-shadow: 0 8px 25px rgba(93, 58, 107, 0.08);
}

/* --------------------------------------------------------------------------
   KEYFRAMES & ANİMASYONLAR
   -------------------------------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseLight { 0% { box-shadow: 0 0 0 0 rgba(93, 58, 107, 0.2); } 70% { box-shadow: 0 0 0 10px rgba(93, 58, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(93, 58, 107, 0); } }

/* --------------------------------------------------------------------------
   1. GLOBAL BİLEŞENLER
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: #faf9fb;
    background-image: radial-gradient(circle at top right, rgba(230,230,250,0.5) 0%, transparent 50%);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
    color: var(--text-accent);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '✻';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--bg-primary);
    filter: brightness(0.8);
}

/* --------------------------------------------------------------------------
   2. ANA TAŞIYICI VE ÇERÇEVE
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   3. KAPAK (HERO) - OVAL KESİM
   -------------------------------------------------------------------------- */
.hero-wrapper {
    padding: 15px;
    background-color: var(--bg-primary);
    border-radius: 0 0 30px 30px;
}

.hero-image-box {
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    border-radius: 200px 200px 15px 15px;
    position: relative;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(93,58,107,0.85) 0%, rgba(93,58,107,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 20px;
    text-align: center;
}

.hero-names {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-date {
    font-size: 1.1rem;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #fdfbf7;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
    width: 60%;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   4. İÇERİK MODÜLLERİ (HİKAYE & GENEL)
   -------------------------------------------------------------------------- */
.content-section {
    padding: 50px 30px;
    text-align: center;
}

#storySection p {
    font-size: 1rem;
    color: #555;
    background: #faf8fb;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(93, 58, 107, 0.1);
}

/* --------------------------------------------------------------------------
   5. GALERİ MODÜLÜ
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 100px 100px 10px 10px; /* Tematik Oval Uyumu */
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease;
}

.gallery-item:first-child {
    grid-column: span 2;
    height: 220px;
    border-radius: 15px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* --------------------------------------------------------------------------
   6. ZAMAN ÇİZELGESİ (TIMELINE)
   -------------------------------------------------------------------------- */
.timeline-wrapper {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
    text-align: left;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary), var(--text-accent), transparent);
}

.timeline-item {
    margin-bottom: 35px;
    position: relative;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(230,230,250,0.5);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-accent);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--bg-primary);
}

.tl-time {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
   7. SSS VE DRESS CODE MODÜLLERİ
   -------------------------------------------------------------------------- */
.faq-item {
    background: #faf8fb;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--text-accent);
}

.color-circle {
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.color-circle:hover { transform: scale(1.15); }

/* --------------------------------------------------------------------------
   8. GERİ SAYIM & LCV
   -------------------------------------------------------------------------- */
.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}
.cd-box {
    background: #fff;
    width: 65px;
    padding: 15px 0;
    border-radius: 16px;
    border: 1px solid var(--bg-primary);
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cd-num { font-size: 1.6rem; line-height: 1; margin-bottom: 5px; }
.cd-lbl { font-size: 0.6rem; letter-spacing: 1px; opacity: 0.6; }

.form-input {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(93, 58, 107, 0.2);
    background: #faf8fb;
    border-radius: 12px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 3px rgba(93, 58, 107, 0.1);
    background: #fff;
}

.btn-memory {
    background-color: var(--text-accent);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(93, 58, 107, 0.3);
    transition: all 0.2s ease;
}
.btn-memory:active { transform: translateY(2px); box-shadow: 0 2px 5px rgba(93, 58, 107, 0.3); }

/* --------------------------------------------------------------------------
   9. ANİMASYON TETİKLEYİCİLERİ (REVEAL)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* --------------------------------------------------------------------------
   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;
}