/* Ankara-inspired style with warm contrasts, geometric vibes, and clean typography */

/* ---------- GLOBAL ---------- */
body {
    max-width: 1090px;
    margin: 0 auto;
    padding: 0;
    font-family: "Trebuchet MS", "Verdana", sans-serif;
    background: #f5f2ee;
    color: #222;
}

section {
    padding: 60px 40px;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

p, li {
    line-height: 1.6;
}

/* ---------- BLOCK COLORS ---------- */
#giris { /* Block 1 */
    background: #8c1d04; /* Dark Ankara terracotta */
    color: #fff;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#uzmanlar {
    background: #f0d9b5; /* Warm beige */
    color: #222;
}

#abonelik {
    background: #064663; /* Deep Ankara blue */
    color: #fff;
}

#yorumlar {
    background: #d9c5a3; /* Soft sand */
    color: #222;
}

#urunler {
    background: #b7410e; /* Strong Anatolian clay */
    color: #fff;
}

#egitim-medya {
    background: #eee1cf; /* Pale neutral */
    color: #222;
}

#iletisim {
    background: #1b3a4b; /* Dark teal */
    color: #fff;
}

footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

/* ---------- LINKS & BUTTONS ---------- */
.cta-btn {
    display: inline-block;
    background: #f2a65a;
    color: #222;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ffbe78;
}

button {
    background: #f2a65a;
    color: #222;
    padding: 12px 26px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #ffbe78;
}

/* ---------- FORM STYLING ---------- */
form {
    max-width: 450px;
    margin-top: 20px;
}

input[type="email"], input[type="text"], input[type="hidden"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border: none;
    border-radius: 6px;
}

/* ---------- ARTICLE HIGHLIGHT ---------- */
article {
    background: #fff7e6;
    padding: 30px;
    border-left: 8px solid #f2a65a;
    border-radius: 6px;
    margin-top: 30px;
    color: #222;
}

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

    section {
        padding: 40px 20px;
    }

    #giris {
        align-items: center;
        text-align: center;
    }

    form {
        width: 100%;
    }

    ul li {
        margin-bottom: 10px;
    }
}
