/* ==========================================================================
   TEMA: LAVENDER BLISS (Id: 13) - ENHANCED EDITION
   MİMARİ: Sulu Boya Dokuları, Pastel Mor Paleti, Romantik Tipografi
   ========================================================================== */

:root {
    --color-dc1: #f3e8ff; /* Pastel Arka Plan */
    --color-dc2: #9333ea; /* Lavanta Vurgu */
    --color-dc3: #ffffff; /* Temiz Beyaz */
    --lavender-bg: var(--color-dc1);
    --lavender-accent: var(--color-dc2);
    --text-main: #4a4a4a;
    --soft-shadow: 0 10px 30px rgba(147, 51, 234, 0.08);
}

/* --------------------------------------------------------------------------
   1. GLOBAL BİLEŞENLER
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: #fafafa;
    background-image: radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
    font-family: 'Crimson Text', serif;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .script-font, .section-title {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    margin: 0;
    color: var(--lavender-accent);
}

.sans-serif {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. ANA TAŞIYICI
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.1);
}

/* --------------------------------------------------------------------------
   3. KAPAK BÖLÜMÜ (HERO)
   -------------------------------------------------------------------------- */
.hero-box {
    position: relative;
    width: 100%;
    height: 680px;
    background-size: cover;
    background-position: center;
    border-bottom: 10px solid var(--lavender-bg);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.4) 30%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 60px;
    text-align: center;
}

.hero-names {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--lavender-accent);
    text-shadow: 0 2px 10px rgba(147, 51, 234, 0.1);
}

.hero-date {
    font-family: 'Inter', sans-serif;
    color: var(--lavender-accent);
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

/* --------------------------------------------------------------------------
   4. İÇERİK MODÜLLERİ (GENEL)
   -------------------------------------------------------------------------- */
.content-pad {
    padding: 20px 35px 60px;
    text-align: center;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 30px;
}

.welcome-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #555;
    font-style: italic;
    background: linear-gradient(135deg, var(--lavender-bg) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 40px 10px;
}

.watercolor-divider {
    width: 100px;
    height: auto;
    margin: 0 auto 30px;
    color: var(--lavender-accent);
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   5. HİKAYE & GALERİ
   -------------------------------------------------------------------------- */
#storySection img {
    border: 5px solid #fff;
    box-shadow: var(--soft-shadow);
}

.gallery-grid {
    margin-top: 20px;
}

.gallery-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-item:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
    z-index: 2;
}

/* --------------------------------------------------------------------------
   6. ZAMAN ÇİZELGESİ (AKIŞ)
   -------------------------------------------------------------------------- */
.timeline-lavender {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
    position: relative;
}

.tl-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 0 4px 10px rgba(147, 51, 234, 0.03);
}

.tl-time {
    font-size: 1.2rem;
    color: var(--lavender-accent);
    margin-bottom: 5px;
}

.tl-text {
    font-size: 1.5rem;
    color: #4a4a4a;
}

/* --------------------------------------------------------------------------
   7. GERİ SAYIM
   -------------------------------------------------------------------------- */
.countdown-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cd-unit {
    background: var(--lavender-bg);
    width: 70px;
    padding: 15px 0;
    border-radius: 20px 5px;
    border: 1px solid #fff;
}

.cd-val {
    font-size: 2.2rem;
    font-family: 'Great Vibes', cursive;
    line-height: 1;
}

.cd-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--lavender-accent);
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   8. LCV (RSVP) & FORM
   -------------------------------------------------------------------------- */
.rsvp-box {
    background: linear-gradient(180deg, var(--lavender-bg) 0%, #fff 100%);
    padding: 60px 35px;
    border-radius: 50px 50px 0 0;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.form-input {
    width: 100%;
    padding: 18px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 15px;
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.form-input:focus {
    outline: none;
    border-color: var(--lavender-accent);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, var(--lavender-accent) 0%, #7e22ce 100%);
    color: #ffffff;
    border: none;
    padding: 20px;
    width: 100%;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
}

/* --------------------------------------------------------------------------
   9. ANİMASYONLAR (REVEAL)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Harita Butonu Entegresi */
#mapUrlBlock {
    display: inline-block !important;
    border: 1px solid var(--lavender-accent);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--lavender-accent) !important;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}
#mapUrlBlock:hover {
    background: var(--lavender-accent);
    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;
}