/* Ειδικά εφέ και animations για το Mariachi Ritmo */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Noto+Sans+Greek:wght@400;700&display=swap');

.font-alfa {
  font-family: 'Alfa Slab One', cursive;
}
.font-noto {
  font-family: 'Noto Sans Greek', sans-serif;
}

/* Animation για αστέρια */
@keyframes stars {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}
.animate-stars {
  animation: stars 3s infinite ease-in-out;
}

/* Animation για λύρα */
@keyframes lyra-swing {
  0% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  100% { transform: rotate(-5deg); }
}
.animate-lyra-swing {
  animation: lyra-swing 2.5s infinite ease-in-out;
}

/* Animation για μαράκες */
@keyframes maracas-shake {
  0%, 100% { transform: rotate(-8deg); }
  20%, 60% { transform: rotate(8deg); }
  40%, 80% { transform: rotate(-8deg); }
}
.animate-maracas-shake {
  animation: maracas-shake 1.2s infinite linear;
}

/* FadeIn για popups/μενού */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fadeIn {
  animation: fadeIn 0.4s ease;
}

/* Προσαρμογές για cookie banner και popup */
#cookie-banner, #age-popup {
  font-family: 'Noto Sans Greek', sans-serif;
  z-index: 9999;
} 