/* styles.css - ŞIRDANCI sitesi için Türk esintili güzel tasarım */
/* Türk bayrağı esintili ama abartısız: Kırmızı, beyaz ve hafif altın-tonları */
/* Tüm dış kaynaklar YOK - sadece yerel sistem fontları */

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Windows + macOS + Linux varsayılan */
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

/* Kontrastlı blok ayrımı */
.section {
    margin: 40px 0;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* Alternatif renkler - Türk kırmızısı ve beyaz ağırlıklı */
.section:nth-child(odd) {
    background: #ffffff;
    border-left: 8px solid #E30A17; /* Türk bayrağı kırmızısı */
}

.section:nth-child(even) {
    background: #fdfdfd;
    border-left: 8px solid #c00d17;
}

/* İlk teklif bloğu - hero */
#teklif {
    min-height: 470px;
    background: linear-gradient(135deg, #E30A17 0%, #c00d17 100%);
    color: #ffffff !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    border: none;
    box-shadow: 0 15px 40px rgba(227,10,23,0.3);
}

#teklif h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

#teklif p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 20px;
    opacity: 0.95;
}

#teklif strong {
    font-size: 26px;
    color: #fff8b0;
}

/* Büyük kırmızı buton - hero butonu */
.btn {
    display: inline-block;
    background: #fff;
    color: #E30A17;
    font-weight: bold;
    font-size: 20px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-4px);
    background: #fffbe6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Genel başlıklar */
h1, h2 {
    color: #E30A17;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #E30A17;
    border-radius: 2px;
}

/* Makale öne çıkarma */
article {
    background: #fff8f0;
    padding: 40px;
    border-radius: 14px;
    border: 2px solid #ffd7c4;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(227,10,23,0.07);
}

article h2 {
    font-size: 32px;
    text-align: center;
}

article p {
    margin-bottom: 18px;
    font-size: 17px;
}

/* Ürün listesi */
.products {
    list-style: none;
}

.products li {
    background: #ffffff;
    padding: 18px 25px;
    margin: 15px 0;
    border-radius: 12px;
    border-right: 6px solid #E30A17;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.products li:hover {
    transform: translateX(10px);
}

/* Uzmanlar ve yorumlar */
.specialists div,
.review {
    background: #ffffff;
    padding: 20px;
    margin: 18px 0;
    border-radius: 12px;
    border-left: 5px solid #E30A17;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 17px;
}

.review strong {
    color: #E30A17;
    display: block;
    margin-bottom: 8px;
}

/* Form tasarımı */
#uye-form {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    text-align: center;
}

#uye-form input[type="email"] {
    width: 100%;
    max-width: 480px;
    padding: 18px 20px;
    font-size: 18px;
    border: 2px solid #E30A17;
    border-radius: 50px;
    margin: 20px 0;
    outline: none;
    transition: all 0.3s;
}

#uye-form input[type="email"]:focus {
    border-color: #a00b13;
    box-shadow: 0 0 0 4px rgba(227,10,23,0.15);
}

#uye-form button {
    background: #E30A17;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(227,10,23,0.3);
}

#uye-form button:hover {
    background: #c00d17;
    transform: translateY(-3px);
}

/* Harita */
iframe {
    border-radius: 14px;
    border: 4px solid #E30A17;
    margin-top: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    color: #ddd;
    margin-top: 50px;
    border-radius: 14px 14px 0 0;
}

/* ============= MOBİL UYUMLU ============= */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

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

    #teklif h1 {
        font-size: 36px;
    }

    #teklif p {
        font-size: 18px;
    }

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

    .btn {
        padding: 14px 30px;
        font-size: 18px;
    }

    article {
        padding: 25px 20px;
    }

    article h2 {
        font-size: 28px;
    }

    #uye-form input[type="email"] {
        max-width: 100%;
    }

    .products li,
    .specialists div,
    .review {
        padding: 18px;
    }
}
