/* Navbar height to accommodate the 80px logo */
.navbar {
  min-height: 80px;
}

/* Logo size (as previously set) */
.logo-wrapper .navbar-logo {
  height: 80px;
  width: auto; /* Maintain aspect ratio (~320px for 4:1 ratio) */
}

/* Nav link styles for desktop */
.nav-link {
  font-size: 1.25rem; /* 20px */
  line-height: 1.25; /* Align text vertically */
  padding: 0.75rem 1.25rem; /* More clickable area */
}

/* Space between nav items */
.nav-item {
  margin-right: 10px;
}

/* Vertically center nav links with the logo */
.navbar-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Adjustments for mobile/offcanvas */

/* Modern dropdown style */
.dropdown-menu {
  border: none !important;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  background-color: #fff;
  transition: all 0.3s ease;
  min-width: 200px;
}

/* Menu items */
.dropdown-item {
  padding: 0.6rem 1.2rem;
  color: #333;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #007bff;
  border-radius: 6px;
}

 /* Navbar links hover effect */
  .hover-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2a8dd4;
    transition: width 0.3s ease;
  }
  
  .hover-link:hover::after,
  .hover-link.active::after {
    width: 60%;
  }
  

/* Divider styling if needed */
.dropdown-divider {
  margin: 0.3rem 0;
  border-color: #eee;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
