.navbar {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0000, #ff6a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.2px;
    transition: transform 0.3s ease-in-out;
}

.logo-text:hover {
    transform: scale(1.1);
}

.nav-link {
    color: #343a40 !important;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: #ff0000 !important;
}

.dropdown-menu {
    min-width: 230px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-login {
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 6px 14px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.btn-login:hover {
    background-color: #ff0000;
    color: white !important;
}

.btn-signup {
    background-color: #ff6a00;
    padding: 6px 14px;
    font-size: 14px;
    border: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.btn-signup:hover {
    background-color: #e65c00;
    color: white !important;
}