.navbar-custom {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    z-index: 1000;
  }

.navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    background-color: #111111d5;
  }

.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.75);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: rgba(10, 10, 10, 1);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    background-color: rgba(255, 255, 255, 0.85);
    color: rgba(10, 10, 10, 1);
}

.nav-link {
    color: rgba(5, 5, 5, 0.9) !important;
  }

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
    color: rgba(5, 5, 5, 1) !important;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
  }
}

.navbar-brand img {
    height: 45px; 
    transition: filter 0.3s ease, transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}


@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInSlide 0.3s ease forwards;
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

