/*
 * styles.css - Türk Tatlıları Temalı Stil Dosyası
 * @author Gemini
 */

/* Genel Ayarlar ve Fontlar */
body {
    /* Maksimum genişlik ve ortalama */
    max-width: 1090px;
    margin: 0 auto;
    /* Genel arka plan rengi: Krem/Vanilya tonu */
    background-color: #FAF6E9;
    color: #3C2F2F; /* Koyu kahverengi/çikolata rengi okunaklı metin */
    font-family: Arial, sans-serif; /* Google Font kullanılmayacak */
    line-height: 1.6;
    padding: 10px;
}

/* Başlıklar */
h2 {
    color: #8C4B3D; /* Zengin kahve/tarçın rengi */
    text-align: center;
    padding-bottom: 15px;
    margin-top: 0;
    border-bottom: 3px solid #E6B34E; /* Altın/Bal rengi alt çizgi */
}

h3 {
    color: #3C2F2F;
    border-left: 5px solid #A4C563; /* Fıstık yeşili sol kenarlık */
    padding-left: 10px;
    margin-top: 25px;
}

/* Yatay Ayırıcı */
hr {
    border: none;
    height: 10px;
    background: linear-gradient(to right, #FAF6E9, #E6B34E, #FAF6E9);
    margin: 40px 0;
}

/* Blok Ortak Stilleri */
.blok {
    padding: 30px 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- BLOK 1: Satış Teklifi (offer) --- */
#teklif {
    min-height: 470px; /* Minimum yükseklik */
    background-color: #E6B34E; /* Parlak Altın/Bal rengi */
    color: #3C2F2F; /* Koyu metin */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 5px solid #C4913B; /* Daha koyu altın kenarlık */
}

#teklif h2 {
    color: #3C2F2F;
    border-bottom-color: #3C2F2F;
}

#teklif p {
    font-size: 1.1em;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Blok 1 Link-Buton Stili */
.buton {
    display: inline-block;
    padding: 15px 30px;
    background-color: #A4C563; /* Canlı Fıstık Yeşili */
    color: #FFFFFF; /* Beyaz okunaklı metin */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid #6D8E4E;
    max-width: 300px;
    margin: 20px auto 0;
}

.buton:hover {
    background-color: #799C4B; /* Daha koyu yeşil hover rengi */
    transform: translateY(-2px);
}

/* --- BLOK RENK AYIRIMLARI (Kontrast ve Tema) --- */

/* Blok 2: Abone Formu */
#abone-formu {
    background-color: #FAEBD7; /* Açık Şerbet/Gül Suyu Pembesi */
    color: #3C2F2F;
}

/* Blok 3: Ürünler ve Makale */
#urunler {
    background-color: #FAF6E9; /* Krem/Vanilya, arka planla aynı, daha çok çerçeve vurgusu */
    border: 1px dashed #E6B34E; /* Tatlı ambalajı gibi kesikli çizgi */
}

/* Blok 4: Uzmanlar */
#uzmanlar {
    background-color: #A4C563; /* Fıstık Yeşili */
    color: #3C2F2F;
}

#uzmanlar h2 {
    color: #3C2F2F;
    border-bottom-color: #3C2F2F;
}

/* Blok 4.1: Faaliyetler */
#faaliyetler {
    background-color: #8C4B3D; /* Zengin Kahverengi */
    color: #FAF6E9; /* Açık metin */
}

#faaliyetler h2 {
    color: #E6B34E;
    border-bottom-color: #E6B34E;
}

#faaliyetler p {
    font-weight: 300;
}

/* Blok 5: Yorumlar */
#yorumlar {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
}

/* Blok 6: İletişim */
#iletisim {
    background-color: #EFE7D7; /* Açık Krem */
    color: #3C2F2F;
    padding-bottom: 0; /* Harita alt boşluğunu yönetmek için */
}

/* --- BLOK İÇİ ÖZEL ÖĞELERİN STİLLERİ --- */

/* Makale Vurgusu */
.makale {
    background-color: #FFFCE0; /* Soluk Bal/Limon rengi */
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    border-left: 5px solid #E6B34E;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.makale h3 {
    color: #8C4B3D;
    border-left-color: #8C4B3D;
}

/* Ürün Listesi */
.urun-listesi p {
    border-bottom: 1px dotted #A4C563;
    padding: 8px 0;
    margin-bottom: 0;
}

.urun-listesi p:last-child {
    border-bottom: none;
}

/* Uzman Listesi */
.uzman-listesi p {
    font-style: italic;
    padding: 5px 0;
}

/* Yorum Stili */
.yorum-listesi blockquote {
    background-color: #F8F1E5;
    border-left: 4px solid #F56B72; /* Gül rengi tonu */
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 4px;
    font-style: italic;
}

.yorum-listesi footer {
    text-align: right;
    font-weight: bold;
    color: #8C4B3D;
    margin-top: 10px;
}

/* --- FORM VE DÜĞME STİLLERİ --- */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 20px auto 0;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

label {
    font-weight: bold;
    color: #8C4B3D;
}

input[type="email"] {
    padding: 12px;
    border: 2px solid #E6B34E; /* Altın kenarlık */
    border-radius: 6px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: #A4C563; /* Odaklanınca fıstık yeşili */
    outline: none;
}

button[type="submit"] {
    background-color: #F56B72; /* Canlı Gül Kırmızısı/Pembe */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-bottom: 3px solid #C94A50;
}

button[type="submit"]:hover {
    background-color: #C94A50;
    transform: translateY(1px);
}

/* --- HARİTA VE ALT BİLGİ STİLLERİ --- */
.harita {
    margin-top: 20px;
}

.harita iframe {
    display: block;
    border-radius: 0 0 12px 12px; /* Köşeleri yuvarlat */
}

/* Telif Hakkı (Footer) */
#telif-hakki {
    background-color: #3C2F2F; /* Koyu kahverengi/çikolata */
    color: #E6B34E; /* Altın metin */
    text-align: center;
    padding: 15px 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

#telif-hakki .domainName {
    font-weight: bold;
    color: #A4C563;
}

/* E-posta Adresi Vurgusu */
#iletisim .domainName {
    font-weight: bold;
    color: #8C4B3D;
}

/* --- MOBİL UYARLAMA (Responsive Design) --- */
@media (max-width: 768px) {
    body {
        padding: 0; /* Mobil cihazlarda kenar boşluklarını kaldır */
    }

    .blok {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 0; /* Mobil cihazlarda tam genişlik */
    }

    /* Blok 1: Teklif Yüksekliğini biraz azalt */
    #teklif {
        min-height: 400px;
        padding: 40px 20px;
    }

    /* Formu tam genişlikte göster */
    form {
        max-width: 100%;
        padding: 15px;
    }

    /* Makale yazı tipi boyutunu biraz küçült */
    .makale p {
        font-size: 0.95em;
    }

    h2 {
        font-size: 1.5em;
    }

    .buton {
        max-width: 100%;
    }
}
