/* Reju-Club Custom Styles */
body {
  background-color: #FAF9F6;
  color: #1F2937;
  font-family: 'Noto Sans JP', sans-serif;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.gold-gradient-text {
  background: linear-gradient(to right, #A8884E, #C8A76A, #A8884E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-border {
  border: 1px solid #C8A76A;
}

/* Animation delays */
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-600 { animation-delay: 600ms; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile menu transition */
.mobile-menu-enter {
  transform: translateX(100%);
  transition: transform 300ms ease-in-out;
}

.mobile-menu-active {
  transform: translateX(0);
}

/* Hero image transition */
.hero-image-transition {
  transition: opacity 2000ms ease-in-out;
}

/* Active nav link indicator */
.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #C8A76A;
}
