/* Enhanced Navbar Styling with Light Tan Background */
.custom-navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  background: #f9e8d0 !important;
  box-shadow: 0 4px 20px rgba(74, 45, 19, 0.15);
  border-bottom: 2px solid rgba(219, 43, 40, 0.1);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  min-height: 160px;
}

.custom-navbar:hover {
  box-shadow: 0 6px 25px rgba(74, 45, 19, 0.2);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo styling */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo {
  height: 70px;
  width: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.brand-text {
  color: #db2b28;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navigation links */
.navbar-nav-custom {
  margin-left: auto;
  gap: 1rem;
}

.nav-link-custom {
  color: #6b4019 !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-custom:hover, .nav-link-custom.active {
  background-color: rgba(219, 43, 40, 0.1);
  color: #db2b28 !important;
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 1.25rem;
}

/* Mobile navigation */
.navbar-toggler-custom {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: rgba(219, 43, 40, 0.1);
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

@media (max-width: 992px) {
  .custom-navbar {
    min-height: 130px;
  }
  
  .navbar-logo {
    height: 50px;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  .navbar-nav-custom {
    margin-top: 1rem;
    gap: 0.5rem;
  }
}
