/* Navigation */
.navbar-collapse .navbar-nav .nav-item a:hover {
    color: #ff523b; /* Changes the color of navigation links to orange when hovered over */
}


/* Media queries for responsive adjustments */
@media (max-width: 768px) {
    .banner-image {
        min-height: 100px; /* Adjusts the banner image's minimum height for smaller devices */
    }
} 

/* Banner */
.banner-image {
    background: url('img/banner.jpg') no-repeat center center / cover;
    min-height: 400px;
}

