html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #f5f5f5;
  height: 100%;
}
.header {
  background: url(https://juandeclavijo.es/wp-content/uploads/2025/08/Cabecera-Alguena.jpg) no-repeat center center;
  background-size: cover;
  color: white;
  padding: 2em 1em;
  text-align: center;
}
#map { width: 100%; height: 50vh; }
.itinerary { background: white; padding: 1em; }
.itinerary h3 { margin-top: 0; font-size: 1.2em; text-align: center; }
#poi-list { list-style: none; padding: 0; margin: 1em auto; max-width: 600px; }
#poi-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em 1em;
  border: 1px solid #ddd;
  margin-bottom: 0.5em;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
}
#poi-list li:hover, #poi-list li.active {
  background-color: #4285f4;
  color: white;
}
.distance { font-size: 0.9em; color: #666; margin-left: 1em; }
.audio-player {
  display: flex; justify-content: center; align-items: center;
  background: white; padding: 1em; max-width: 700px;
  margin: 0.5em auto 1em; border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); flex-wrap: wrap;
}
.audio-info { flex: 1 1 auto; min-width: 200px; }
.audio-info h3 { margin: 0 0 0.3em 0; font-size: 1.2em; }
#audio-control { width: 100%; outline: none; }
.audio-controls {
  display: flex; align-items: center; gap: 10px; margin-left: 20px;
}
.audio-controls button { background: none; border: none; cursor: pointer; padding: 0; width: 40px; height: 40px; }
.audio-controls button img { width: 100%; height: 100%; object-fit: contain; }
.galeria {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 400px;
  height: 100%; background: #fff; box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  display: flex; flex-direction: column; align-items: center; padding: 1em;
  z-index: 10000; transform: translateX(100%); transition: transform 0.4s ease;
}
.galeria.visible { transform: translateX(0); }
.galeria img { max-width: 100%; max-height: 70vh; margin: 2em 0; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.2); }
#cerrar-galeria {
  position: absolute; top: 10px; right: 10px; background: crimson;
  color: white; border: none; border-radius: 50%; font-size: 1.2em; width: 32px; height: 32px; cursor: pointer;
}
.galeria-btn { background: none; border: none; font-size: 2em; cursor: pointer; margin: 0.5em; color: #333; transition: transform 0.2s; }
.galeria-btn:hover { transform: scale(1.2); }
@media (max-width: 600px) {
  .audio-player { flex-direction: column; align-items: stretch; }
  .audio-controls { margin-left: 0; justify-content: space-around; margin-top: 1em; }
}
.pantalla-inicio {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: url('https://juandeclavijo.es/wp-content/uploads/2025/08/Pantalla_inicio-2-e1754240677540.jpg') no-repeat center center;
  background-size: cover;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
}

.contenido-inicio {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 2em;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 1em;
}

.contenido-inicio h1 {
  margin: 0 0 0.5em;
  font-size: 2em;
}

.contenido-inicio p {
  margin-bottom: 1.2em;
  font-size: 1.1em;
  line-height: 1.5;
}

#btn-empezar {
  background: #4285f4;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

#btn-empezar:hover {
  background: #2a65c4;
}
