/* ─── Base ─────────────────────────────────────────── */
body {
  font-family: 'Jost', sans-serif;
  background-color: #FAF7F2;
  color: #3D2B1F;
}

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ─── Navbar ───────────────────────────────────────── */
.nav-scrolled {
  background: rgba(13, 43, 62, 0.97) !important;
  backdrop-filter: blur(8px);
}

.nav-inner {
  height: 9rem;
  transition: height 0.3s ease;
}

.nav-scrolled .nav-inner {
  height: 6rem;
}

.nav-logo {
  width: 9rem;
  height: 9rem;
  display: block;
  transition: width 0.3s ease, height 0.3s ease;
}

.nav-scrolled .nav-logo {
  width: 6rem;
  height: 6rem;
}

/* ─── Homepage hero slideshow ───────────────────────── */
.hero-slideshow {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 20s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -5s; }
.hero-slide:nth-child(3) { animation-delay: -10s; }
.hero-slide:nth-child(4) { animation-delay: -15s; }

.hero-gradient {
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13, 43, 62, 0.7),
    rgba(13, 43, 62, 0.4),
    rgba(13, 43, 62, 0.8)
  );
}

@keyframes heroFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}
