/**
 * VideoSat Platform - Header Okunabilirlik Düzeltmeleri
 * Navbar ve header bölümündeki yazıların daha iyi okunabilir olması için
 */

/**
 * VideoSat Platform - Header ve Hero Section Renk Düzeltmeleri
 * Header: Eski haline döndürüldü (kırmızı/transparent)
 * Hero Section: Gri arka plan, siyah yazı, kırmızı butonlar
 */

/* Header eski haline döndürüldü - styles.css'deki varsayılan stiller kullanılacak */

/* Hero Section - Siyah Arka Plan, Açık Gri Yazı, Kırmızı Butonlar */
.hero {
    background: #000000 !important; /* Siyah arka plan */
    padding-top: 5rem !important; /* Navbar yüksekliği için daha fazla padding */
}

.hero-title {
    color: #e5e5e5 !important; /* Açık gri yazı (WCAG AAA uyumlu) */
    background: none !important; /* Gradient kaldırıldı */
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #e5e5e5 !important;
    background-clip: unset !important;
    text-shadow: none !important;
}

.hero-title .gradient-text {
    color: #dc2626 !important; /* Kırmızı vurgu */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #dc2626 !important;
    background-clip: unset !important;
}

.hero-description {
    color: #d1d5db !important; /* Orta açık gri yazı (WCAG AA uyumlu) */
    text-shadow: none !important;
}

.hero-buttons .btn-primary {
    background-color: #dc2626 !important; /* Kırmızı arka plan */
    color: #ffffff !important; /* Beyaz yazı */
    border: 2px solid #dc2626 !important; /* Kırmızı border */
}

.hero-buttons .btn-outline {
    background-color: transparent !important; /* Şeffaf arka plan */
    color: #dc2626 !important; /* Kırmızı yazı */
    border: 2px solid #dc2626 !important; /* Kırmızı border */
}

.hero-buttons .btn-outline:hover {
    background-color: #dc2626 !important; /* Kırmızı arka plan hover */
    color: #ffffff !important; /* Beyaz yazı hover */
}

.hero-stats .stat-label {
    color: #d1d5db !important; /* Açık gri yazı */
}

.hero-stats .stat-number {
    color: #dc2626 !important; /* Kırmızı sayılar */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #dc2626 !important;
    background-clip: unset !important;
}

/* Mobile Navbar - Gri Arka Plan, Siyah Yazı */
@media (max-width: 768px) {
    .nav-menu {
        background-color: #808080 !important; /* Gri arka plan */
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border-top: 2px solid #666666 !important; /* Koyu gri border */
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    .nav-link {
        color: #000000 !important; /* Siyah yazı */
        font-weight: 600 !important;
        font-size: 1.125rem !important; /* Mobilde daha büyük */
        text-shadow: none !important; /* Gölge kaldırıldı */
        border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; /* Siyah border */
    }
    
    .nav-link:hover,
    .nav-link:active {
        background-color: rgba(0, 0, 0, 0.1) !important;
        color: #000000 !important; /* Siyah yazı */
        text-shadow: none !important; /* Gölge kaldırıldı */
    }
    
    .nav-auth {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-auth .btn {
        font-size: 0.875rem !important;
        padding: 0.625rem 1rem !important;
        min-width: 120px; /* Minimum genişlik */
    }
}

/* Scroll durumunda navbar - Gri kal */
.navbar.scrolled {
    background-color: #808080 !important; /* Scroll'da da gri */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Navbar içindeki tüm yazılar için genel düzenleme */
.navbar * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Navbar container - Daha iyi hizalama */
.nav-container {
    padding: 0 1.5rem !important; /* Biraz daha fazla padding */
}

/* Navbar yüksekliği - Daha fazla alan */
.navbar {
    min-height: 4.5rem !important; /* 4rem yerine 4.5rem */
    padding: 0.75rem 0 !important; /* Üst-alt padding */
}

.nav-container {
    height: auto !important; /* Sabit yükseklik yerine auto */
    min-height: 3rem !important;
}

