/* styles.css – İstanbul Avluları (Dövme Stambuł) temalı güzel tasarım */
/* İç avlular, mavi çini tonları, sıcak kumtaşı, osmanlı kemerleri esintisi */

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

body {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    background: #f9f5f0; /* Açık kumtaşı avlusu */
    color: #333;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9f5f0"/><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="%23e8e0d8" opacity="0.15"/></svg>');
    background-repeat: repeat;
}

/* Bloklar için kontrastlı renk dönüşümü */
.section {
    margin: 40px 0;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Alternatif arka plan renkleri – avluların gölge-ışık oyunu */
.section:nth-child(odd) {
    background: #ffffff; /* Beyaz çini */
    border: 3px solid #d4a373; /* Altın kumtaşı çerçeve */
}

.section:nth-child(even) {
    background: #2c4a5e; /* Derin İznik mavisi */
    color: #f0f0f0;
    border: 3px solid #e8b923;
}

/* Başlıkların Osmanlı kemeri hizası */
h1, h2 {
    font-family: Georgia, serif;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

h1 {
    font-size: 42px;
    color: #d4a373;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

h2 {
    font-size: 32px;
    color: inherit;
}

/* Osmanlı kemeri dekorasyonu */
h1::before, h2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: linear-gradient(to right, transparent, #d4a373, transparent);
    border-radius: 10px;
}

/* İlk teklif bloku – büyük ve etkileyici */
#teklif {
    min-height: 470px;
    background: linear-gradient(rgba(44,74,94,0.85), rgba(44,74,94,0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232c4a5e" width="1200" height="600"/><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="%231e3a4f"/><circle cx="200" cy="150" r="80" fill="%23d4a373" opacity="0.2"/><circle cx="1000" cy="200" r="120" fill="%23e8b923" opacity="0.15"/></svg>');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

#teklif h1 {
    font-size: 48px;
    color: #e8b923;
    margin-bottom: 20px;
}

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

/* Büyük altın düğme */
.btn {
    display: inline-block;
    background: #e8b923;
    color: #2c0d00;
    padding: 16px 40px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background: #f0d050;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Form stil */
#abonelik-form {
    text-align: center;
    background: #ffffff;
    border: 3px solid #d4a373;
}

#abonelik-form input[type="email"] {
    padding: 16px 20px;
    width: 320px;
    max-width: 90%;
    border: 2px solid #d4a373;
    border-radius: 50px;
    font-size: 18px;
    margin-bottom: 20px;
}

#abonelik-form button {
    background: #e8b923;
    color: #2c0d00;
    border: none;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Fiyat listesi ve makale */
.price-list {
    list-style: none;
    max-width: 700px;
    margin: 30px auto;
}

.price-list li {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    margin: 12px 0;
    border-radius: 15px;
    font-size: 20px;
    border-left: 6px solid #e8b923;
}

/* Makale öne çıkarma */
article {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border: 3px dashed #d4a373;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

article p {
    margin-bottom: 18px;
    text-align: justify;
}

/* Uzmanlar ve yorumlar */
.expert, .review {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    margin: 18px 0;
    border-radius: 15px;
    border-right: 5px solid #e8b923;
    font-style: italic;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #2c4a5e;
    color: #e8e0d8;
    border-top: 5px solid #d4a373;
    margin-top: 50px;
}

/* Mobil uyum */
@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;
    }

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

    .section {
        padding: 40px 20px;
    }

    h1 { font-size: 38px; }
    h2 { font-size: 28px; }

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