/* ===========================================================
   Πάμε Μαζί Μια Βόλτα — custom styles (on top of Tailwind)
   =========================================================== */

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Nunito Sans', sans-serif;
}

.font-heading {
  font-family: 'Comfortaa', sans-serif;
}

.font-display {
  font-family: 'Caveat', cursive;
}

/* Brand wordmark gradient text, mirrors the two-tone logo lettering */
.brand-gradient {
  background-image: linear-gradient(90deg, #1E3A5F 0%, #1E3A5F 45%, #5C9279 55%, #5C9279 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky header shadow state */
header.scrolled {
  box-shadow: 0 4px 20px -8px rgba(30, 58, 95, 0.25);
}

/* Mobile nav panel */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

#mobile-menu.open {
  max-height: 28rem;
}

/* Decorative section divider wave */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
}

/* Focus visibility (kept intentionally strong for accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #E8B96A;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Card hover lift */
.lift-on-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lift-on-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -12px rgba(30, 58, 95, 0.25);
}

/* Step number badge */
.step-badge {
  font-family: 'Comfortaa', sans-serif;
}

/* Illustration placeholders (used until real photography is added) */
.illustration-tile {
  background: linear-gradient(135deg, #8FB9D8 0%, #5C9279 100%);
}
