/* Theme Name: Şampiyon Premium Theme
Author: Weborenda Yazılım
Version: 1.5.0
*/

:root {
    --primary: #FFCC00;          /* Şampiyon Altını */
    --primary-hover: #E6B800;
    --bg-dark: #0A0D10;         /* Ultra Derin Siyah */
    --bg-card: #13171C;         /* Premium Gri/Siyah Kartlar */
    --border-color: #222930;    /* Keskin Endüstriyel Çizgiler */
    --text-light: #F5F5F7;      /* Apple Beyazı */
    --text-muted: #86868B;      /* Apple Grisi */
    --success: #28C76F;         /* Satış/Onay Yeşili */
}

* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- PREMIUM FORM VE INPUT DETAYLARI --- */
input[type="text"], input[type="tel"], input[type="date"], select, textarea {
    width: 100%;
    padding: 14px 16px;
    background: #181E24 !important;
    border: 1px solid var(--border-color) !important;
    color: #FFF !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary) !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.15) !important;
    background: #1C232A !important;
}

/* --- MİKRO ETKİLEŞİMLER (HOVER EFFECTS) --- */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- NAVIGASYON MENÜ TASARIMI --- */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.main-nav .current-menu-item a, .main-nav a:hover {
    color: var(--primary);
}