/* styles.css – Fül Fül | Türk Tatlıları Temalı Tasarım */
/* Maksimum genişlik: 1090px, ortalanmış, mobil uyumlu */

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

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #2c1a0d;
    background: #fff8f0;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Genel Konteyner */
.container {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ==================== BLOK 1: TEKLİF (Hero) ==================== */
#teklif {
    background: linear-gradient(135deg, #d35400, #e67e22), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/><path d="M30,50 Q40,40 50,50 T70,50" stroke="rgba(255,255,255,0.2)" stroke-width="3" fill="none"/></svg>') repeat;
    color: #fff;
    text-align: center;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.3);
    position: relative;
    overflow: hidden;
}

#teklif::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

#teklif h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-weight: 700;
}

#teklif p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* Teklif Butonu */
#teklif .btn {
    display: inline-block;
    background: #f1c40f;
    color: #2c1a0d;
    padding: 14px 36px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(241, 196, 15, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #f39c12;
}

#teklif .btn:hover {
    background: #f39c12;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.5);
}

/* ==================== BLOK RENKLERİ – KONTRASTLI TATLI TEMASI ==================== */
#yorumlar { background: #fff5e6; color: #2c1a0d; }
#urunler { background: #f9e4b7; color: #2c1a0d; }
#abonelik-formu { background: #d5f4e6; color: #1a3c34; }
#uzmanlar { background: #fadede; color: #4a1c2b; }
#uzman-faaliyetler { background: #e6f7ff; color: #0c5460; }
#iletisim { background: #f0e6ff; color: #4a148c; }
#footer { background: #2c1a0d; color: #f1c40f; }

/* Tüm bölümler için ortak stil */
section {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

/* Başlıklar */
h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
}

/* ==================== BLOK 3: ÜRÜNLER VE MAKALE ==================== */
.fiyat-listesi {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 0;
}

.fiyat-listesi li {
    background: rgba(255,255,255,0.7);
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #f39c12;
}

/* Makale – Öne Çıkarılmış */
.makale {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-top: 40px;
    border: 3px solid #e67e22;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
    position: relative;
}

.makale::before {
    content: 'ÖNE ÇIKAN İÇERİK';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e22;
    color: white;
    padding: 6px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

.makale h3 {
    color: #d35400;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.makale ol {
    padding-left: 25px;
    margin: 20px 0;
}

.makale li {
    margin-bottom: 12px;
    font-weight: 600;
}

/* ==================== BLOK 2: FORM ==================== */
#abonelik-formu form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

#abonelik-formu input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    border: 3px solid #27ae60;
    border-radius: 50px;
    background: #fff;
    color: #1a3c34;
    outline: none;
    transition: all 0.3s ease;
}

#abonelik-formu input[type="email"]:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}

#abonelik-formu .btn {
    background: #27ae60;
    color: white;
    padding: 14px 40px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
}

#abonelik-formu .btn:hover {
    background: #2ecc71;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.5);
}

/* ==================== BLOK 5: YORUMLAR ==================== */
.yorum {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #f39c12;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.yorum p {
    font-style: italic;
    margin-bottom: 10px;
    color: #5d4037;
}

.yorum strong {
    color: #e67e22;
    font-size: 1rem;
}

/* ==================== BLOK 4: UZMANLAR ==================== */
.uzman {
    background: rgba(255,255,255,0.7);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px dashed #e91e63;
    transition: transform 0.3s ease;
}

.uzman:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.uzman h4 {
    color: #e91e63;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

/* ==================== BLOK 6: HARİTA ==================== */
#iletisim iframe {
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ==================== FOOTER ==================== */
#footer p {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

#footer .domainName {
    color: #f1c40f;
    font-weight: bold;
}

/* ==================== MOBİL UYUMLULUK ==================== */
@media (max-width: 768px) {
    #teklif h1 {
        font-size: 2.2rem;
    }

    #teklif p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 30px 15px;
    }

    .fiyat-listesi {
        grid-template-columns: 1fr;
    }

    #abonelik-formu form {
        padding: 0 10px;
    }

    .makale {
        padding: 25px 20px;
    }

    .makale h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #teklif {
        min-height: 400px;
        padding: 20px;
    }

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

    #teklif .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    section {
        margin: 25px 0;
    }

    .yorum, .uzman {
        padding: 15px;
    }
}
