﻿/* BASIT MENÜ CSS - Sadece Gerekli Stiller */

.menu-navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .menu-navigation .navbar {
        padding: 0;
    }

/* Menü Butonları */
.menu-btn {
    padding: 18px 30px !important;
    font-weight: 600;
    color: #444 !important;
    text-decoration: none !important;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .menu-btn:hover {
        background: #E74C3C;
        color: white !important;
    }

    .menu-btn.active,
    .menu-btn.menu-active {
        background: #235b99;
        color: white !important;
    }

/* Dropdown Menü */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}

.dropdown-item {
    padding: 12px 20px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background: #45ab69;
        color: white;
    }

    .dropdown-item.active {
        background: #235b99;
        color: white;
    }

/* Mobile Toggle */
.navbar-toggler {
    border: 2px solid #235b99;
    margin: 10px;
}

    .navbar-toggler:hover {
        background: #235b99;
    }

/* Mobile Responsive */
@media (max-width: 991px) {
    .menu-btn {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}
