.navbar-custom {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #212529;
}

.navbar-logo {
    max-height: 100px;
    max-width: 100px;
}

.navbar-title {
    font-size: 2.5rem;
    color: white;
    margin-left: 1rem;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white !important;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.2s;
}

.nav-link:hover {
    border-radius: 18px;
    transform: scale(1.05);
    color: #fdf5c7 !important;
}

.nav-link.active {
    color: #dec11b !important;
    transform: scale(1.1); 
}

.nav-link.active:hover {
    color: #dec11b !important;
    transform: scale(1.1);
}

.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%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
