/* styles.css - Fül Fül Web Sitesi - Adana Temalı Tasarım */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f1e9; /* Adana'nın sıcak, toprak tonları */
    margin: 0 auto;
    max-width: 1090px;
    padding: 0 15px;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(191, 108, 64, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Kapsayıcı */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bloklar için kontrastlı renk şeması */
.block {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Blok 1: Teklif Bloğu - Adana Güneşi */
#teklif {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 50%, #f39c12 100%);
    color: #fff;
    text-align: center;
    padding: 80px 40px;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#teklif::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,30 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: 100% 120px;
    pointer-events: none;
}

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

#teklif p {
    font-size: 1.2rem;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

#teklif strong {
    color: #fff;
    font-weight: 700;
}

/* Ana buton - Adana turuncu tonu */
.btn-primary {
    display: inline-block;
    background: #fff;
    color: #d35400;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.btn-primary:hover {
    background: #f39c12;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Blok 5: Yorumlar - Adana kiremit tonu */
#yorumlar {
    background: #ecf0f1;
    border-left: 8px solid #c0392b;
    padding: 50px 40px;
}

#yorumlar h2 {
    color: #c0392b;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

#yorumlar h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #e74c3c;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.yorum {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-right: 4px solid #e67e22;
}

.yorum strong {
    color: #c0392b;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Blok 3: Ürünler ve Makale - Adana sarısı */
#urunler {
    background: #fef9e7;
    border-top: 6px solid #f39c12;
    padding: 50px 40px;
}

#urunler h2, #urunler h3 {
    color: #d35400;
    margin-bottom: 24px;
    text-align: center;
}

.urun-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.urun-list li {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #8b4513;
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.1);
    border: 1px solid #f39c12;
    transition: all 0.3s ease;
}

.urun-list li:hover {
    background: #fff3e0;
    transform: scale(1.03);
}

/* Makale vurgusu */
#urunler article {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border-left: 6px solid #f39c12;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-top: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
}

#urunler article h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #d35400;
}

#urunler article ol {
    margin: 20px 0;
    padding-left: 20px;
}

#urunler article li {
    margin-bottom: 12px;
    padding-left: 8px;
}

#urunner article p em {
    color: #8b4513;
    font-style: italic;
    display: block;
    text-align: right;
    margin-top: 16px;
}

/* Blok 4.1: Faaliyetler - Adana kahverengisi */
#uzman-faaliyet {
    background: #fdfdfd;
    border-right: 8px solid #8b4513;
    padding: 50px 40px;
    color: #5d4037;
}

#uzman-faaliyet h2 {
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 1.9rem;
    text-align: center;
}

#uzman-faaliyet p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Blok 4: Uzmanlar - Adana krem tonu */
#uzmanlar {
    background: #f5f5f5;
    padding: 50px 40px;
    border-bottom: 6px solid #d35400;
}

#uzmanlar h2 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 36px;
    font-size: 2rem;
}

.uzman {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border: 1px dashed #f39c12;
    transition: all 0.3s ease;
}

.uzman:hover {
    border-style: solid;
    border-color: #e67e22;
}

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

.uzman p {
    color: #7f8c8d;
    font-style: italic;
}

/* Blok 2: Form - Adana turuncusu */
#abonelik-formu {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border: 3px solid #f39c12;
    border-radius: 16px;
}

#abonelik-formu h2 {
    color: #d35400;
    margin-bottom: 24px;
    font-size: 2rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    color: #8b4513;
    font-weight: 600;
}

form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f39c12;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff9f0;
}

form input[type="email"]:focus {
    outline: none;
    border-color: #e67e22;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

.btn-submit {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.3);
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.4);
}

/* Blok 6: İletişim - Adana taşı */
#iletisim {
    background: #eaeaea;
    padding: 50px 40px;
    border-top: 6px solid #c0392b;
    text-align: center;
}

#iletisim h2 {
    color: #c0392b;
    margin-bottom: 24px;
}

#iletisim p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

#iletisim iframe {
    border: 3px solid #f39c12;
    border-radius: 12px;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.95rem;
    margin-top: 40px;
}

.footer p {
    max-width: 800px;
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

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

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

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

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

    .container {
        padding: 0 15px;
    }

    .btn-primary, .btn-submit {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .urun-list {
        grid-template-columns: 1fr;
    }

    #yorumlar h2, #urunler h2, #uzmanlar h2, #abonelik-formu h2 {
        font-size: 1.8rem;
    }

    form input[type="email"] {
        font-size: 1rem;
    }
}

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

    .block {
        padding: 25px 15px;
    }

    .btn-primary, .btn-submit {
        width: 100%;
        padding: 14px;
    }

    #teklif {
        min-height: 380px;
    }
}
