body {
  font-family: 'Poppins', sans-serif;
}

.font-pacifico {
  font-family: 'Pacifico', serif;
}

.font-nunito {
  font-family: 'Nunito Sans', sans-serif;
}

/* Hero Section Styles */
#home {
  background-image: url('../images/home_g2.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

#home .hero-gradient-overlay {
  background: linear-gradient(to right, rgba(241, 109, 10, 0.75) 0%, rgba(175, 95, 12, 0.3) 100%);
}

/* Typography - Poppins font for headings */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

/* Animation delay */
.animate-bounce-delay-05 {
  animation-delay: 0.5s;
}

/* Custom animations */
@keyframes bounce-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-bounce-delayed-1 {
  animation: bounce-delayed 1s ease-in-out infinite;
  animation-delay: 0.1s;
}

.animate-bounce-delayed-2 {
  animation: bounce-delayed 1s ease-in-out infinite;
  animation-delay: 0.2s;
}

.animate-bounce-delayed-3 {
  animation: bounce-delayed 1s ease-in-out infinite;
  animation-delay: 0.3s;
}
