/* Genel yerleşim */
body {
    max-width: 1090px;
    margin: 0 auto;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fdf8f5;
    color: #2a1a12;
}

section {
    padding: 50px 30px;
    margin-bottom: 20px;
    border-radius: 18px;
}

/* Türk tatlıları tarzı renkler */
#teklif {
    background: #f7c29b; /* kaymak + bal tonu */
    text-align: center;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#urunler { background: #ffe3cc; }
#uzmanlar { background: #ffd1a1; }
#medya { background: #f8bfa6; }
#yorumlar { background: #ffe9d6; }
#form { background: #f7d7b5; }
#iletisim { background: #f5c7a7; }
footer {
    background: #e3a97b;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 18px;
}

h1, h2, h3 {
    color: #2a1a12;
}

/* İlk bloktaki teklif butonu */
#teklif .btn {
    background: #b33900; /* baklava karamel rengi */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}
#teklif .btn:hover {
    background: #7a2500;
}

/* Ürün listesi */
ul li {
    margin-bottom: 10px;
}

/* Makale vurgusu */
article {
    background: #fff7f0;
    border-left: 8px solid #d98252;
    padding: 20px;
    border-radius: 12px;
}

/* Form tasarımı */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}
form input[type="email"] {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #b37c58;
}
form button {
    padding: 14px;
    background: #c45a1c;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
form button:hover {
    background: #933f13;
}

/* Yorumlar */
#yorumlar ul li {
    background: #fffdfb;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e8cab3;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    body { padding: 10px; }
    section { padding: 30px 20px; }
    #teklif { padding: 60px 20px; }
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    .btn { width: 100%; }
    form { width: 100%; }
}
