/*
======================================================
styles.css - Fül Fül Test ve Yarışma Mağazası
Türk Çayı Teması
======================================================
*/

/* Renk Paleti:
   Koyu Çay (Ana Metin, Başlıklar): #3D2C28
   Açık Çay (Arka Plan Detayı): #E7D7C8
   Bakır/Kızıl (Aksan/Buton): #C85C3D
   Krem/Beyaz (Ana Arka Plan, Kontrast): #F7F7F7
   Koyu Kahve (Kontrast Blok): #5B4842
*/

/* Genel Sıfırlama ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Kendi Tanımlı Web Fontlarını Kullanın (Eğer varsa, örnek olarak serif/sans-serif kullanıldı)
   NOT: Google Fonts kullanılmayacaktır. Yerel veya sistem fontları tercih edilmiştir. */
body {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Geleneksel ve okunaklı bir font */
    line-height: 1.6;
    color: #3D2C28; /* Koyu Çay Rengi */
    background-color: #F7F7F7; /* Açık Krem Arka Plan */
    max-width: 1090px; /* Maksimum genişlik */
    margin: 0 auto; /* Merkezi Konumlandırma */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

/* ---------------------------------------------------
   BAŞLIK (HEADER) STİLLERİ
   --------------------------------------------------- */
header {
    background-color: #5B4842; /* Koyu Kahve */
    color: #F7F7F7;
    padding: 20px 40px;
    text-align: center;
    border-bottom: 5px solid #C85C3D; /* Bakır Detay */
}

header h1 {
    font-size: 2.5em;
    letter-spacing: 2px;
}

/* ---------------------------------------------------
   ANA İÇERİK ve BLOK GENEL STİLLERİ
   --------------------------------------------------- */
section {
    padding: 60px 40px;
    margin-bottom: 20px;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden; /* İçerik taşmasını engellemek için */
}

section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    color: #C85C3D; /* Bakır Rengi */
    border-bottom: 2px solid #E7D7C8;
    padding-bottom: 10px;
}

/* ---------------------------------------------------
   BLOK 1: SATIŞ TEKLİFİ (OFFER) STİLLERİ
   --------------------------------------------------- */
.block-1 {
    min-height: 470px; /* Belirtilen minimum yükseklik */
    background: linear-gradient(rgba(231, 215, 200, 0.9), rgba(231, 215, 200, 0.7)), url('tea-background.jpg'); /* Varsayımsal görsel */
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block-1 h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #3D2C28;
    border-bottom: none;
}

.block-1 p {
    font-size: 1.3em;
    max-width: 700px;
    margin-bottom: 40px;
    color: #3D2C28;
}

/* Blok 1 Link-Buton Stili */
.block-1 .button {
    display: inline-block;
    background-color: #C85C3D; /* Bakır Rengi */
    color: #F7F7F7;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.block-1 .button:hover {
    background-color: #A34A2F;
    transform: translateY(-2px);
}

/* ---------------------------------------------------
   KONTRAST BLOK STİLLERİ (Blok 2, 4, 6 vb.)
   --------------------------------------------------- */
/* Koyu Arka Plan, Açık Metin */
.block-2, .block-4, .block-6 {
    background-color: #5B4842; /* Koyu Kahve */
    color: #F7F7F7;
}

.block-2 h2, .block-4 h2, .block-6 h2 {
    color: #F7F7F7; /* Başlık rengi için tam kontrast */
    border-bottom-color: #C85C3D; /* Bakır detay */
}

/* Açık Arka Plan, Koyu Metin */
.block-3, .block-4-1, .block-5 {
    background-color: #F7F7F7; /* Açık Krem */
    color: #3D2C28;
}

/* ---------------------------------------------------
   BLOK 2: ABONELİK FORMU STİLLERİ
   --------------------------------------------------- */
.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #6a534c; /* Biraz daha açık kahve tonu */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #E7D7C8; /* Açık çay tonu */
}

