/* Navbar Styling */
.navbar {
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c17250 !important;
}

.navbar-brand:hover {
  color: #d4915e !important;
}

.nav-link {
  font-weight: 500;
  color: #6b5548 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #c17250 !important;
}

.user-dropdown {
  font-weight: 600;
  color: #3d2817 !important;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  color: #3d2817;
}

.dropdown-item:hover {
  background: #fef5f0;
  color: #c17250;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .search-form {
    margin: 1rem 0;
    max-width: 100%;
  }
}
