/* Genel ayarlar - Türkiye temalı tasarım */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: #f8f1e9; /* Türk kahvesi kremi */
    color: #2c1810; /* Koyu kahverengi */
    line-height: 1.7;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    background-image:
        radial-gradient(circle at 20% 80%, #e63946 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, #1d3557 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Başlıklar */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.4rem;
    color: #9b2226;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0 #fff;
}

h2 {
    font-size: 1.8rem;
    color: #1d3557;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #f77f00);
    border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 0.8rem;
}

/* Bloklar - Kontrastlı renk ayrımı */
.section {
    margin: 40px 0;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.12);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: linear-gradient(90deg, #9b2226, #e63946, #f77f00, #fcbf49);
}

/* Blok 1: Teklif (Özel yükseklik ve arka plan) */
#teklif {
    min-height: 470px;
    background: linear-gradient(135deg, #9b2226 0%, #e63946 100%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    border: 3px solid #fff;
}

#teklif h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    font-size: 2.6rem;
}

#teklif p {
    max-width: 800px;
    font-size: 1.15rem;
    margin: 18px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#teklif strong {
    color: #fcbf49;
    font-weight: 800;
}

/* Butonlar - Genel */
.btn {
    display: inline-block;
    background: #fcbf49;
    color: #2c1810;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 191, 73, 0.4);
    border: 2px solid #fff;
}

.btn:hover {
    background: #f77f00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.5);
}

/* Form bloğu */
#abonelik-formu {
    background: #fff;
    border: 2px solid #1d3557;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 500px;
    margin: 0 auto;
}

form label {
    font-weight: bold;
    color: #1d3557;
    font-size: 1.1rem;
}

form input[type="email"] {
    padding: 14px 18px;
    border: 2px solid #a8dadc;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f1faee;
}

form input[type="email"]:focus {
    outline: none;
    border-color: #457b9d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(69, 123, 157, 0.2);
}

form button {
    background: #1d3557;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

form button:hover {
    background: #0b2545;
    transform: translateY(-2px);
}

/* Ürün listesi */
#urunler {
    background: #f1faee;
    border: 2px dashed #457b9d;
}

.product-list {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.product-list li {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    border-left: 6px solid #e63946;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.product-list li:hover {
    transform: translateX(8px);
}

.product-list strong {
    color: #9b2226;
    font-size: 1.2rem;
}

/* Makale - Özel vurgulama */
.article {
    background: #fffaf0;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #fcbf49;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(252, 191, 73, 0.25);
}

.article h3 {
    color: #9b2226;
    text-align: center;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 20px;
}

.article h3::before {
    content: '✦';
    color: #f77f00;
    margin-right: 10px;
}

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

.article li {
    margin-bottom: 12px;
    position: relative;
}

.article li strong {
    color: #1d3557;
}

/* Uzmanlar */
#uzmanlar {
    background: #e9f5ff;
    border: 2px solid #457b9d;
}

.specialist {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 16px;
    border-right: 5px solid #1d3557;
    transition: all 0.3s;
}

.specialist:hover {
    border-right-color: #e63946;
    transform: translateY(-4px);
}

.specialist h3 {
    color: #1d3557;
    font-size: 1.3rem;
}

/* Yorumlar */
#yorumlar {
    background: #fff8f0;
    border: 2px dotted #f77f00;
}

.review {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 18px;
    border-left: 4px solid #fcbf49;
    font-style: italic;
    box-shadow: 0 3px 12px rgba(252, 191, 73, 0.2);
}

.review strong {
    color: #9b2226;
    font-style: normal;
    display: block;
    margin-bottom: 8px;
}

/* İletişim ve Harita */
#iletisim {
    background: #f8f9fa;
    border: 2px solid #1d3557;
}

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

.map-container {
    margin-top: 25px;
    border: 3px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    background: #2c1810;
    color: #fff;
    font-size: 0.95rem;
    margin-top: 50px;
    border-top: 5px solid #e63946;
}

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

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

    .section {
        padding: 25px 20px;
        margin: 25px 0;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    form {
        max-width: 100%;
    }

    .product-list li {
        font-size: 1rem;
        padding: 15px;
    }

    .article {
        padding: 20px;
    }

    iframe {
        height: 300px;
    }
}

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

    h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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