/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* Ana Renkler */
:root {
    --primary-color: #FFA914;
    --dark-color: #191919;
    --white-color: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e5e5e5;
    --text-color: #333333;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

/* Open Sans Font Sınıfları */
.open-sans-light {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-regular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-medium {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-semibold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.open-sans-extrabold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* Open Sans İtalik Varyantları */
.open-sans-italic {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}

.open-sans-bold-italic {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}

/* DM Serif Text Font Sınıfları */
.dm-serif-text-regular {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
}

.dm-serif-text-regular-italic {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
}

/* Header Stiller */
.site-header {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Modern Header Layout */
.modern-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 70px;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: var(--white-color);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* Modern Scroll Behavior - Header Hide/Show */
.site-header {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll Down - Header gizle, sadece çizgi kalsın */
.site-header.scroll-down {
    transform: translateY(-100%);
    box-shadow: none;
}

.site-header.scroll-down::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #E6950F 100%);
    z-index: 1001;
    animation: slideInFromTop 0.3s ease;
}

/* Scroll Up - Header göster */
.site-header.scroll-up {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDownHeader 0.3s ease;
}

/* Header animasyonları */
@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-20px);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar Optimizasyonu */
.navbar {
    padding: 8px 0 !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    padding: 8px 12px !important;
    transition: all 0.3s ease;
}

/* Category Bar Optimizasyonu */
.category-bar {
    padding: 8px 0;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 110px;
    width: auto;
    transition: all 0.3s ease;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    outline: none;
}

.lang-btn:hover {
    background: rgba(255, 169, 20, 0.1);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 169, 20, 0.3);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.lang-btn span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.current-date {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

/* Navigation Styles */
.navbar {
    text-align: center;
    padding: 8px 0;
}

/* Ana menü öğeleri */
.navbar .nav-link {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 600 !important;
    color: white !important;
    font-size: 16px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative !important;
    background: none !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
}

/* Özel menü öğeleri (Ara ve Editör Seçimleri) */
.navbar .nav-link.special-nav-item {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    font-size: 16px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative !important;
    background: none !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
}

/* Navbar divider */
.navbar-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
    align-self: center;
}

/* Hover efektleri */
.navbar .nav-link:hover {
    color: var(--primary-color) !important;
    background: none !important;
    border-radius: 0 !important;
}

.navbar .nav-link.special-nav-item:hover {
    color: white !important;
    background: none !important;
    border-radius: 0 !important;
}

/* Alt çizgi animasyonu - ana menü */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 80%;
}

/* Alt çizgi animasyonu - özel menü öğeleri */
.navbar .nav-link.special-nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    transition: width 0.3s ease;
}

.navbar .nav-link.special-nav-item:hover::after {
    width: 80%;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark-color);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        padding: 10px 0;
    }
    
    .navbar-divider {
        display: none;
    }
    
    .navbar .nav-link,
    .navbar .nav-link.special-nav-item {
        padding: 10px 15px !important;
        text-align: left !important;
    }

    .site-logo {
        max-height: 45px;
    }

    .top-bar {
        padding: 10px 0;
    }

    .current-date {
        font-size: 12px;
    }
    

}

