/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
  padding: 20px;
}

/* HEADER */
header {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url(../img/Bandera%20Bushido_page-0001.jpg) center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  border-bottom: 5px solid #ffcc00;
}

/* MENU */
header .menu {
  background-color: #8a3333;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 45, 45, 0.6);
  padding: 20px;
  margin-top: 20px;
}

header .menu nav a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: all 0.3s ease;
}

header .menu nav a:hover {
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.9);
  color: #ffcc00;
}

/* TÍTULOS */
h2 {
  color: #ffcc00;
  margin-bottom: 15px;
  text-align: center;
  font-size: 2.5rem;
  border-bottom: 3px solid #ff2d2d;
  padding-bottom: 10px;
}

/* SECCIONES */
section {
  padding: 20px 30px;
  max-width: 1000px;
  margin: 40px auto;
  background: linear-gradient(to bottom right, #1a1a1a, #111);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  border: 2px solid #ffcc00;
  text-align: justify;
}

/* PÁRRAFOS */
section p {
  font-size: 1.1rem;
  color: #f5f5f5;
  margin-bottom: 20px;
}

/* LISTAS */
ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  background-color: #111;
  margin: 10px 0;
  padding: 12px;
  border-left: 5px solid #ff0000;
  color: #fff;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

ul li:hover {
  background-color: #1e1e1e;
}

/* BOTÓN DE ACCIÓN / ENLACE */
a.boton-inscripcion,
a[href*="index.html"] {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 12px 24px;
  background: linear-gradient(to right, #ff0000, #cc0000);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 10px #cc0000;
  transition: background 0.3s ease, transform 0.3s ease;
}

a.boton-inscripcion:hover,
a[href*="index.html"]:hover {
  background: linear-gradient(to right, #ffcc00, #ff2d2d);
  transform: scale(1.05);
  color: #000;
}

/* FOOTER */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  color: #999;
  margin-top: 40px;
  font-weight: bold;
}

/* MENÚ LATERAL */
.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 1100;
  background: #ff0000;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff0000;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: #cc0000;
}

.sidebar {
  position: fixed;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #111;
  color: white;
  overflow-y: auto;
  transition: left 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
  box-shadow: 4px 0 10px rgba(255, 0, 0, 0.4);
}

.sidebar.active {
  left: 0;
}

.sidebar nav a {
  display: block;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.sidebar nav a:hover {
  background-color: #444;
}

.has-submenu > a::after {
  content: ' ▼';
  float: right;
  font-size: 12px;
}

.submenu {
  display: none;
  padding-left: 20px;
  background: #222;
}

.has-submenu:hover .submenu {
  display: block;
}

/* ICONOS DE REDES */
.iconos-redes {
  position: absolute;
  bottom: 20px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iconos-redes a img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.iconos-redes a img:hover {
  transform: scale(1.2);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 10px;
  }

  header .menu nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 15px;
  }

  section p,
  ul li {
    font-size: 1rem;
  }

  footer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  header .menu nav a {
    font-size: 14px;
  }

  h2 {
    font-size: 1.5rem;
  }

  section p,
  ul li {
    font-size: 0.9rem;
    padding: 10px;
  }

  footer {
    font-size: 0.8rem;
  }
}
.mapa-container {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  margin: 2rem auto;
  border: 4px solid #ff0000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
