/* ==========================================================================
   TEMA: BOTANICAL (Id: 14) - ENHANCED EDITION
   MİMARİ: Eucalyptus Yeşili, Organik Doku, Genişletilmiş Modüler Yapı
   ========================================================================== */

:root {
    --color-dc1: #5b6e58; /* Eucalyptus Yeşili */
    --color-dc2: #fdfbf7; /* Krem Zemin */
    --color-dc3: #6d4c41; /* Toprak Kahve */
    --botanical-primary: var(--color-dc1);
    --botanical-bg: var(--color-dc2);
    --text-main: #3d443a;
    --soft-shadow: 0 10px 30px rgba(91, 110, 88, 0.08);
}

/* --------------------------------------------------------------------------
   1. GLOBAL BİLEŞENLER
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: #f4f5f2;
    background-image: radial-gradient(circle at 100% 0%, rgba(91, 110, 88, 0.05) 0%, transparent 50%);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin: 0;
    color: var(--botanical-primary);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '🌿';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   2. ANA TAŞIYICI
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--botanical-bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

/* --------------------------------------------------------------------------
   3. KAPAK BÖLÜMÜ (HERO)
   -------------------------------------------------------------------------- */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 680px;
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--botanical-primary);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(253,251,247,0) 40%, rgba(253,251,247,0.95) 95%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 60px;
    text-align: center;
}

.hero-names {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--botanical-primary);
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.hero-date {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-dc3);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   4. İÇERİK MODÜLLERİ (GENEL)
   -------------------------------------------------------------------------- */
.section-pad {
    padding: 60px 35px;
    text-align: center;
}

.welcome-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid rgba(91, 110, 88, 0.1);
    box-shadow: var(--soft-shadow);
}

.botanical-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    color: var(--botanical-primary);
}

/* --------------------------------------------------------------------------
   5. HİKAYE & GALERİ
   -------------------------------------------------------------------------- */
#storySection img {
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-grid {
    margin-top: 25px;
}

.gallery-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(91, 110, 88, 0.15);
    z-index: 2;
}

/* --------------------------------------------------------------------------
   6. ZAMAN ÇİZELGESİ (AKIŞ)
   -------------------------------------------------------------------------- */
.timeline-botanical {
    margin: 40px 0;
    text-align: left;
    border-left: 2px solid var(--botanical-primary);
    padding-left: 30px;
    margin-left: 10px;
}

.tl-item {
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.02);
}

.tl-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--botanical-primary);
    border: 4px solid var(--botanical-bg);
    border-radius: 50%;
}

.tl-time {
    font-weight: 700;
    color: var(--color-dc3);
    margin-bottom: 5px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.tl-text {
    font-size: 1.3rem;
    color: var(--text-main);
}

/* --------------------------------------------------------------------------
   7. GERİ SAYIM
   -------------------------------------------------------------------------- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 50px 0;
}

.cd-box {
    background: #fff;
    width: 65px;
    padding: 15px 0;
    border-radius: 4px;
    border: 1px solid rgba(91, 110, 88, 0.1);
    box-shadow: var(--soft-shadow);
}

.cd-num {
    font-size: 1.8rem;
    color: var(--botanical-primary);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.cd-lbl {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. LCV (RSVP) & FORM
   -------------------------------------------------------------------------- */
.rsvp-section {
    background-color: var(--botanical-primary);
    padding: 80px 35px;
    color: #fff;
    text-align: center;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.form-input {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.6); }

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-submit {
    background-color: var(--botanical-bg);
    color: var(--botanical-primary);
    border: none;
    padding: 20px;
    width: 100%;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    background-color: #fff;
}

/* --------------------------------------------------------------------------
   9. ANİMASYONLAR (REVEAL)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Harita Butonu */
#mapUrlBlock {
    display: inline-block !important;
    border: 1px solid var(--botanical-primary);
    padding: 12px 25px;
    color: var(--botanical-primary) !important;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

#mapUrlBlock:hover {
    background: var(--botanical-primary);
    color: #fff !important;
}
/* --------------------------------------------------------------------------
   10. PREMIUM MODÜL: CANLI MEDYA GALERİSİ (BOTANICAL SPECIAL)
   -------------------------------------------------------------------------- */
.premium-gallery-section {
    padding: 80px 35px;
    background-color: #fdfbf7; /* --color-dc2 */
    text-align: center;
    border-top: 1px solid rgba(91, 110, 88, 0.1);
}

.premium-gallery-inner {
    max-width: 100%;
    margin: 0 auto;
}

.premium-gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--botanical-primary);
    position: relative;
    display: inline-block;
}

/* Temadaki başlık altı yaprak ikonu ile uyum */
.premium-gallery-title::after {
    content: '🌿';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    opacity: 0.5;
}

.premium-gallery-subtitle {
    font-size: 1rem;
    color: #555;
    margin: 30px auto 40px;
    font-style: italic;
    line-height: 1.6;
}

.guest-upload-form {
    background: #fff;
    padding: 35px 25px;
    border-radius: 4px;
    border: 1px solid rgba(91, 110, 88, 0.1);
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.guest-upload-input {
    width: 100%;
    padding: 15px;
    background: #fdfbf7;
    border: 1px solid rgba(91, 110, 88, 0.2);
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.guest-upload-input:focus {
    border-color: var(--botanical-primary);
    background: #fff;
}

.guest-upload-dropzone {
    border: 2px dashed rgba(91, 110, 88, 0.2);
    padding: 30px 20px;
    background: #fcfdfc;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.guest-upload-dropzone:hover {
    border-color: var(--botanical-primary);
    background: rgba(91, 110, 88, 0.05);
}

.guest-upload-dropzone input[type="file"] {
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    color: var(--botanical-primary);
}

.guest-upload-btn {
    background-color: var(--botanical-primary);
    color: #ffffff;
    border: none;
    padding: 20px;
    width: 100%;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(91, 110, 88, 0.2);
}

.guest-upload-btn:hover {
    background-color: var(--color-dc3); /* Toprak Kahve */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.guest-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.guest-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    background: #eee;
    transition: all 0.4s ease;
}

.guest-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(91, 110, 88, 0.15);
    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(61, 68, 58, 0.85));
    color: white;
    padding: 25px 10px 10px 10px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 500;
}