/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Menu */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.logo {
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background: #ffcc00;
  color: #333;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Secciones */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
/* Galería de habitaciones */
.habitaciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.habitaciones article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.habitaciones article:hover {
  transform: scale(1.03);
}

.habitaciones img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.habitaciones h3 {
  margin: 15px;
  font-size: 20px;
  color: #203a43;
}

.habitaciones p {
  margin: 0 15px 15px;
  color: #555;
}
/* Galería en fila */
.galeria {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.habitacion {
  text-align: center;
  max-width: 300px;
}

.habitacion h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #004488;
}

.habitacion img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

.habitacion img:hover {
  transform: scale(1.05);
}

.habitacion .descripcion {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

/* Galería general  tipo album */
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.galeria img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* Modal estilo */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-size: 40px;
  user-select: none;
  transform: translateY(-50%);
}

.prev { left: 10%; }
.next { right: 10%; }

.prev:hover, .next:hover {
  color: #00aaff;
}


h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #203a43;
  font-size: 30px;
}

/*estilos del mapa */
.mapa {
  text-align: center;
  padding: 50px 20px;
}

.mapa h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #203a43;
}

.mapa p {
  margin-bottom: 20px;
  color: #555;
}

iframe {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* estos son los estilos de contactos */
.contacto {
  background:#f9f9f9;
  color: #000000;
  text-align: center;
  padding: 80px 20px;
}

.contacto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contacto p {
  color: #000000;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contacto-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contacto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #001f3f;
  background: #FFD700;
  width: 220px;
  height: 160px;
  border-radius: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.contacto-card:hover {
  transform: translateY(-5px);
  background: #f9f9f9;
}

.contacto-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5));
}


.whatsapp {
  background: #25D366;
  color: white;
}
.whatsapp:hover {
  background: #1EBE5B;
}

.gmail {
  background: #EA4335;
  color: white;
}
.gmail:hover {
  background: #C23321;
}


/* Footer */
footer {
 background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  position: center;
  color: #ffffff;
  text-align: center;
  padding: 8px 15px;
  border-radius: 6px;
  margin-top: 40px;
 
 

}


