﻿/* ===================================================================
 * BÖLÜM 1: HİKAYEMİZ (GERÇEK ZAMAN TÜNELİ TASARIMI)
 * (PartialTimeline.cshtml için)
 * =================================================================== */

/* Ana bölüm başlığı (Eğer style.css'te yoksa) */
.hikayemiz-bolumu .section-title h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #9B5C5C;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.hikayemiz-bolumu .section-title p {
    font-family: 'Lora', serif;
    font-style: italic;
    color: #777;
}

/* Ana zaman tüneli sarmalayıcısı */
.timeline-main-wrapper {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

    /* Ortadaki dikey çizgi */
    .timeline-main-wrapper::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #F0E0E2; /* Soluk pembe çizgi */
        margin-left: -2px;
        border-radius: 4px;
    }

/* Her bir zaman tüneli öğesi (kart) */
.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 30px;
    /* "Asil Kart" stillerimiz */
    background: #FFFBFB;
    border: 1px solid #F0E0E2;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(155, 92, 92, 0.08);
    transition: all 0.3s ease;
}

    .timeline-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(155, 92, 92, 0.15);
    }

    /* Kartların sağ/sol hizalaması */
    .timeline-item:nth-child(odd) { /* Tek sayılılar (1, 3, 5...) SOLDA */
        left: 0;
        padding: 20px 30px;
        text-align: right; /* İçeriği sağa hizala */
    }

    .timeline-item:nth-child(even) { /* Çift sayılılar (2, 4, 6...) SAĞDA */
        left: 50%;
        padding: 20px 30px;
        text-align: left; /* İçeriği sola hizala */
    }

/* Kartlardaki kalp ikonu (Çizginin üzerine gelecek) */
.timeline-icon {
    position: absolute;
    top: 30px;
    z-index: 10;
    width: 50px; /* İkonun kutusu */
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 50%;
    /* "Asil İkon" stillerimiz */
    background: #D8B2B2;
    box-shadow: 0 0 0 4px #FFFBFB, 0 0 5px 10px rgba(155, 92, 92, 0.1);
}

    .timeline-icon i {
        color: #fff;
    }

/* Soldaki kartın ikonunu sağa koy */
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px; /* İkonun yarısı dışarıda */
}
/* Sağdaki kartın ikonunu sola koy */
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px; /* İkonun yarısı dışarıda */
}


/* ----- Font Stilleri (KULLANICI İSTEĞİ) ----- */

/* Kart içindeki başlık (El yazısı) */
.timeline-content h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    font-weight: normal;
    color: #9B5C5C;
    margin-bottom: 5px;
}
/* Kart içindeki paragraf (İtalik) */
.timeline-content p {
    font-family: 'Lora', serif;
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}
/* Kart içindeki tarih */
.timeline-content .date {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #D8B2B2;
    display: block;
    margin-bottom: 5px;
}
.timeline-item:not(:has(.timeline-content)) {
    display: none;
}
/* ----- Mobil (Küçük Ekran) Görünümü ----- */
@media (max-width: 768px) {
    /* Çizgiyi sola al */
    .timeline-main-wrapper::before {
        left: 25px;
    }

    /* Tüm kartları tam genişlik yap ve sola hizala */
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 65px; /* İkon için solda yer aç */
        padding-right: 20px;
        text-align: left;
    }

        /* İkonları çizginin üzerine al */
        .timeline-icon,
        .timeline-item:nth-child(odd) .timeline-icon,
        .timeline-item:nth-child(even) .timeline-icon {
            left: 25px; /* Çizgiyle aynı hizada */
            transform: translateX(-50%); /* Tam ortala */
        }
}

/* ===================================================================
 * BÖLÜM 2: KÜÇÜK SIRLAR KARTLARI (SEVME NEDENLERİ)
 * (PartialLoveReasons.cshtml için)
 * =================================================================== */

/* Ana bölüm başlığı (Eğer style.css'te yoksa) */
.kucuk-sirlar-bolumu .section-title h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #9B5C5C;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.kucuk-sirlar-bolumu .section-title p {
    font-family: 'Lora', serif;
    font-style: italic;
    color: #777;
}

/* "Zekan", "Desteğin" kartlarının dış çerçevesi */
.icon-box {
    background: #FFFBFB; /* Yumuşak krem zemin */
    border: 1px solid #F0E0E2;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(155, 92, 92, 0.08);
    transition: all 0.3s ease;
    padding: 30px;
    height: 100%; /* Kartların aynı hizada durması için */
}

    .icon-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(155, 92, 92, 0.15);
    }

    /* O yeşil kalp ikonu */
    .icon-box .icon {
        background: #FFF0F0; /* Çok soluk pembe zemin */
        border: 1px solid #F0E0E2;
    }

        .icon-box .icon i {
            color: #D8B2B2; /* Açık gül kurusu */
        }

    .icon-box:hover .icon {
        background: #D8B2B2; /* Hover'da kalp kutusu */
    }

        .icon-box:hover .icon i {
            color: #fff; /* Hover'da kalp */
        }


    /* "Zekan" kartının başlığı (KULLANICI İSTEĞİ) */
    .icon-box h4.title a,
    .icon-box h4.title {
        font-family: 'Great Vibes', cursive; /* El yazısı fontu */
        font-size: 2.2rem;
        font-weight: normal;
        color: #9B5C5C; /* Koyu gül rengi */
        transition: 0.3s;
    }

        .icon-box h4.title a:hover {
            color: #6D435A;
        }

    /* "Zekan" kartının altındaki paragraf */
    .icon-box p.description {
        font-family: 'Lora', serif; /* Okunaklı font */
        color: #555;
        font-style: italic;
        font-size: 0.95rem;
        line-height: 1.7;
    }
