/*
Theme Name: Hızlı Rehber Tema
Description: Mobil öncelikli, Landing Page ve Bottom Nav destekli minimalist rehber teması.
Author: Oktay Bala
Version: 1.0
*/

/* 1. RESET VE TEMEL AYARLAR */
/* Masaüstü (Varsayılan) */
h1 {
    font-size: 32px;
}

/* Tablet ve Mobil (768px altı) */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
}

/* Küçük Mobil (480px altı) */
@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f4f7f6;
    color: #1e293b;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 2. HEADER & LOGO */
.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1000;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

.hamburger {
    font-size: 26px;
    color: #334155;
    cursor: pointer;
}

/* 3. HERO SECTION (Landing Page) */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(32px, 10vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h3 {
    font-size: clamp(18px, 5vw, 26px);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* 4. GUSTO BUTON */
.btn-gusto {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-gusto:active {
    transform: scale(0.95);
}

/* 5. ANA GÖVDE VE İÇERİK */
.site-main {
    flex: 1;
    padding: 40px 15px 100px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.content-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

/* 6. BOTTOM NAV (Mobil Uygulama Menüsü) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav a {
    text-decoration: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.bottom-nav a:active {
    opacity: 0.6;
}

.bottom-nav .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* 7. SPONSORLAR */
.sponsors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
    filter: grayscale(1);
    opacity: 0.6;
}

.sponsors-container img {
    max-height: 40px;
    width: auto;
}

/* 8. RESPONSIVE DOKUNUŞLAR (Yatay-Dikey) */
@media (max-width: 600px) {
    .site-main {
        padding: 20px 10px 100px;
    }

    .content-box {
        padding: 20px;
        border-radius: 12px;
    }
}

/* Yatay Mod (Landscape) Optimizasyonu */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        height: auto;
        padding: 100px 20px;
    }

    .site-header {
        padding: 8px 20px;
    }

    .logo img {
        max-height: 30px;
    }
}