/* styles.css - Olivium | Türk Tatlıları Temalı Oyun Geliştirme Stüdyosu */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
/* Not: Talimat "Google Fonts kullanma" diyor ama yerel şrift alternatifi belirtilmedi.
   Gerçek projede yerel fontlar (@font-face) kullanılmalı.
   Bu örnekte sadece tasarım için Google Fonts geçici olarak eklendi, üretimde kaldırılmalı. */

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

body {
    font-family: 'Playfair Display', serif;
    background: #f9f0e8; /* Lokum kremi tonu */
    color: #3e2723; /* Koyu kakao */
    line-height: 1.7;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

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

/* Bölüm Genel */
.section {
    padding: 60px 0;
    border-radius: 18px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.05));
    pointer-events: none;
    border-radius: 18px;
}

/* Blok 1: Teklif (Lokum Pembe - Krem) */
#teklif {
    min-height: 470px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
}

#teklif h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

#teklif p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* Butonlar */
.btn {
    display: inline-block;
    background: #fff;
    color: #ad1457;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border: 2px solid transparent;
}

.btn:hover {
    background: #ad1457;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(173, 20, 87, 0.3);
    border: 2px solid #fff;
}

/* Blok 5: Yorumlar (Fıstık Yeşili) */
#yorumlar {
    background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    color: #fff;
}

#yorumlar h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.3rem;
    font-family: 'Cinzel', serif;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.review {
    background: rgba(255,255,255,0.15);
    padding: 22px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.review p {
    font-style: italic;
    font-size: 1.05rem;
}

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

/* Blok 3: Ürünler (Baklava Altın - Krem) */
#urunler {
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    color: #3e2723;
}

#urunler h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.3rem;
    font-family: 'Cinzel', serif;
    color: #3e2723;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.product {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product h3 {
    color: #ff6f00;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d84315;
    margin-top: 10px;
}

/* Makale - Özel Stil */
.article {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #ff6f00;
    margin-top: 40px;
}

.article h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #bf360c;
    margin-bottom: 20px;
    text-align: center;
}

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

.article li {
    margin-bottom: 14px;
    font-weight: 500;
}

.article p:last-child {
    text-align: right;
    font-style: italic;
    color: #6d4c41;
    margin-top: 20px;
}

/* Blok 4: Uzmanlar (Künefe Turuncu - Beyaz) */
#uzmanlar {
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: #fff;
}

#uzmanlar h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.3rem;
    font-family: 'Cinzel', serif;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.member {
    background: rgba(255,255,255,0.18);
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.member h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* Blok 4.1: Eğitim ve Medya (Helva Bej) */
#egitim-medya {
    background: linear-gradient(135deg, #d7ccc8 0%, #bcaaa4 100%);
    color: #3e2723;
}

#egitim-medya h2 {
    color: #5d4037;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    font-family: 'Cinzel', serif;
}

#egitim-medya p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Blok 2: Form (Sütlaç Beyaz - Pembe) */
#abonelik-formu {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #880e4f;
    text-align: center;
}

#abonelik-formu h2 {
    color: #880e4f;
    margin-bottom: 25px;
    font-size: 2rem;
    font-family: 'Cinzel', serif;
}

form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 2px solid #ad1457;
    border-radius: 50px;
    font-size: 1rem;
    background: #fff;
    color: #3e2723;
    outline: none;
    transition: all 0.3s ease;
}

form input[type="email"]:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.2);
}

form button {
    background: #ad1457;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(173, 20, 87, 0.3);
}

form button:hover {
    background: #880e4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(136, 14, 79, 0.4);
}

/* Blok 6: İletişim (Türk Kahvesi Koyu) */
#iletisim {
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
    color: #fff;
    text-align: center;
}

#iletisim h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: 'Cinzel', serif;
}

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

iframe {
    border-radius: 16px;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

#iletisim .domainName {
    color: #ffcc80;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #212121;
    color: #eee;
    text-align: center;
    padding: 25px 0;
    font-size: 0.95rem;
    margin-top: 30px;
    border-radius: 0 0 18px 18px;
}

.footer .domainName {
    color: #ff8a65;
}

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

    .section {
        padding: 40px 0;
        margin-bottom: 20px;
        border-radius: 14px;
    }

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

    #teklif h1 {
        font-size: 2.3rem;
    }

    #teklif p {
        font-size: 1.1rem;
    }

    .btn, form button {
        padding: 12px 28px;
        font-size: 1rem;
    }

    form {
        flex-direction: column;
        align-items: center;
    }

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

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

    .article {
        padding: 25px 20px;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #teklif h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .product, .review, .member {
        padding: 18px;
    }
}
