/* ── Sintagi promotional website — custom styles ── */

/* Smooth scroll is handled by Tailwind's scroll-smooth class on <html> */

/* Remove default list styles in nav / footer */
nav ul,
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ensure all anchor tags inherit colour in lists */
footer a,
nav a {
  text-decoration: none;
}

/* Simple fade-in for section headings when they scroll into view */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}
