/*
 * styles.css
 * Tema: Türk Dizisi Estetiği (Dramatik, Lüks ve Geleneksel)
 */

/* ======================================= */
/* 1. KÖK STİLLER & GENEL DÜZEN (LAYOUT) */
/* ======================================= */

/* Geleneksel/Nostaljik ama okunaklı bir font ailesi kullanılıyor (Google Fonts'tan kaçınılmıştır) */
body {
    /* Font yığınında, hem serif (klasik) hem de sans-serif (modern) seçenekler sunularak,
       Türk dizilerindeki resmi/dramatik havayı yansıtan bir görünüm hedeflenmiştir. */
    font-family: 'Times New Roman', Times, serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a; /* Koyu Gri, okunabilirlik için */
    background-color: #f7f7f7; /* Hafif Krem/Gri arkaplan */
    max-width: 1090px; /* Maksimum genişlik kısıtlaması */
    margin: 0 auto; /* Sayfayı ortalama */
    padding: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Hafif gölge ile içeriği sayfadan ayırma */
}

/* Tüm başlıklar için dramatik bir görünüm */
h1, h2, h3 {
    font-family: 'Times New Roman', Times, serif; /* Daha güçlü serif vurgusu */
    font-weight: 700;
    margin-bottom: 0.7em;
    text-align: center;
}

/* Blok Kontrast Renk Paleti:
 * Ana Renkler (Lüks/Zengin): #7A001F (Bordo/Koyu Kırmızı), #D4AF37 (Eski Altın), #3C4245 (Antrasit Gri)
 * Arkaplanlar: #F7F7F7 (Krem), #FFFFFF (Beyaz)
 */

/* ======================================= */
/* 2. BLOK BAZINDA STİLLEME */
/* ======================================= */

/* Tüm bloklar için temel stil */
section {
    padding: 40px 25px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37; /* Altın ayırıcı */
}

/* --- BLOK 1: Satış Teklifi (Dramatik Giriş) --- */
.block-1 {
    background-color: #3C4245; /* Antrasit Gri */
    color: #f7f7f7; /* Açık Krem/Beyaz metin */
    min-height: 470px; /* Minimum yükseklik kısıtlaması */
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği dikeyde ortala */
    align-items: center;
    text-align: center;
    padding: 60px 25px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
}

.block-1 h1 {
    font-size: 2.5em;
    color: #D4AF37; /* Altın sarısı başlık */
    border-bottom: 3px solid #7A001F;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.block-1 p {
    max-width: 800px;
    font-size: 1.1em;
    font-weight: 300;
}

/* --- Blok 1'deki Link-Buton (Göz Alıcı Vurgu) --- */
.block-1 .button {
    display: inline-block;
    background-color: #7A001F; /* Bordo/Koyu Kırmızı */
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 30px;
    margin-top: 30px;
    border: 2px solid #D4AF37; /* Altın çerçeve */
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
}

.block-1 .button:hover {
    background-color: #D4AF37; /* Üzerine gelince altın sarısı */
    color: #3C4245;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- BLOK 2: Abone Ol Formu (Açık Arkaplan) --- */
.block-2 {
    background-color: #FFFFFF;
    color: #3C4245;
    text-align: center;
}

.block-2 h2 {
    color: #7A001F; /* Koyu Kırmızı başlık */
}

/* --- BLOK 3: Ürünler ve Fiyatlar + Makale (Kontrast Arkaplan) --- */
.block-3 {
    background-color: #e0e0e0; /* Açık Gri Kontrast */
    color: #1a1a1a;
    padding-bottom: 60px;
}

/* --- BLOK 4 & 4.1: Uzmanlar ve Faaliyetler (Açık Arkaplan) --- */
.block-4, .block-4-1 {
    background-color: #FFFFFF;
    color: #3C4245;
}

.block-4 h2, .block-4-1 h2 {
    color: #7A001F;
}

/* --- BLOK 5: İncelemeler (Kontrast Arkaplan) --- */
.block-5 {
    background-color: #3C4245; /* Antrasit Gri */
    color: #f7f7f7;
    text-align: center;
}

.block-5 h2 {
    color: #D4AF37;
}

/* --- BLOK 6: İletişim (Açık Arkaplan) --- */
.block-6 {
    background-color: #FFFFFF;
    color: #1a1a1a;
    text-align: center;
}

.block-6 address, .block-6 p {
    margin: 10px 0;
    font-style: normal;
}

/* --- BLOK 7: Footer (Telif Hakkı) --- */
.block-7 {
    background-color: #1a1a1a;
    color: #999999;
    text-align: center;
    padding: 15px 25px;
    font-size: 0.9em;
    border-top: 3px solid #7A001F; /* Dramatik Üst Çizgi */
}

/* ======================================= */
/* 3. ÖZEL ELEMAN STİLLEME */
/* ======================================= */

/* --- Form ve Inputlar --- */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #D4AF37; /* Altın çerçeve */
    border-radius: 8px;
    background-color: #f0f0f0;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #7A001F; /* Odaklanınca Bordo */
    outline: none;
}

