@import "tailwindcss";

@theme {
  --color-harbor: #2E9BD6;
  --color-harbor-dark: #1D6E9C;
  --color-harbor-light: #5CB6E3;
  --color-coral: #E8342E;
  --color-coral-dark: #C4221D;
  --color-gold: #C9A227;
  --color-ink: #0a0a0a;
  --color-sand: #F4F4F5;
  --color-line: #E5E5E5;

  --font-display: var(--font-display-family), ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-sans: var(--font-body-family),ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-mono: var(--font-data-family), monospace;
}

html {
  font-size: 106%;
}

body {
  background-color: var(--color-sand);
  color: var(--color-ink);
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 22s linear infinite;
}

@keyframes marqueeSlow {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee-slow {
  animation: marqueeSlow 25s linear infinite;
}

.marquee-pause-on-hover:hover .animate-marquee-slow {
  animation-play-state: paused;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.9s ease-out forwards;
}

.animate-fade-in-up:nth-child(1) { animation-delay: 0ms; }
.animate-fade-in-up:nth-child(2) { animation-delay: 170ms; }
.animate-fade-in-up:nth-child(3) { animation-delay: 290ms; }
.animate-fade-in-up:nth-child(4) { animation-delay: 460ms; }
.animate-fade-in-up:nth-child(5) { animation-delay: 590ms; }
.animate-fade-in-up:nth-child(6) { animation-delay: 690ms; }
.animate-fade-in-up:nth-child(7) { animation-delay: 880ms; }
.animate-fade-in-up:nth-child(8) { animation-delay: 970ms; }
.animate-fade-in-up:nth-child(9) { animation-delay: 1050ms; }
.animate-fade-in-up:nth-child(10) { animation-delay: 1270ms; }
.animate-fade-in-up:nth-child(11) { animation-delay: 1500ms; }
.animate-fade-in-up:nth-child(12) { animation-delay: 1730ms; }

.reveal {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.reveal-d0 { animation-delay: 0ms; }
.reveal-d1 { animation-delay: 150ms; }
.reveal-d2 { animation-delay: 300ms; }
.reveal-d3 { animation-delay: 450ms; }
.reveal-d4 { animation-delay: 600ms; }
.reveal-d5 { animation-delay: 750ms; }
.reveal-d6 { animation-delay: 900ms; }