/* Βασικά στυλ για το Mariachi Viva */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #C62828 0%, #6A1B9A 100%);
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw 12px 5vw;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-family: 'Arvo', serif;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FBC02D;
  text-shadow: 0 2px 8px #0008;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #FBC02D;
}
.mobile-menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.mobile-menu-icon span {
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100vw;
  background: rgba(30,0,40,0.97);
  box-shadow: 0 8px 24px #0006;
  border-radius: 0 0 16px 16px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu li {
  padding: 18px 0;
  text-align: center;
}
/* Βελτιωμένος hero με διακοσμητικά μοτίβα */
.hero {
  background: linear-gradient(120deg, #C62828 0%, #FBC02D 60%, #6A1B9A 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #C62828 0%, #6A1B9A 100%);
  opacity: 0.7;
  z-index: 1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../game/items/pepper.png') repeat-x bottom left/120px, url('../game/items/sombrero.png') repeat-x top right/100px;
  opacity: 0.08;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 10vw 40px 10vw;
}
/* Εφέ φωτεινών "λαμπών" στη hero */
.hero-content::after {
  content: '';
  display: block;
  margin: 32px auto 0 auto;
  width: 180px;
  height: 16px;
  background: repeating-linear-gradient(90deg, #FBC02D, #FBC02D 12px, #fff 12px, #fff 24px);
  border-radius: 8px;
  opacity: 0.7;
  animation: fiesta-lights 1.2s infinite alternate;
}
@keyframes fiesta-lights {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.5); }
}
.hero h1 {
  font-family: 'Arvo', serif;
  font-size: 56px;
  color: #FBC02D;
  text-shadow: 0 4px 16px #000a;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #fff;
  text-shadow: 0 2px 8px #0007;
}
/* Βελτιωμένες Κουμπιά */
.play-btn {
  background: #FBC02D;
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Arvo', serif;
  border: none;
  border-radius: 10px;
  padding: 18px 48px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  margin-bottom: 18px;
  animation: pulse 1.2s infinite;
  transition: background 0.2s, transform 0.2s;
}
.play-btn:hover {
  background: #388E3C;
  transform: scale(1.05);
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #FBC02D55; }
  50% { transform: scale(1.08); box-shadow: 0 0 24px 8px #FBC02D44; }
  100% { transform: scale(1); box-shadow: 0 0 0 0 #FBC02D55; }
}
.age-warning {
  font-size: 1rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 12px;
  display: inline-block;
  box-shadow: 0 2px 8px #0003;
}
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}
section {
  padding: 60px 8vw 40px 8vw;
  max-width: 1200px;
  margin: 0 auto;
}
h2 {
  font-family: 'Arvo', serif;
  font-size: 38px;
  color: #FBC02D;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px #0007;
}
.symbols {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.symbols img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px #0006);
  background: #fff2;
  border-radius: 12px;
  padding: 6px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 24px;
  color: #fff;
  box-shadow: 0 2px 8px #0002;
}
/* Νέα στυλ για τις επιπλέον ενότητες και βελτιωμένος σχεδιασμός */
.night-gallery, .gallery-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.night-gallery img, .gallery-grid img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 4px 16px #0005;
  background: #fff3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.night-gallery img:hover, .gallery-grid img:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 32px #FBC02D88;
}
.secrets-list {
  margin: 24px auto 0 auto;
  max-width: 600px;
  padding: 0 12px;
  list-style: none;
  color: #FBC02D;
  font-size: 1.15rem;
}
.secrets-list li {
  background: rgba(255,255,255,0.08);
  border-left: 6px solid #388E3C;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 8px #0002;
}
/* Βελτιωμένος footer */
footer {
  background: linear-gradient(90deg, #6A1B9A 0%, #C62828 100%);
  color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: 64px;
  box-shadow: 0 -4px 24px #0003;
  padding-bottom: 32px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 5vw 0 5vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand, .footer-links, .footer-social, .footer-icons, .footer-contact, .footer-copy {
  flex: 1 1 220px;
  min-width: 220px;
}
.footer-brand {
  align-items: flex-start;
  margin-bottom: 0;
}
.footer-logo {
  font-family: 'Arvo', serif;
  font-size: 2rem;
  color: #FBC02D;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px #0008;
}
.footer-desc {
  font-size: 1.1rem;
  color: #fff;
  max-width: 600px;
  text-align: left;
  margin-bottom: 10px;
}
.footer-links {
  margin-bottom: 10px;
  text-align: left;
}
.footer-links a {
  color: #FBC02D;
  margin: 0 10px 0 0;
  font-weight: 500;
  text-decoration: underline dotted;
  font-size: 1.08rem;
}
.footer-links a:last-child { margin-right: 0; }
.footer-links a:hover {
  color: #388E3C;
  text-decoration: underline solid;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #FBC02D 0%, #fff0 100%);
  opacity: 0.18;
  margin: 12px 0 18px 0;
  border-radius: 2px;
}
.footer-social {
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.social-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #fff2;
  color: #FBC02D;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 4px;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: #FBC02D;
  color: #6A1B9A;
  transform: scale(1.15);
}
.footer-icons {
  margin-bottom: 10px;
  text-align: left;
}
.footer-contact {
  font-size: 1.08rem;
  margin-bottom: 8px;
  text-align: left;
}
.footer-copy {
  font-size: 1rem;
  color: #fff;
  margin-top: 8px;
  opacity: 0.85;
  text-align: left;
}
/* Pop-up 18+ */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,0,40,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s;
}
.popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.popup-content {
  background: #fff;
  color: #6A1B9A;
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 8px 32px #0007;
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
}
.popup-content h3 {
  font-family: 'Arvo', serif;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #C62828;
}
.popup-content label {
  display: block;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #6A1B9A;
}
.popup-content button {
  background: #FBC02D;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'Arvo', serif;
  cursor: pointer;
  box-shadow: 0 2px 8px #0003;
  transition: background 0.2s, transform 0.2s;
}
.popup-content button:hover {
  background: #388E3C;
  transform: scale(1.05);
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,0,40,0.9);
  color: #fff;
  border-radius: 12px;
  padding: 18px 32px;
  box-shadow: 0 4px 16px #0005;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.4s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner button {
  background: #FBC02D;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cookie-banner button:hover {
  background: #388E3C;
  transform: scale(1.05);
}
.cookie-banner a {
  color: #FBC02D;
  text-decoration: underline;
}
/* Αποκρίσεις για κινητά */
@media (max-width: 900px) {
  .hero h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-content { padding: 40px 4vw 24px 4vw; }
  section { padding: 40px 4vw 24px 4vw; }
  .night-gallery img, .gallery-grid img { width: 60px; height: 60px; }
  .footer-logo { font-size: 1.3rem; }
  .footer-content {
    flex-direction: column;
    gap: 18px 0;
    padding: 24px 4vw 0 4vw;
  }
  .footer-brand, .footer-links, .footer-social, .footer-icons, .footer-contact, .footer-copy {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  nav ul.desktop-menu { display: none; }
  .mobile-menu-icon { display: flex; }
  .mobile-menu { display: flex; }
  .symbols { gap: 12px; }
  .symbols img { width: 44px; height: 44px; }
  .footer-icons img { width: 32px; height: 32px; }
  .night-gallery, .gallery-grid { gap: 10px; }
  .footer-brand, .footer-desc { font-size: 0.98rem; }
  .footer-social { font-size: 0.98rem; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .popup-content { padding: 18px 8px; min-width: 90vw; }
  .cookie-banner { padding: 10px 6px; font-size: 0.95rem; }
  .night-gallery img, .gallery-grid img { width: 40px; height: 40px; }
  .footer-logo { font-size: 1.1rem; }
  .footer-desc { font-size: 0.92rem; }
} 