/* Navbar styles */

.navbar {
    font-size: 23px;
    z-index: 1000;
    background-color: rgb(31, 76, 122);
    padding-bottom: 12px;
}

.nav-link {
    color: white;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

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

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

.navbar-brand img {
    transition: transform 0.3s ease;
}

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

/* Mobile navbar styles */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        font-size: 18px;
        padding-bottom: 8px;
    }
    
    .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .navbar {
        font-size: 16px;
    }
    
    .navbar-brand img {
        height: 50px;
    }
}
