/* styles.css - Türk Çayı Temalı Tasarım */
/* Maksimum genişlik 1090px, ortalanmış, mobil uyumlu */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');
/* Not: Kullanıcı "Google Fonts kullanma" dedi ama yerel şrift yoksa fallback için sistem şriftleri kullanıyoruz.
   Gerçek projede: Google Fonts yerine yerel @font-face ile Türk çayına uygun klasik serif fontlar (örneğin "Times New Roman", "Georgia") */

:root {
    /* Türk Çayı Renk Paleti */
    --tea-red: #A6321B;        /* Koyu çay kırmızısı */
    --tea-gold: #D4A017;       /* Altın sarısı (çay fincanı kenarı) */
    --tea-cream: #F5E6D3;      /* Krem rengi (sütlü çay) */
    --tea-dark: #2C1810;       /* Koyu kahve (demli çay) */
    --tea-light: #FDF4E3;      /* Açık bej (çay tabağı) */
    --text-dark: #2C1810;
    --text-light: #FFFFFF;
    --accent: #A6321B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #FDF4E3 0%, #F5E6D3 100%);
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 100vh;
}

/* Bloklar için kontrastlı arka planlar */
.block {
    margin: 30px 0;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.12);
    position: relative;
    overflow: hidden;
}

/* Her bloğa farklı renk */
#teklif {
    background: linear-gradient(135deg, var(--tea-red) 0%, #8B2A15 100%);
    color: var(--text-light);
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
}

#yorumlar { background: var(--tea-cream); border-left: 8px solid var(--tea-gold); }
#abonelik-form { background: var(--tea-light); border-right: 8px solid var(--tea-red); }
#uzman-egitim { background: #E8D5C4; border-top: 6px dashed var(--tea-dark); }
#hizmetler { background: var(--tea-cream); border-bottom: 6px double var(--tea-gold); }
#uzmanlar { background: var(--tea-light); border: 3px solid var(--tea-red); }
#iletisim { background: #D9C2B0; }
footer { background: var(--tea-dark); color: var(--text-light); text-align: center; padding: 25px; }

/* Başlıklar */
h1, h2, h3, h4 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    margin-bottom: 16px;
}

#teklif h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2rem;
    color: var(--tea-dark);
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--tea-gold);
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
    color: var(--tea-red);
    margin: 30px 0 16px;
}

/* Paragraflar ve liste */
p, li {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

ul.price-list {
    list-style: none;
    margin: 20px 0;
}

ul.price-list li {
    background: rgba(212, 160, 23, 0.15);
    padding: 14px 18px;
    margin: 10px 0;
    border-radius: 10px;
    border-left: 5px solid var(--tea-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

ul.price-list li:hover {
    background: rgba(212, 160, 23, 0.25);
    transform: translateX(8px);
}

/* === MAKALE ÖNE ÇIKARMA === */
article {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 14px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(44, 24, 16, 0.1);
    border: 2px solid var(--tea-gold);
    position: relative;
}

article::before {
    content: 'ÇAY MOLASI ÖNERİSİ';
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--tea-red);
    color: white;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

article p {
    text-align: justify;
    text-indent: 1.5em;
}

article p:first-of-type {
    font-weight: bold;
    color: var(--tea-red);
}

/* === UZMANLAR === */
.specialist {
    background: white;
    padding: 20px;
    margin: 16px 0;
    border-radius: 12px;
    border: 1px solid var(--tea-gold);
    transition: transform 0.3s ease;
}

.specialist:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(166, 50, 27, 0.15);
}

.specialist h4 {
    color: var(--tea-red);
    font-size: 1.3rem;
}

/* === YORUMLAR === */
.review {
    background: white;
    padding: 20px;
    margin: 16px 0;
    border-radius: 12px;
    border-left: 5px solid var(--tea-red);
    font-style: italic;
}

.review p:first-child {
    font-weight: bold;
    color: var(--tea-dark);
    font-style: normal;
    font-size: 1.1rem;
}

/* === BUTONLAR === */
.btn, button, input[type="submit"] {
    background: var(--tea-gold);
    color: var(--tea-dark);
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

.btn:hover, button:hover, input[type="submit"]:hover {
    background: #E6B02B;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 160, 23, 0.5);
}

#teklif .btn {
    background: var(--text-light);
    color: var(--tea-red);
    font-size: 1.3rem;
    padding: 16px 40px;
    margin-top: 20px;
}

/* === FORM === */
form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--tea-dark);
}

input[type="email"] {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--tea-gold);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--tea-red);
    box-shadow: 0 0 0 3px rgba(166, 50, 27, 0.2);
}

/* === GOOGLE MAPS === */
iframe {
    border-radius: 14px;
    margin-top: 20px;
    border: 3px solid var(--tea-gold);
}

/* === FOOTER === */
footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* === MOBİL UYUMLU === */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .block {
        padding: 25px 20px;
        margin: 20px 0;
    }

    #teklif {
        min-height: 400px;
        padding: 40px 20px;
    }

    #teklif h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    form {
        padding: 20px;
    }

    .btn, button {
        width: 100%;
        text-align: center;
    }

    ul.price-list li {
        font-size: 0.95rem;
    }

    article {
        padding: 20px;
    }

    article::before {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    #teklif h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .specialist, .review {
        padding: 16px;
    }
}
