/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    background: white !important;
    padding: 0.25rem 0;
    min-height: 60px;
    border-bottom: 2px solid rgba(255, 127, 80, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    height: 60px;
    overflow: visible;
    position: relative;
}

.navbar-brand img {
    height: 130px;
    width: auto;
    filter: none;
    transition: transform 0.3s ease;
    display: block;
    margin-top: -25px;
    margin-bottom: -25px;
    position: relative;
    z-index: 1;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(27, 43, 75, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}