/* Top Header Styles */
.top-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f6f6f5;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .utilities a {
    color: #9a562a; /* Brown text color */
    font-weight: bold;
    margin-right: 15px;
    text-decoration: none;
}

.top-header .utilities a:hover {
    text-decoration: underline;
}
/* Main Navbar */
.navbar {
    background-color: #f0941c !important; /* Primary Orange */
    padding: 15px 20px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Navbar Links */
.navbar .nav-link {
    color: white !important; /* White text */
    font-weight: bold !important;
    padding: 10px 15px !important;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out !important;
}

/* Hover & Active Effect */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #9a562a !important; /* Dark brown hover */
    background-color: transparent !important;
}
.navbar .dropdown-menu {
    background: white !important;
    border: 2px solid #f0941c !important; /* Orange border */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    display: none !important;
}
/* Make sure only the active item stays highlighted */
.navbar .dropdown-menu .dropdown-item {
    color: #9a562a !important; /* Brown text */
    background-color: white !important;
    font-weight: bold !important;
    padding: 12px 20px !important;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out !important;
}
/* Hover effect */
.navbar .dropdown-menu .dropdown-item:hover {
    background: #f0941c !important;
    color: white !important;
}
/* Fix issue where multiple items remain active */
.navbar .dropdown-menu .dropdown-item.active {
    background: #f0941c !important;
    color: white !important;
}

/* Fix dropdown indicator */
.navbar .dropdown-toggle::after {
    border-top: 6px solid white !important;
    border-right: 5px solid transparent !important;
    border-left: 5px solid transparent !important;
}

/* Responsive fix for mobile */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}
/* Navbar Button (Customer Login) */
.customer-login {
    background-color: white !important;
    color: #f0941c !important;
    font-weight: bold !important;
    padding: 8px 16px !important;
    border-radius: 5px !important;
    transition: background 0.3s ease !important;
}

.customer-login:hover {
    background-color: #9a562a !important;
    color: white !important;
}
