/* Navbar Styles */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 50;
    background-color: transparent;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #B82132;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: slide-down 0.5s forwards;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-link {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Banner/Hero Styles */
.bannerHome {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    margin: 0;
    padding: 0;
}

.bannerHome .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.bannerContent {
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .bannerContent {
        padding: 0;
    }
}