.subscribe-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #C85C3D;
    border-radius: 4px;
    font-size: 1em;
    color: #3D2C28;
}

/* Genel Buton Stili (Form ve Diğer Yerler) */
button[type="submit"] {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #C85C3D; /* Bakır Rengi */
    color: #F7F7F7;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #A34A2F;
}

/* ---------------------------------------------------
   BLOK 3: ÜRÜNLER VE MAKALE STİLLERİ
   --------------------------------------------------- */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-item {
    padding: 20px;
    border: 1px solid #E7D7C8;
    border-radius: 6px;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-item h3 {
    color: #5B4842;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.product-item .price {
    font-size: 1.5em;
    color: #C85C3D;
    font-weight: bold;
    margin-top: 15px;
}

/* Makale Stili - Vurgulama */
.business-article {
    border-left: 5px solid #C85C3D; /* Bakır vurgu */
    padding-left: 20px;
    background-color: #E7D7C8; /* Açık Çay Arka Planı */
    padding: 30px;
    border-radius: 6px;
    margin-top: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.business-article h3 {
    color: #3D2C28;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 1px dotted #3D2C28;
    padding-bottom: 5px;
    text-align: left;
}

.business-article p {
    margin-bottom: 15px;
    text-align: justify;
}

/* ---------------------------------------------------
   BLOK 4/4.1/5: UZMANLAR VE YORUMLAR STİLLERİ
   --------------------------------------------------- */
.specialist-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.specialist-item {
    padding: 20px;
    background-color: #6a534c; /* Koyu Blok için daha açık ton */
    border-radius: 6px;
    text-align: center;
    border: 1px solid #C85C3D;
}

.specialist-item h3 {
    color: #F7F7F7;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.specialist-item p {
    color: #E7D7C8;
    font-size: 0.9em;
}

.block-5 ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.block-5 li {
    background-color: #FFFFFF;
    padding: 20px;
    border-left: 4px solid #C85C3D;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.block-5 small {
    display: block;
    text-align: right;
    font-style: italic;
    color: #5B4842;
    margin-top: 10px;
}

/* ---------------------------------------------------
   BLOK 6: HARİTA VE İLETİŞİM STİLLERİ
   --------------------------------------------------- */
.map-container {
    margin-top: 30px;
    border: 3px solid #C85C3D; /* Harita çevresinde bakır çerçeve */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-container iframe {
    display: block;
    /* width: 100% HTML'de zaten tanımlı */
}

.block-6 address, .block-6 p {
    text-align: center;
    font-style: normal;
    color: #F7F7F7;
}

.block-6 .domainName {
    font-weight: bold;
    color: #C85C3D;
}

/* ---------------------------------------------------
   ALT BİLGİ (FOOTER) STİLLERİ
   --------------------------------------------------- */
footer {
    background-color: #3D2C28; /* Koyu Çay */
    color: #E7D7C8;
    padding: 20px 40px;
    text-align: center;
    margin-top: 0; /* Blok 6 ile birleşmeli */
    border-top: 5px solid #C85C3D;
}

.copyright p {
    font-size: 0.9em;
    margin: 0;
}

/* ---------------------------------------------------
   MOBİL UYUMLULUK (Responsive Design)
   --------------------------------------------------- */
@media (max-width: 768px) {
    /* Genel Ayarlamalar */
    body {
        max-width: 100%;
        box-shadow: none;
    }

    section {
        padding: 40px 20px;
    }

    /* Başlıklar */
    section h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .block-1 h2 {
        font-size: 2.2em;
    }

    .block-1 p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    /* Grid Yapıları */
    .product-list, .specialist-list {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
    }

    .product-item, .specialist-item {
        margin-bottom: 15px;
    }

    /* Form */
    .subscribe-form {
        padding: 20px;
    }

    .subscribe-form input[type="email"], button[type="submit"] {
        font-size: 1em;
        padding: 10px;
    }

    /* Makale */
    .business-article {
        padding: 20px;
        border-left-width: 3px;
    }
}
