/* Header */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
  background: rgba(70, 0, 0, 0.95); backdrop-filter: blur(10px);
  z-index: 1000; border-bottom: 1px solid var(--neutral-200);
  display: flex; align-items: center; transition: transform 0.3s ease;
}
.site-header__inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 1.5rem; font-weight: 700; color: #ffffff; letter-spacing: -0.03em; }
.logo span { color: var(--gold-500); }

/* Navigation (Desktop) */
.nav-desktop { display: none; gap: 2rem; }
.nav-link { font-size: var(--text-sm); font-weight: 500; color: #c4a24e; position: relative; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold-500); transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold-500); }
.nav-link:hover::after { width: 100%; }

@media (min-width: 1024px) { .nav-desktop { display: flex; } .menu-toggle { display: none; } }

/* Hamburger Menu Toggle */
.menu-toggle {
  background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1100;
}
.menu-icon { width: 24px; height: 18px; position: relative; transform: rotate(0deg); transition: .5s ease-in-out; }
.menu-icon span {
  display: block; position: absolute; height: 2px; width: 100%; background: var(--gold-600);
  border-radius: 2px; opacity: 1; left: 0; transform: rotate(0deg); transition: .25s ease-in-out;
}
.menu-icon span:nth-child(1) { top: 0px; }
.menu-icon span:nth-child(2) { top: 8px; }
.menu-icon span:nth-child(3) { top: 16px; }

.menu-open .menu-icon span:nth-child(1) { top: 8px; transform: rotate(135deg); }
.menu-open .menu-icon span:nth-child(2) { opacity: 0; left: -60px; }
.menu-open .menu-icon span:nth-child(3) { top: 8px; transform: rotate(-135deg); }

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--neutral-050);
  z-index: 1050; display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav-overlay.is-active { opacity: 1; pointer-events: auto; }
.mobile-nav-list { text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.mobile-nav-link { font-size: 2rem; font-weight: 600; color: var(--ink-900); }

/* Footer */
.site-footer { background: var(--ink-900); color: var(--neutral-200); padding: 4rem 0 6rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.footer-title { color: var(--white); font-size: 1.25rem; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a:hover { color: var(--gold-500); padding-left: 4px; }
.copyright { border-top: 1px solid var(--ink-700); margin-top: 3rem; padding-top: 2rem; text-align: center; font-size: 0.875rem; color: var(--ink-500); }

/* Sticky Mobile Bottom Bar */
.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05); display: flex; z-index: 990; padding-bottom: env(safe-area-inset-bottom);
}
.sticky-btn { flex: 1; padding: 1rem; text-align: center; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.sticky-btn--whatsapp { background: #075E54; color: white; }
.sticky-btn--call { background: var(--ink-800); color: white; }
@media (min-width: 769px) { .sticky-mobile-cta { display: none; } }

/* --- MOBILE HERO OPTIMIZATION --- */
@media (max-width: 768px) {
    
    /* 1. Hero Yüksekliğini Mobilde Dengele */
    .hero {
        min-height: 85vh; /* Mobilde tam ekran yerine biraz daha kısa olabilir */
        align-items: flex-end; /* İçeriği biraz aşağı alabiliriz veya center kalabilir */
        padding-bottom: 4rem; /* Alttan boşluk */
    }

    /* 2. İçerik Alanını Rahatlat */
    .hero-content {
        text-align: center; /* Mobilde ortalı yazı daha estetik durur */
        padding: 0 1.5rem; /* Kenarlardan boşluk bırakarak yazının ekrana yapışmasını engelle */
        width: 100%;
    }

    /* 3. Başlık (H1) Düzenlemesi - "Kaba" görünümü alır */
    .hero h1 {
        font-size: 2rem !important; /* Daha kibar bir boyut */
        line-height: 1.25; /* Satırları birbirine yapıştırma */
        margin-bottom: 1rem;
        font-weight: 600; /* Çok kalın fontu biraz incelt */
        text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Yazıyı öne çıkar */
    }

    /* 4. Alt Metin (P) Düzenlemesi */
    .hero p {
        font-size: 1rem !important;
        line-height: 1.6; /* Okumayı kolaylaştır */
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.95) !important;
        display: inline-block; /* Genişliği kontrol altına al */
        max-width: 100%;
    }

    /* 5. Butonları Alt Alta veya Daha Düzenli Diz */
    .hero-content div {
        display: flex;
        flex-direction: column; /* Mobilde butonlar alt alta olsun */
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .hero .btn {
        width: 100%; /* Butonlar tam genişlik kaplasın, parmakla basması kolay olsun */
        max-width: 320px; /* Çok da genişlemesin */
        padding: 1rem; /* Dokunma alanını büyüt */
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Mobilde yazının olduğu alt/orta kısmı karartan gradient */
    background: linear-gradient(to top, rgba(14, 17, 22, 0.8) 0%, rgba(14, 17, 22, 0.2) 60%, transparent 100%);
    z-index: 0; /* Resmin üstünde, yazının altında */
}