/*
Theme Name: Taksim V1
Theme URI: https://www.burdurtaksi.com.tr
Author: AI Developer
Description: PHP 7.3.4 - 8.3 uyumlu, sarı-siyah konseptli, mobil öncelikli (Mobile-First) tam responsive premium taksi teması.
Version: 1.2.0
Text Domain: taksim-v1
*/

:root {
    --primary-color: #F2A900;
    --bg-dark: #111111;
    --bg-light: #1c1c1c;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; }
a { color: var(--text-light); text-decoration: none; }

/* Header & Mobil Menü Tasarımı */
.site-header { background: var(--bg-light); padding: 15px 0; border-bottom: 3px solid var(--primary-color); position: relative; z-index: 9999; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; }

.logo-container { text-align: center; width: 100%; margin-bottom: 15px; }
.logo-container img { max-height: 70px; width: auto; max-width: 100%; height: auto; display: inline-block; }

/* Mobil Menü (Dikey ve Akordeon Yapı) */
.main-navigation { width: 100%; }
.main-navigation ul { list-style: none; display: flex; flex-direction: column; background: #050505; width: 100%; padding: 0; margin: 0; }
.main-navigation li { border-bottom: 1px solid #1a1a1a; position: relative; width: 100%; }
.main-navigation li a { display: block; padding: 12px 15px; font-weight: bold; color: #fff; font-size: 14px; transition: 0.3s; }
.main-navigation li a:hover { background: var(--primary-color); color: #000; }

/* Mobil Alt Menülerin Açılması */
.main-navigation ul ul { display: none; background: #111; padding-left: 15px; }
.main-navigation li:hover > ul { display: block; }

/* Hero / Slider / Video Bölümü (Mobilde Tam Sığma Garantili) */
.hero-section { position: relative; width: 100%; height: 50vh; min-height: 300px; overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; }
.hero-media { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; position: absolute; top: 0; left: 0; z-index: 1; }
.hero-overlay { position: relative; z-index: 2; width: 90%; text-align: center; padding: 10px; }
.hero-overlay h1 { font-size: 1.8rem; color: var(--primary-color); text-transform: uppercase; margin-bottom: 15px; text-shadow: 2px 2px 4px #000; font-weight: 800; line-height: 1.3; }

/* Buton Mobilde Taşmaz ve Tam Ortalanır */
.taxi-call-btn { display: inline-block; background: var(--primary-color); color: #000 !important; font-size: 1.3rem; font-weight: 900; padding: 12px 25px; border-radius: 50px; border: 2px solid #000; box-shadow: 0 4px 15px rgba(242,169,0,0.4); text-transform: uppercase; max-width: 100%; word-wrap: break-word; }

/* YENİ: Ana Sayfa Slider Altı Hakkımızda Tanıtım Bölümü */
.home-about-section { background: var(--bg-light); border-bottom: 2px solid #222; padding: 40px 0; width: 100%; }
.about-grid { display: flex; flex-direction: column; gap: 25px; align-items: center; }
.about-img-col { width: 100%; text-align: center; }
.about-img-col img { max-width: 100%; height: auto; border-radius: 6px; border: 2px solid var(--primary-color); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.about-text-col { width: 100%; }
.about-text-col h2 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; position: relative; }
.about-text-col p { color: #eee; font-size: 15px; line-height: 1.7; text-align: justify; }

/* İçerik Alanları */
.page-wrapper { padding: 30px 0; min-height: 300px; }
.page-content { background: var(--bg-light); padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary-color); width: 100%; box-sizing: border-box; }

/* Reklam Alanı */
.ads-container { max-width: 1200px; margin: 15px auto; text-align: center; padding: 8px; background: #000; border: 1px dashed var(--primary-color); width: 90%; }

/* Footer */
.site-footer { background: #000; border-top: 3px solid var(--primary-color); padding: 30px 0; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 25px; text-align: center; }
.footer-col { font-size: 0.9rem; color: #ccc; }
.footer-col iframe { width: 100% !important; border: 0; height: 180px; border-radius: 4px; }

/* -------------------------------------------------------------
   MASAÜSTÜ VE TABLET DÜZENLEMESİ (Gelişmiş Ekranlar)
   ------------------------------------------------------------- */
@media (min-width: 768px) {
    .container { flex-direction: row; align-items: center; justify-content: space-between; }
    .logo-container { width: auto; margin-bottom: 0; text-align: left; }
    .main-navigation { width: auto; }
    .main-navigation ul { flex-direction: row; justify-content: flex-end; background: transparent; }
    .main-navigation li { border-bottom: none; width: auto; }
    .main-navigation li a { padding: 10px 15px; font-size: 15px; }
    .main-navigation ul ul { position: absolute; top: 100%; left: 0; width: 200px; background: #050505; padding-left: 0; }
    
    .hero-section { height: 60vh; }
    .hero-overlay h1 { font-size: 3.2rem; }
    .taxi-call-btn { font-size: 1.7rem; padding: 15px 40px; }
    
    /* Hakkımızda Yan Yana Görünüm */
    .about-grid { flex-direction: row; justify-content: space-between; }
    .about-img-col { width: 40%; text-align: left; }
    .about-text-col { width: 55%; }
    .about-text-col h2 { font-size: 2.2rem; }
    
    .footer-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
