/* includes/css/header.css */

:root { 
    --primary: #2c3e50; 
    --accent: #e44d26; 
    --bg: #f4f7f6; 
}

body { 
    font-family: 'Segoe UI', sans-serif; 
    background: var(--bg); 
    margin: 0; 
    padding: 0;
    min-height: 100vh; 
}

header { 
    background: var(--primary); 
    color: white; 
    padding: 1rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    position: relative;
    z-index: 1000;
}

.logo { 
    font-size: 1.5rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: white; 
    text-decoration: none; 
}

.nav-btn {
    color: white; 
    text-decoration: none; 
    background: var(--accent); 
    padding: 8px 15px; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px);
}

/* Mobil Header Ayarı */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
        margin-bottom: 0 !important;
    }
    .logo { font-size: 1.2rem; }
}