/* Genel ayarlar ve merkezleme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    background: #0f212e; /* Adana'nın sıcak gece mavisi */
    color: #f2f2f2;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Kontrastlı blok ayrımı - Adana tarzı sıcak turuncu-kırmızı + derin mavi */
.section:nth-child(odd) {
    background: #0f212e; /* koyu lacivert */
}

.section:nth-child(even) {
    background: #8B1A1A; /* Adana kırmızı (koyu kırmızı) */
    color: #ffffff;
}

/* İlk hero blok özel - büyük ve dikkat çekici */
#hero {
    min-height: 470px;
    background: linear-gradient(rgba(11, 33, 49, 0.85), rgba(11, 33, 49, 0.9)), url('https://images.unsplash.com/photo-1600794602726-3d12ad9e3e56?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 100px 20px;
}

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

#hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: #FF6B00; /* Adana portakal turuncusu */
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background: #ff8c33;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

/* Başlıklar */
h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

h1 { font-size: 42px; }
h2 { font-size: 36px; text-align: center; padding-top: 50px; position: relative; }
h3 { font-size: 24px; }

/* h2 altını Adana kebap şişi gibi çizgi */
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF6B00;
    margin: 15px auto;
    border-radius: 2px;
}

/* Ürün kartları */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.3);
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-10px);
}

.product .price {
    font-size: 32px;
    font-weight: bold;
    color: #FF6B00;
    margin: 15px 0;
}

/* Makale vurgusu */
.article {
    background: #ffffff !important;
    color: #0f212e !important;
    padding: 60px 20px;
    margin: 50px 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.article h2 {
    color: #8B1A1A;
}

.article h2::after {
    background: #8B1A1A;
}

.article ol {
    padding-left: 30px;
    font-size: 18px;
}

.article ol li {
    margin: 18px 0;
}

/* Form bölümü */
.form-section {
    background: #0f212e !important;
    padding: 80px 20px;
    text-align: center;
}

.form-section form {
    max-width: 500px;
    margin: 0 auto;
}

.form-section input[type="email"] {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-section button {
    width: 100%;
    padding: 18px;
    font-size: 20px;
}

/* Uzmanlar */
.experts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.expert {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid #FF6B00;
}

/* Yorumlar */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 40px 0;
}

.review {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
    border-right: 4px solid #FF6B00;
}

.review strong {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #FF6B00;
}

/* Harita */
.map iframe {
    border-radius: 16px;
    border: 4px solid #FF6B00;
    margin-top: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #08151f;
    margin-top: 50px;
    font-size: 14px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    #hero {
        min-height: 500px;
        padding: 80px 20px;
    }

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

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

    h2 {
        font-size: 30px;
        padding-top: 40px;
    }

    .products,
    .experts,
    .reviews {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 32px;
    }

    .container {
        padding: 0 15px;
    }
}
