* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

header {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 25px;
}

/* ======================
   GALERÍA / CARRUSEL
====================== */
.galeria {
  max-width: 900px;
  margin: 25px auto;
}

.carousel {
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .carousel img {
    height: 280px;
  }
}

/* ======================
   RESERVA
====================== */
.reserva {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
}

.reserva h2 {
  text-align: center;
}

.reserva input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.reserva button {
  width: 100%;
  padding: 14px;
  background: #2e7d32;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}

.reserva button:hover {
  background: #1b5e20;
}

#infoReserva {
  margin-bottom: 15px;
}

#error {
  color: red;
  display: none;
  font-size: 14px;
}

/* ======================
   FOOTER
====================== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #90caf9;
  text-decoration: none;
}