/* --- Butonlar (Genel Stil) --- */
button[type="submit"] {
    background-color: #7A001F;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 1px solid #D4AF37;
}

button[type="submit"]:hover {
    background-color: #9c0028; /* Koyu Bordo */
}

/* --- Ürünler Tablosu --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    text-align: left;
    background-color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

th, td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
}

th {
    background-color: #7A001F;
    color: white;
    font-weight: bold;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* --- Uzman Kartları --- */
.specialist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.specialist-card {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    padding: 20px;
    flex: 1 1 200px; /* Esnek genişlik */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.specialist-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

/* --- İnceleme Kartları --- */
.review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.review-card {
    background-color: #2a2a2a; /* Kontrast için daha koyu arkaplan */
    color: #f7f7f7;
    padding: 20px;
    flex: 1 1 200px;
    border-radius: 8px;
    border-left: 5px solid #D4AF37; /* Altın vurgu çizgisi */
    font-style: italic;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.review-card p:first-child {
    font-weight: bold;
    color: #7A001F;
    margin-bottom: 10px;
    font-style: normal;
}

/* --- Makale Vurgusu (BLOK 3 İçinde) --- */
.article-content {
    background-color: #FFFFFF;
    border: 1px solid #D4AF37;
    padding: 25px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.article-content h3 {
    text-align: left;
    color: #7A001F;
    border-bottom: 1px dashed #D4AF37;
    padding-bottom: 10px;
}

/* --- Harita Gömme Çerçevesi --- */
.map-container {
    margin-top: 20px;
    border: 5px solid #D4AF37; /* Altın Çerçeve */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
}


/* ======================================= */
/* 4. MOBİL UYUMLULUK (RESPONSIVE - 768px altı) */
/* ======================================= */

@media (max-width: 768px) {

    /* Genel ayarlar */
    body {
        max-width: 100%; /* Mobil cihazlarda tam genişlik kullan */
    }

    section {
        padding: 30px 15px; /* Daha küçük iç boşluk */
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    /* Blok 1 (Offer) */
    .block-1 {
        min-height: 400px; /* Mobil için biraz daha küçük yükseklik */
        padding: 40px 15px;
    }

    .block-1 .button {
        padding: 12px 20px;
        font-size: 1em;
    }

    /* Uzman/İnceleme Kartları (Yataydan Dikeye) */
    .specialist-list, .review-list {
        flex-direction: column;
        gap: 15px;
    }

    .specialist-card, .review-card {
        flex-basis: auto; /* Tam genişlik kullan */
        width: 100%;
    }

    /* Tablo (Daha iyi kaydırma için) */
    .block-3 table {
        display: block;
        overflow-x: auto; /* Yatay kaydırma */
        white-space: nowrap;
    }

    /* Form (Tam Genişlik) */
    form {
        max-width: 100%;
        padding: 15px;
    }

    input[type="email"], button[type="submit"] {
        width: 100%;
        box-sizing: border-box; /* Padding ve border'ı genişliğe dahil et */
    }

    /* Harita (Küçük cihazlarda yükseklik ayarı) */
    .map-container iframe {
        height: 300px;
    }
}