@media (max-width: 767.98px) {
    .header-tools {
        justify-content: center;
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .language-switcher {
        order: 1;
    }
    
    .current-date {
        text-align: center;
        order: 2;
        font-size: 12px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 11px;
    }

    .flag-icon {
        width: 14px;
        height: 10px;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 30px 0;
}

/* Footer */
/* Footer Styles */
.site-footer {
    background: #0d0d0d;
    color: #f5f5f5;
    margin-top: auto;
    border-top: 1px solid #333;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-section {
    padding-right: 15px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 200px;
    width: auto;
    height: auto;
    display: block;
}

.footer-title {
    font-family: "DM Serif Text", serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-description {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: "Open Sans", sans-serif;
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #d1d5db;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 169, 20, 0.3);
}

.footer-bottom {
    background: #000000;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.copyright-text,
.tagline-text {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.tagline-text {
    font-style: italic;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-section {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        max-width: 180px;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-logo-img {
        max-width: 160px;
        margin: 0 auto;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-description {
        text-align: center;
        font-size: 13px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-top: 10px;
    }
}

/* Scroll Bar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb733;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* SEO Ana Başlık Stilleri */
.seo-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb733 100%);
    color: var(--dark-color);
    margin-bottom: 30px;
}

.main-title {
    font-family: "DM Serif Text", serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Accessibility - Screen Reader Only Text */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* SEO Responsive */
@media (max-width: 767.98px) {
    .main-title {
        font-size: 2rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .seo-header {
        padding: 15px 0 !important;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    background: #2d2d2d;
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn:active {
    transform: scale(0.95);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn i {
    transition: transform 0.2s ease;
}

.scroll-top-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive Scroll to Top */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Focus States */
.nav-link:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation for Mobile Menu */
.navbar-collapse {
    transition: all 0.3s ease;
}

.collapsing {
    transition: height 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb733 100%);
    color: var(--dark-color);
    padding: 60px 0;
    margin-bottom: 40px;
}

.welcome-banner {
    text-align: center;
}

.hero-title {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.section-title {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

/* Featured News Card */
.featured-news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    transition: all 0.3s ease;
}

.featured-news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-badge.breaking {
    background: #dc3545;
    color: white;
}

.news-badge.editor {
    background: var(--primary-color);
    color: var(--dark-color);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.news-excerpt {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.news-time {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
    color: #999;
    font-size: 14px;
}

.news-category {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* News List */
.news-list {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item-title {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.4;
}

.news-item-meta .news-time {
    font-size: 12px;
    color: #999;
}

/* Category Sections */
.category-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.category-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.category-news-item:last-child {
    border-bottom: none;
}

.category-news-image img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

.category-news-title {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--dark-color);
    line-height: 1.3;
}

.category-news-time {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 11px;
    color: #999;
}

/* Editor Picks */
.editor-pick-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.editor-pick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.editor-pick-image {
    position: relative;
    overflow: hidden;
}

.editor-pick-content {
    padding: 20px;
}

.editor-pick-title {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.4;
}

.editor-pick-excerpt {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Eski category bar stili kaldırıldı */

/* New category navigation styling */
.uc-navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.uc-navbar-item {
    width: 100%;
}

.nav-x {
    display: flex !important;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.nav-x li {
    flex-shrink: 0;
}

.nav-x .category-item {
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    background: none;
}

.nav-x .category-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.uc-horizontal-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Category responsive design */
@media (max-width: 768px) {
    .uc-horizontal-scroll {
        padding: 0 15px;
    }
    
    .nav-x .category-item {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .nav-x .category-item {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Additional Responsive Design for Content */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* ================================ */
/* MOBİL MENÜ RESPONSİVE STİLLER */
/* ================================ */

/* Mobil menü ayırıcısı */
.nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    width: 100%;
}

/* Navbar collapse animasyonu */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Navbar toggle butonu */
.navbar-toggler {
    border: none !important;
    padding: 8px 10px !important;
    font-size: 18px !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobil menü stilleri */
@media (max-width: 991.98px) {
    /* Navbar collapse - kapalı durumda tamamen gizle */
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    /* Navbar collapse - açık durumda stiller */
    .navbar-collapse.show {
        background: var(--dark-color);
        margin-top: 10px;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: block !important;
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    /* Mobil menü scroll bar stilleri */
    .navbar-collapse.show::-webkit-scrollbar {
        width: 6px;
    }
    
    .navbar-collapse.show::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .navbar-collapse.show::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    .navbar-collapse.show::-webkit-scrollbar-thumb:hover {
        background: #ffb94a;
    }
    
    .navbar-nav {
        text-align: left;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        margin: 2px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 169, 20, 0.1);
        padding-left: 15px !important;
        border-radius: 5px;
        transform: translateX(5px);
    }
}

/* Özel menü öğeleri positioning */
.navbar .nav-link.special-nav-item {
    /* Diğer menülerle aynı stiller - sadece positioning için */
}

/* Tablet menü stilleri (iPad ve benzeri) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 12px 6px !important;
        margin: 0 2px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        transform: translateY(-1px);
    }
    
    /* Tablet ayırıcı */
    .nav-separator {
        width: 1px;
        height: 25px;
        background-color: rgba(255, 255, 255, 0.3);
        margin: 0 8px;
        align-self: center;
        display: flex !important;
    }
    
    /* Tablet'te özel menü öğeleri için ek stiller */
    .navbar .nav-link.special-nav-item {
        margin: 0 4px;
        font-size: 12px !important;
    }
}

/* Desktop menü stilleri */
@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        transform: translateY(-2px);
    }
    
    /* Desktop ayırıcı */
    .nav-separator {
        width: 1px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.3);
        margin: 0 15px;
        align-self: center;
        display: flex !important;
    }
    
    /* Desktop'ta özel menü öğeleri için ek stiller */
    .navbar .nav-link.special-nav-item {
        margin: 0 8px;
    }
}

/* Mobilde özel menü öğeleri ayrımı */
@media (max-width: 767.98px) {
    .navbar .nav-link.special-nav-item {
        /* Mobilde de normal stiller, sadece ayrım için */
        margin-top: 5px;
        padding-top: 15px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Ana menü öğeleri animasyonu - soldan geliyor */
    .nav-main-item {
        opacity: 0;
        transform: translateX(-30px);
        animation: slideInLeft 0.4s ease forwards;
    }
    
    .nav-main-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-main-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-main-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-main-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-main-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-main-item:nth-child(6) { animation-delay: 0.35s; }
    .nav-main-item:nth-child(7) { animation-delay: 0.4s; }
    .nav-main-item:nth-child(8) { animation-delay: 0.45s; }
    .nav-main-item:nth-child(9) { animation-delay: 0.5s; }
    .nav-main-item:nth-child(10) { animation-delay: 0.55s; }
    
    /* Özel menü öğeleri animasyonu - sağdan geliyor */
    .nav-special-item {
        opacity: 0;
        transform: translateX(30px);
        animation: slideInRight 0.4s ease forwards;
    }
    
    .nav-special-item:nth-child(13) { animation-delay: 0.6s; }
    .nav-special-item:nth-child(15) { animation-delay: 0.65s; }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* ================================ */
/* ALT KATEGORİ ÇUBUĞU STİLLERİ */
/* ================================ */

/* Alt Kategori Çubuğu */
.category-bar {
    background-color: #191919 !important;
    text-align: center;
    padding: 8px 0;
}

.category-navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-navbar-item {
    width: 100%;
}

.category-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.category-nav li {
    margin: 0 5px;
}

/* Alt kategori linkleri - üst menü stiline benzer */
.category-link {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 600 !important;
    color: white !important;
    font-size: 15px !important;
    padding: 10px 12px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative !important;
    background: none !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
    display: block;
}

/* Hover efekti */
.category-link:hover {
    color: var(--primary-color) !important;
    background: none !important;
    border-radius: 0 !important;
}

/* Alt çizgi animasyonu */
.category-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.category-link:hover::after {
    width: 80%;
}

/* Tablet kategori çubuğu (iPad ve benzeri) */
@media (max-width: 1199.98px) and (min-width: 768px) {
    .category-bar {
        padding: 12px 0;
    }
    
    .category-bar .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .category-nav {
        justify-content: center;
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
        gap: 4px;
    }
    
    .category-nav::-webkit-scrollbar {
        display: none;
    }
    
    .category-nav li {
        margin: 0;
        flex-shrink: 0;
    }
    
    .category-link {
        font-size: 13px !important;
        padding: 10px 14px !important;
        white-space: nowrap !important;
        border-radius: 5px !important;
    }
    
    .category-link:hover {
        background-color: rgba(255, 169, 20, 0.1) !important;
        transform: translateY(-1px);
    }
}

/* Mobil kategori çubuğu */
@media (max-width: 767.98px) {
    .category-bar {
        padding: 10px 0;
        display: block !important;
    }
    
    .category-nav {
        justify-content: flex-start;
        padding: 0 15px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
    }
    
    .category-nav::-webkit-scrollbar {
        display: none;
    }
    
    .category-nav li {
        margin: 0 2px;
        flex-shrink: 0;
    }
    
    .category-link {
        font-size: 14px !important;
        padding: 8px 10px !important;
        border-radius: 4px;
    }
    
    .category-link:hover {
        background-color: rgba(255, 169, 20, 0.1) !important;
    }
}

@media (max-width: 576px) {
    .category-bar {
        padding: 8px 0;
    }
    
    .category-nav {
        padding: 0 10px;
    }
    
    .category-link {
        font-size: 13px !important;
        padding: 6px 8px !important;
        margin: 0 1px;
    }
}

/* ================================ */
/* PRIVACY STICKY BAR STYLES       */
/* ================================ */

/* Privacy Sticky Bar - Ana Sayfa KVKV/GDPR Uyarısı */
.privacy-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.privacy-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    gap: 20px;
}

.privacy-text {
    color: #333;
    font-size: 12px;
    line-height: 1.4;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    flex: 1;
    text-align: left;
}

.privacy-close-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 11px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.privacy-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.privacy-close-btn:active {
    transform: scale(0.95);
}

/* Responsive Privacy Sticky Bar */
@media (max-width: 991.98px) {
    .privacy-bar-content {
        padding: 10px 15px;
        gap: 15px;
    }
    
    .privacy-text {
        font-size: 11px;
    }
    
    .privacy-close-btn {
        font-size: 10px;
        padding: 3px 6px;
    }
}

@media (max-width: 767.98px) {
    .privacy-bar-content {
        padding: 8px 12px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-text {
        font-size: 10px;
        line-height: 1.3;
        text-align: center;
    }
    
    .privacy-close-btn {
        font-size: 9px;
        padding: 3px 6px;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .privacy-bar-content {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .privacy-text {
        font-size: 9px;
        line-height: 1.3;
    }
    
    .privacy-close-btn {
        font-size: 8px;
        padding: 2px 5px;
    }
}

/* ================================ */
/* MOBİL HEADER DÜZENLEMELERİ      */
/* ================================ */

/* Sadece mobil cihazlarda (max-width: 768px) geçerli header düzenlemeleri */
@media (max-width: 768px) {
    
    /* Modern Header Layout - Mobil Optimizasyonu */
    .modern-header-layout {
        min-height: 55px !important;
        padding: 0 15px !important;
        justify-content: space-between !important;
    }
    
    /* Header yüksekliğini optimize et */
    .top-bar {
        padding: 12px 0 !important;
        min-height: auto !important;
    }
    
    /* Logo boyutunu mobil için optimize et */
    .site-logo {
        max-height: 45px !important;
        width: auto !important;
        transition: all 0.3s ease !important;
    }
    
    /* Tarih bilgisini tamamen kaldır */
    .current-date {
        display: none !important;
    }
    
    /* Header araçlarını sağ tarafa hizala */
    .header-tools {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
    }
    
    /* Dil seçici container'ını mobil için optimize et */
    .language-switcher {
        padding: 3px !important;
        gap: 4px !important;
        border-radius: 18px !important;
        background: #f8f9fa !important;
        border: 1px solid #e0e0e0 !important;
        transform: scale(0.95) !important;
    }
    
    /* Dil seçici butonlarını mobil için optimize et */
    .lang-btn {
        padding: 6px 10px !important;
        border-radius: 15px !important;
        font-size: 12px !important;
        gap: 4px !important;
        min-width: auto !important;
    }
    
    /* Flag iconlarını mobil için optimize et */
    .flag-icon {
        width: 16px !important;
        height: 12px !important;
    }
    
    /* Dil seçici text'ini mobil için optimize et */
    .lang-btn span {
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.3px !important;
    }
    
    /* Logo container'ı optimize et */
    .logo-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Navigation ve Category Bar Responsive */
    .navbar {
        padding: 6px 0 !important;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }
    
    .category-bar {
        padding: 6px 0 !important;
    }
    
    /* Mobil scroll davranışı desktop ile aynı - hide/show */
}

/* Çok küçük ekranlar için ek header optimizasyonu */
@media (max-width: 480px) {
    
    /* Modern Header Layout - Küçük ekranlar için */
    .modern-header-layout {
        min-height: 45px !important;
        padding: 0 12px !important;
    }
    
    /* Top bar'ı küçük ekranlar için */
    .top-bar {
        padding: 8px 0 !important;
    }
    
    /* Logo'yu küçük ekranlar için */
    .site-logo {
        max-height: 38px !important;
    }
    
    /* Dil seçiciyi küçük ekranlar için */
    .language-switcher {
        transform: scale(0.85) !important;
        padding: 2px !important;
    }
    
    .lang-btn {
        padding: 4px 8px !important;
        font-size: 10px !important;
    }
    
    .flag-icon {
        width: 14px !important;
        height: 10px !important;
    }
    
    .lang-btn span {
        font-size: 10px !important;
    }
    
    /* Navbar'ı minimal yap */
    .navbar {
        padding: 2px 0 !important;
    }
    
    .navbar-nav .nav-link {
        padding: 4px 8px !important;
        font-size: 13px !important;
    }
    
    /* Category bar'ı minimal yap */
    .category-bar {
        padding: 2px 0 !important;
    }
    
    /* Küçük ekranlarda da hide/show scroll davranışı */
}
