/* ==========================================================================
   TEMA: POPPY GARDEN (Id: 7) - ENHANCED EDITION
   MİMARİ: Gelincik Kırmızısı, Krem Zemin, Romantik Botanik, Genişletilmiş Modüller
   ========================================================================== */

:root {
    --color-dc1: #fdfaf5; /* Krem Zemin */
    --color-dc2: #d32f2f; /* Gelincik Kırmızısı */
    --color-dc3: #4caf50; /* Botanik Yeşil */
    --bg-color: var(--color-dc1);
    --poppy-red: var(--color-dc2);
    --text-dark: #3a2e2e;
    --soft-border: rgba(211, 47, 47, 0.15);
}

/* --------------------------------------------------------------------------
   1. GLOBAL BİLEŞENLER
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: #f7f3ec;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(211, 47, 47, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 40%);
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.serif-bold { font-weight: 600; }
.sans-serif { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; letter-spacing: 1px; color: #5a4f4f; }

h1, h2, h3, .welcome-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin: 0;
    color: var(--poppy-red);
}

/* --------------------------------------------------------------------------
   2. ANA TAŞIYICI
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.06);
}

/* --------------------------------------------------------------------------
   3. KAPAK BÖLÜMÜ (HERO)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--poppy-red);
    transition: background-position 0.6s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(253,250,245,1) 95%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 50px;
    text-align: center;
}

.hero-names {
    font-size: 4rem;
    line-height: 1;
    color: var(--poppy-red);
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-dark);
    border-top: 1px solid rgba(211, 47, 47, 0.4);
    padding-top: 15px;
    margin-top: 10px;
}

/* --------------------------------------------------------------------------
   4. BİLGİ VE FLORAL DETAYLAR
   -------------------------------------------------------------------------- */
.content-pad {
    padding: 20px 30px 60px;
    text-align: center;
}

.floral-divider {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--poppy-red);
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(211,47,47,0.1));
}

.welcome-title {
    font-size: 2.6rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.welcome-title::after {
    content: '✤';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--poppy-red);
    opacity: 0.5;
}

.welcome-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
    color: #4a3f3f;
}

/* --------------------------------------------------------------------------
   5. MODÜLLER: HİKAYE, ZAMAN ÇİZELGESİ, LOKASYON
   -------------------------------------------------------------------------- */
#storySection p {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid var(--soft-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.info-card {
    background: #fff;
    border: 1px solid var(--soft-border);
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:not(:last-child)::after {
    content: '•';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--soft-border);
    font-size: 1.5rem;
}

.tl-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--poppy-red);
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.tl-text {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   6. GALERİ MODÜLÜ
   -------------------------------------------------------------------------- */
.gallery-grid {
    margin-top: 25px;
}
.gallery-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.gallery-item:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

/* --------------------------------------------------------------------------
   7. GERİ SAYIM
   -------------------------------------------------------------------------- */
.countdown-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid var(--soft-border);
    border-bottom: 1px solid var(--soft-border);
    background: rgba(255,255,255,0.5);
}

.cd-item {
    text-align: center;
    width: 65px;
}

.cd-num {
    font-size: 2.4rem;
    color: var(--poppy-red);
    line-height: 1;
    margin-bottom: 5px;
}

.cd-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   8. LCV (RSVP) FORMU
   -------------------------------------------------------------------------- */
.rsvp-section {
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--poppy-red), #b71c1c);
    color: #fff;
    text-align: center;
    border-top: 5px solid rgba(0,0,0,0.1);
}

.form-input {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}

.form-input::placeholder { color: rgba(255,255,255,0.7); font-style: italic; }
.form-input:focus { 
    outline: none; 
    border-color: #fff; 
    background: rgba(255,255,255,0.15);
    transform: scale(1.02);
}

.btn-submit {
    background: #fff;
    color: var(--poppy-red);
    border: none;
    padding: 18px;
    width: 100%;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #fdfaf5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.btn-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --------------------------------------------------------------------------
   9. ANİMASYONLAR (REVEAL)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 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;
}