/* Custom Mexican Fiesta Theme Accents for Videos y Fotos El Tigre */

@layer utilities {
  .font-serif {
    font-family: 'Cinzel', serif, Georgia, Cambria, "Times New Roman", Times, serif;
  }
  .font-sans {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
}

/* Smooth Scrolling and Custom Scrollbar */
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #d97706;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}

/* Glowing Border Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
  }
}

.hero-card-glow {
  animation: pulseGlow 4s infinite ease-in-out;
}

/* Custom Gallery Filter Buttons */
.gallery-filter-btn.active {
  background-color: #f59e0b !important;
  color: #0f172a !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
