/* styles.css – Gabi Finansal Oyunlar Kulübü – Türk Tatlıları Teması */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');
/* Not: Kullanıcı Google Fonts kullanmamızı yasakladı. Alternatif olarak sistem fontları ve yerel fontlar kullanılacak. */

@font-face {
    font-family: 'Baklava Script';
    src: url('fonts/baklava-script.woff2') format('woff2'),
         url('fonts/baklava-script.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lokum Sans';
    src: url('fonts/lokum-sans.woff2') format('woff2'),
         url('fonts/lokum-sans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lokum Sans', 'Trebuchet MS', Arial, sans-serif;
    line-height: 1.6;
    color: #2c1a0d;
    background: #fffaf0; /* Hafif baklava rengi arka plan */
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    overflow-x: hidden;
}

/* Başlık Fontu: Baklava Script – Türk tatlısı hissi */
h1, h2, h3 {
    font-family: 'Baklava Script', 'Georgia', serif;
    font-weight: 700;
    color: #8b1e3f; /* Kızılcık şerbeti kırmızısı */
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(139, 30, 63, 0.2);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4c430); /* Altın – lokum tozu */
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

/* Bölüm (Section) – Kontrastlı Bloklar */
.section {
    padding: 4rem 0;
    border-bottom: 3px solid #f4c430;
    position: relative;
    overflow: hidden;
}

/* Arka planlar – Türk tatlılarından ilham: Baklava, Lokum, Helva, Kunefe */
#teklif {
    background: linear-gradient(rgba(139, 30, 63, 0.85), rgba(139, 30, 63, 0.85)), url('img/baklava-pattern.jpg') center/cover no-repeat;
    color: #fffaf0;
    min-height: 470px;
    display: flex;
    align-items: center;
    text-align: center;
}

#yorumlar {
    background: #fdf1d5; /* Helva kremi */
    color: #2c1a0d;
}

#urunler {
    background: #f9e4b7; /* Kaymak rengi */
    color: #2c1a0d;
}

#uzmanlar {
    background: #e8f5e8; /* Fıstık yeşili */
    color: #2c1a0d;
}

#uzman-faaliyet {
    background: #fff0f5; /* Gül lokumu pembesi */
    color: #2c1a0d;
    font-style: italic;
}

#abonelik-formu {
    background: #f5f5dc; /* Bej – kadayıf */
    color: #2c1a0d;
}

#iletisim {
    background: #fffaf0;
    color: #2c1a0d;
    border-bottom: none;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Butonlar – Lokum gibi yuvarlak, parlak */
.btn-primary {
    display: inline-block;
    background: linear-gradient(145deg, #d4af37, #b8972a);
    color: #2c1a0d;
    font-weight: 600;
    font-family: 'Lokum Sans', sans-serif;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #f4c430;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(145deg, #f4c430, #d4af37);
}

button.btn-primary {
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.9rem 2.5rem;
}

/* Grid Sistemleri */
.reviews-grid,
.products-grid,
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.review,
.product,
.expert {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f4c430;
}

.review:hover,
.product:hover,
.expert:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.25);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b1e3f;
    margin-top: 0.5rem;
}

/* Makale – Özel çerçeve */
.tip-article {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border: 3px double #d4af37;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.tip-article::before {
    content: '★ En İyi İpuçları ★';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b1e3f;
    color: #fffaf0;
    padding: 0.3rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0 0 12px 12px;
    font-family: 'Baklava Script', serif;
}

.tip-article ol {
    padding-left: 1.5rem;
    margin: 1.2rem 0;
}

.tip-article li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Form */
form {
    max-width: 480px;
    margin: 2rem auto 0;
    text-align: center;
}

form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #8b1e3f;
}

form input[type="email"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-size: 1rem;
    background: #fffaf0;
    color: #2c1a0d;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

form input[type="email"]:focus {
    outline: none;
    border-color: #8b1e3f;
    box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.15);
}

/* Harita */
.map-container {
    margin-top: 2rem;
    border: 3px solid #f4c430;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

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

/* Footer */
.footer {
    background: #2c1a0d;
    color: #fffaf0;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.footer p {
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    #teklif {
        min-height: 420px;
        padding: 2rem 1rem;
    }

    .btn-primary,
    button.btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

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

    .tip-article {
        padding: 1.8rem;
        margin-top: 2rem;
    }

    form {
        max-width: 100%;
    }

    form input[type="email"] {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 10px;
    }

    .container {
        padding: 0 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

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

/* Dekoratif Tatlı Simgesi (CSS ile) */
#teklif::before {
    content: '🍯';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Domain adı gizli span */
.domainName {
    color: #8b1e3f;
    font-weight: 600;
}
