/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Custom font family for display headings */
.font-display {
  font-family: 'Instrument Serif', serif;
}

/* Custom font for hero title */
.font-hero {
  font-family: 'Lobster Two', cursive;
}

/* Custom font for body text */
.font-sans {
  font-family: 'Inter', system-ui, sans-serif;
}

/* Infinite vertical scroll animation for gallery columns */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.animate-scroll-up {
  animation: scroll-up linear infinite;
}
