@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  overflow-x: hidden;
}

.bubbles-container {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(#00ccff, rgba(0, 255, 255, 0.3));
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-200px); }
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  text-align: center;
}

.header-top {
  text-align: right;
  margin-bottom: 5px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-header {
  height: 120px;
}

.site-title {
  font-size: 2.8rem;
  color: gold;
  text-shadow: 0 0 5px #00ccff, 0 0 10px #00ccff;
}

/* NAVBAR GENERAL */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.main-nav a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #00ccff;
}

/* MENU HAMBURGUESA EN MOVILES */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: gold;
  margin: 4px 0;
  transition: 0.4s;
}

/* HERO */
.hero {
  padding: 60px 20px;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  color: gold;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 20px;
}

.btn-hero {
  background: gold;
  color: black;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-hero:hover {
  background: #e0b800;
}

/* SECCIONES */
section {
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  margin: 20px auto;
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

ul.services-list {
  list-style: none;
  padding: 0;
  color: gold;
}

ul.services-list li::before {
  content: '✓ ';
  color: gold;
  font-weight: bold;
  margin-right: 8px;
}

/* GALERIA */
.section-gallery img {
  width: 90%;
  max-width: 500px;
  margin: 10px 0;
  border-radius: 8px;
}

/* FORMULARIO */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

input, textarea {
  padding: 10px;
  border-radius: 6px;
  border: none;
  width: 100%;
}

/* BOTONES */
.btn-form,
.btn-small {
  background: gold;
  color: black;
  font-weight: bold;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-form:hover,
.btn-small:hover {
  background: #e0b800;
}

/* TARJETA FIDELIDAD */
.loyalty-cards {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.card {
  width: 20px;
  height: 20px;
  border: 2px solid gold;
  border-radius: 50%;
  background-color: transparent;
}

.card.filled {
  background-color: gold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: white;
}

/* BOTON WHATSAPP FIJO */
.whatsapp-fixed {
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 999;
  background-color: gold;
  color: #000;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-fixed:hover {
  background-color: #e0b800;
}

/* BOTON DE MUSICA */
.audio-control {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
}

#audioToggle {
  background: gold;
  color: black;
  font-weight: bold;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#audioToggle:hover {
  background: #e0b800;
}

/* RESPONSIVE - MÓVILES */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .logo-header {
    height: 80px;
  }

  .site-title {
    font-size: 2rem;
  }

  .whatsapp-fixed {
    right: 10px;
    bottom: 90px;
  }

  #audioToggle {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}
.menu-toggle {
  display: none;
  background-color: gold;
  color: black;
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px;
    border-radius: 10px;
  }

  .main-nav.nav-open {
    display: flex;
  }
}
