/* Flavor Hub — Custom Styles */

html {
  scroll-behavior: smooth;
}

/* Smooth transition for navbar on scroll */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Hero parallax-like effect */
header {
  background-attachment: fixed;
}

/* Card hover lift */
.group:hover {
  transform: translateY(-4px);
}

/* Form focus glow */
input:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(212, 128, 42, 0.15);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  header {
    min-height: 90vh;
  }
}
