html {
  scroll-behavior: smooth;
}

.bg-wine {
  background-color: #8E1D09;
}

.text-wine {
  color: #8E1D09;
}

.bg-gold {
  background-color: #E09910;
}

.text-gold {
  color: #E09910;
}

.border-wine {
  border-color: #8E1D09;
}

.border-gold {
  border-color: #E09910;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-overlay {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #E09910;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}
