/* =============================================
   FETİH - MENÜ / TAB SİSTEMİ
   menu.css - Tab butonları ve navigasyon stilleri
   ============================================= */

/* TAB CONTAINER - Header içinde inline */
#tabs {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
}

/* TAB BUTONLARI - Kompakt Header versiyonu */
.tab-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    min-width: auto;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--text);
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.tab-btn .tab-icon {
    font-size: 14px;
    line-height: 1;
}

.tab-btn .tab-label {
    font-size: 10px;
    opacity: 0.9;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.1);
}

.tab-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    border-color: rgba(255,255,255,0.2);
}

.tab-btn.active .tab-label {
    opacity: 1;
}

/* TAB İÇERİKLERİ */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE - Laptop & Desktop aynı ==================== */
/* 1400px üstü - geniş ekran */
@media (min-width: 1400px) {
    .tab-btn {
        padding: 7px 12px;
    }
    
    .tab-btn .tab-icon {
        font-size: 15px;
    }
    
    .tab-btn .tab-label {
        font-size: 11px;
    }
}

/* 1024px - 1400px - normal laptop/desktop */
@media (min-width: 1024px) and (max-width: 1399px) {
    #tabs {
        gap: 3px;
    }
    
    .tab-btn {
        padding: 5px 8px;
    }
    
    .tab-btn .tab-icon {
        font-size: 13px;
    }
    
    .tab-btn .tab-label {
        font-size: 9px;
    }
}

/* 768px altı - mobil (menü gizlenir, alt bar kullanılır) */
@media (max-width: 768px) {
    #tabs {
        display: none;
    }
    
    .header-country {
        display: none;
    }
}
