/* ==========================================================================
   TEMA: RUSTIC MOUNTAIN (Id: 15) - ENHANCED EDITION
   MİMARİ: Sabit Arka Plan, Kavisli Kartlar, Toprak Tonları, Modüler Grid
   ========================================================================== */

:root {
    --bg-dark: #2a2b2c;
    --card-bg: #e6e0d4; /* Bej / Kum Taşı */
    --text-color: #3b3c38;
    --accent-mountain: #7a8362; /* Adaçayı Yeşili */
    --dc1: #7a8362;
    --dc2: #d3cdbe;
    --dc3: #606d80;
    --dc4: #212224;
}

/* --------------------------------------------------------------------------
   1. GLOBAL BİLEŞENLER
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: var(--bg-dark);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    margin: 0;
}

/* --------------------------------------------------------------------------
   2. ANA TAŞIYICI VE ARKA PLAN
   -------------------------------------------------------------------------- */
.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.fixed-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

.fixed-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   3. KART MİMARİSİ (FLOATING CARDS)
   -------------------------------------------------------------------------- */
.card {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.card.arch-top {
    border-radius: 240px 240px 12px 12px;
}

/* --------------------------------------------------------------------------
   4. KAPAK İÇERİĞİ (HERO)
   -------------------------------------------------------------------------- */
.hero-image-box {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 240px 240px 0 0;
    position: relative;
}

.hero-text-overlay {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-date {
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-names {
    font-size: 3.8rem;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   5. İÇERİK MODÜLLERİ (HİKAYE & GENEL)
   -------------------------------------------------------------------------- */
.content-pad {
    padding: 50px 30px;
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%; width: 60%; height: 1px;
    background: var(--text-color);
    opacity: 0.2;
}

.text-p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4b45;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   6. GALERİ MODÜLÜ (RUSTIC GRID)
   -------------------------------------------------------------------------- */
.gallery-grid {
    margin-top: 20px;
}

.gallery-item {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: sepia(20%);
    border: 4px solid #fff;
}

.gallery-item:hover {
    transform: scale(1.02);
    filter: sepia(0%);
    z-index: 2;
}

/* --------------------------------------------------------------------------
   7. ZAMAN ÇİZELGESİ
   -------------------------------------------------------------------------- */
.timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: left;
    background: rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 4px;
}

.tl-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    width: 70px;
    font-weight: 700;
    color: var(--accent-mountain);
}

.tl-text {
    font-size: 1rem;
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. GERİ SAYIM (COUNTDOWN)
   -------------------------------------------------------------------------- */
.countdown-flex {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 20px 0;
    background: rgba(255,255,255,0.4);
    border-radius: 12px;
}

.cd-box { text-align: center; }
.cd-num { font-size: 2rem; color: var(--accent-mountain); line-height: 1; }
.cd-lbl { font-size: 0.6rem; letter-spacing: 2px; opacity: 0.7; margin-top: 5px; }

/* --------------------------------------------------------------------------
   9. DRESS CODE & LCV
   -------------------------------------------------------------------------- */
.dc-colors {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.dc-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.dc-circle:hover { transform: translateY(-5px); }

.form-input {
    width: 100%;
    padding: 18px;
    background: #fff;
    border: 1px solid #dcd6c8;
    border-radius: 4px;
    margin-bottom: 15px;
    font-family: inherit;
    box-sizing: border-box;
    font-size: 1rem;
}

.btn-submit {
    background: var(--accent-mountain);
    color: #fff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(122, 131, 98, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #646b50;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   10. ANİMASYON TETİKLEYİCİLERİ
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.line-art-icon {
    width: 60px;
    height: 60px;
    margin: 40px auto;
    color: var(--accent-mountain);
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   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;
}