@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: radial-gradient(120% 120% at 10% 10%, #0d3a4a 0%, #050b14 52%, #05060a 100%);
  color: #e7edf7;
}

.serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

.hero-glow {
  box-shadow: 0 40px 120px rgba(12, 52, 73, 0.45);
}

.glow-gold-soft {
  box-shadow: 0 0 32px rgba(201, 169, 98, 0.35);
}

.catalog-img-zoom {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.group:hover .catalog-img-zoom {
  transform: scale(1.065);
}

@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.boat-card-enter {
  animation: fade-up-soft 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-fade-in {
  animation: fade-up-soft 1.1s ease-out both;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a962, transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto;
  }
}
