
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f6f6;
  color: #232323;
  scroll-behavior: smooth;
}

header.hero {
  background: linear-gradient( rgba(30, 26, 22, 0.50), rgba(30, 26, 22, 0.63)), 
    url('https://tse2.mm.bing.net/th/id/OIP.Opg9w5IeVpkut2_Kf7Ud4gHaFj?pid=Api') no-repeat center center/cover;
  height: 60vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 10px 28px -5px rgba(40,30,0,0.12);
}

header .hero-content {
  background: rgba(0,0,0,0.52);
  margin: auto;
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 470px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.16);
  animation: fadein 2s;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-30px);}
  to { opacity: 1; transform: translateY(0);}
}

header nav {
  padding: 1.3rem;
  display: flex;
  justify-content: center;
}
header nav ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav ul li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: border-bottom 0.2s, color 0.25s;
  border-bottom: 2px solid transparent;
  font-size: 1.08em;
  letter-spacing: 0.04em;
}
header nav ul li a:hover, header nav ul li a.active {
  border-bottom: 2px solid #ffab2e;
  color: #ffab2e;
}

.btn {
  display: inline-block;
  background: #ffab2e;
  color: #232323;
  padding: 0.8em 1.9em;
  border-radius: 40px;
  font-weight: bold;
  margin-top: 1.3em;
  font-size: 1.18em;
  text-decoration: none;
  transition: background 0.25s, color 0.15s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(80,80,0,0.10);
  letter-spacing: 0.02em;
}
.btn:hover {
  background: #232323;
  color: #fff;
  transform: scale(1.06);
}

section {
  padding: 3em 1em 2.5em 1em;
  max-width: 940px;
  margin: 0 auto;
  background: none;
  animation: fadein 1.3s;
}
section h2 {
  font-size: 2em;
  margin-bottom: 0.6em;
  color: #914f11;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px #ffd5b2be;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2em;
  margin-top: 1.3em;
}
.galeria-grid img {
  width: 100%;
  border-radius: 1em;
  object-fit: cover;
  height: 210px;
  box-shadow: 0 4px 18px rgba(80,80,80,0.11);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.galeria-grid img.zoom-img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px 4px rgba(80,80,80,0.13);
}

table {
  width: 100%;
  margin-top: 1.3em;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px #ffe3c0c3;
}
th, td {
  padding: 0.9em 1em;
  text-align: left;
}
th {
  background: #ffe4b3;
}
td {
  background: #fff8ee;
}
.habitaciones p {
  margin-bottom: 0.7em;
}

ul {
  padding-left: 1.5em;
}

blockquote {
  background: #fff8ee;
  border-left: 5px solid #ffab2e;
  margin: 1.3em 0;
  padding: 1em 1.5em;
  border-radius: 0.5em;
  font-style: italic;
  box-shadow: 0 2px 7px #fae3cc40;
}
blockquote span {
  display: block;
  color: #999;
  font-size: 0.98em;
  margin-top: 0.6em;
}

.pagos .pago-metodos {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 1em 0 1.5em 0;
}
.btn-pay {
  background: #fff;
  color: #232323;
  padding: 0.8em 1.3em 0.8em 1em;
  border-radius: 1.7em;
  font-weight: 500;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 0.7em;
  border: 2px solid #ffab2e;
  text-decoration: none;
  box-shadow: 0 1px 7px #fad59140;
  transition: background 0.16s, transform 0.18s, box-shadow 0.2s;
  position: relative;
}
.btn-pay img.icon-pay {
  height: 28px;
  width: auto;
  margin-right: 2px;
  filter: grayscale(0.2);
  transition: filter 0.18s;
}
.btn-pay:hover, .btn-pay:focus, .pay-hover:active {
  background: #ffab2e;
  color: #232323;
  transform: scale(1.07);
  box-shadow: 0 2px 18px #ffa94030;
}
.btn-pay:hover img.icon-pay {
  filter: grayscale(0);
}

form {
  margin-top: 1.3em;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 16px rgba(80,80,80,0.06);
  padding: 1.2em 2em;
  max-width: 410px;
}
input, textarea {
  width: 100%;
  padding: 0.8em;
  margin: 0.5em 0 1em;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1em;
}
button[type="submit"] {
  background: #ffab2e;
  border: none;
  color: #232323;
  padding: 0.7em 1.4em;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: #232323;
  color: #fff;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  margin-top: 3em;
  font-size: 1em;
}

.ubicacion-flex {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ubicacion-flex > div {
  min-width: 280px;
  flex: 1 1 300px;
}
.ubicacion-flex iframe {
  border-radius: 1em;
  box-shadow: 0 2px 10px #ffd7a650;
}

.tips-list {
  margin-top: 1em;
  background: #fff4e7;
  padding: 0.8em 1.3em;
  border-radius: 1em;
  font-size: 1.08em;
  box-shadow: 0 1px 6px #ffc47b21;
}
.tips-list li {
  margin-bottom: 0.5em;
}

@media (max-width: 900px) {
  .ubicacion-flex {
    flex-direction: column;
    gap: 1em;
  }
  .ubicacion-flex iframe {
    width: 100%;
    min-height: 210px;
    height: 210px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 1em 0.7em;
  }
  .galeria-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 2em 0.4em 1.6em 0.4em;
  }
}
