/* Genel yerleşim */
body {
    max-width: 1090px;
    margin: 0 auto;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #fdf8f4; /* Lokum tonları */
    color: #333;
}

section {
    padding: 40px 25px;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: "Trebuchet MS", sans-serif;
    margin-bottom: 20px;
}

/* Blok renkleri – Türk tatlıları teması */
#offer {
    background: linear-gradient(135deg, #f2c7b1, #f7e3d0); /* Baklava & kaymak tonları */
    text-align: center;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#products {
    background: #fff4e6; /* Lokum rengi */
    color: #4a2c1f;
}

#reviews {
    background: #f7ead7; /* Helva tonu */
    color: #3b2b22;
}

#media-edu {
    background: #fdebd2; /* Kadayıf tonu */
    color: #3d251a;
}

#subscribe-form {
    background: #fff8ec; /* Tahin helvası tonu */
    color: #3a2d26;
}

#specialists {
    background: #f3dcc4; /* Cevizli tatlı tonu */
    color: #2f1f16;
}

#contact {
    background: #f9f1e7;
    color: #2f2f2f;
}

footer {
    background: #d8b59e;
    color: white;
    text-align: center;
    padding: 20px;
}

/* CTA düğmesi */
.cta-button {
    background: #9b3d2e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #b44d3a;
}

/* Form stilleri */
form {
    max-width: 420px;
    margin: 0 auto;
    background: #ffffffb7;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

form input[type="email"],
form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #c9a391;
}

form input[type="email"] {
    background: #fff;
}

form button {
    background: #b44d3a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #8e3727;
}

/* Ürün listesi */
#products ul,
#reviews ul,
#specialists ul {
    list-style: none;
    padding-left: 0;
}

#products li,
#reviews li,
#specialists li {
    margin-bottom: 14px;
    padding-left: 10px;
    border-left: 4px solid #c27d52;
}

/* Makale vurgulama */
#products article {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    margin-top: 25px;
    border-left: 6px solid #b44d3a;
}

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

    section {
        padding: 30px 15px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 20px;
    }

    form {
        padding: 20px;
    }

    iframe {
        height: 260px;
    }
}
