/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(26, 18, 11, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 160, 0, 0.2);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 18, 11, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* LOGO RESİM (ASLA TAŞMAZ) */
.navbar .logo img {
    height: 40px;        /* ← BURASI EN ÖNEMLİ */
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

/* Menü */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-header);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.btn-highlight {
    border: 1px solid var(--accent);
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--accent);
}

.btn-highlight:hover {
    background: rgba(255, 160, 0, 0.1);
    color: var(--white);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* MOBİL LOGO */
@media (max-width: 768px) {
    .navbar .logo img {
        height: 32px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: 0.3s;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
    }
}
