/* Navbar Styles */
.navbar {
    background: linear-gradient(270deg, rgba(1, 11, 31, 0.25) 0%, rgba(35, 61, 125, 0.25) 100%);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1);
    z-index: 1000;
    width: 100%;
}

.navbar-scrolled {
    padding: 10px 0;
    background: linear-gradient(270deg, #010B1F 0%, #233D7D 100%);
}

.navbar-brand img {
    filter: brightness(2);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item {
    margin: 0 12px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #245577;
}

.login-btn, .register-btn {
    padding: 8px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-block;
    text-align: center;
}
.d-flex {
    display: flex !important;
    gap: 10px;
}
a.login-btn.me-2 {
    font-size: 18px;
    font-weight: 400;
}

.login-btn {
    background-color: #fff;
    color: rgba(236, 28, 36, 1);
}

.login-btn:hover {
    background-color: #e51e25;
    color: #ffffff;
}

.register-btn {
    color: #ffffff;
    background-color: #e51e25;
    border: 1px solid #e51e25;
}

.register-btn:hover {
    background-color: #c71218;
    border-color: #c71218;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: rgba(19, 31, 53, 0.8);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .d-flex {
        margin-top: 15px;
        justify-content: center;
    }
}
img.logo-white {
    width: 100%;
    max-width: 230px;
    height: auto;
    max-height: 55px;
}
a.nav-link.white {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 992px) {
    img.logo-white{
        max-height: 40px;
    }
}

@media only screen and (max-width: 860px) {
 .login-btn, .register-btn {
padding: 5px 10px;
}
img.logo-white {
max-height: 40px;
max-width: 150px;
}
}


@media only screen and (max-width: 860px) {
 .login-btn, .register-btn {
padding: 5px 10px;
}
img.logo-white {
max-height: 40px;
max-width: 150px;
}
}
