/*
Theme Name: AI Teknoloji Teması
Theme URI: https://aiteknoloji.com
Author: Sizin Adınız veya Şirket Adınız
Author URI: https://aiteknoloji.com
Description: AI Teknoloji için özel olarak geliştirilmiş, teknoloji ve hukuk odaklı modern bir tema.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, one-column, right-sidebar
Text Domain: aiteknoloji
*/

/* ===== GLOBAL STYLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: rgba(30, 30, 40, 0.8);
    --accent-primary: #ff00e0;
    --accent-secondary: #00f2ea;
    --text-primary: #e1e1e1;
    --text-secondary: #a1a1a1;
    --border-color: rgba(255, 0, 224, 0.3);
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === DİĞER TÜM CSS KODLARINIZ BURADA YER ALIYOR === */
/* ... (Burada sizin gönderdiğiniz ve birleştirdiğim tüm CSS kodları var) ... */

/* DÜZELTME: WordPress'in aktif menü öğesi için kullandığı sınıflar */
.nav-menu .current-menu-item > a {
    color: var(--accent-primary);
}

.nav-menu .current-menu-item > a::after {
    width: 100%;
    background: var(--accent-primary);
}

/* AI Çözümlerimiz gibi özel linkler için düzeltme */
.nav-menu .current-menu-item > a.legal-nav {
    color: #ffd700 !important;
}

.nav-menu .current-menu-item > a.legal-nav::after {
    width: 100%;
    background: #ffd700;
}