/* Navbar transparent initially, solid when scrolled */
.navbar-scrolled {
  background-color: rgba(87, 46, 14, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-gradient {
  background: linear-gradient(135deg, #582f0e 0%, #7f4f24 50%, #936639 100%);
}

.section-divider {
  background: linear-gradient(90deg, transparent 0%, #a4ac86 50%, transparent 100%);
  height: 1px;
  width: 100%;
}
