/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.arriba{
  background-color:#90c858 ;
   padding: 15px 30px;
   display: flex;
  justify-content: space-between;
  align-items: center;
}
.arriba .phone a{
  margin-left: 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* Header */
header {
  background-color: white;
  color: #ff6f00;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img{
   width: 30% !important;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ff6f00;
  font-weight: 500;
}

.hero {
  background-image: url('img/hotel-generic.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 205px 50px ;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.btn {
  background-color: #90c858;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

/* Sections */
.info-section {
  padding: 60px 20px;
  text-align: center;
}

.info-section img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 15px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card img {
  max-width: 100%;
  border-radius: 8px;
}

.amenities {
  list-style: none;
  margin-top: 20px;
}

.amenities li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Reservation form */
.reservation {
  background-color: #fff3e0;
  padding: 40px 20px;
  text-align: center;
}

.reservation form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.reservation input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* Contact and Footer */
.footer-info {
  background-color: #dcedc8;
  padding: 40px 20px;
  text-align: center;
}

footer {
  background-color: #90c858;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

footer a {
  color: #fff59d;
  margin: 0 5px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin-left: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

}

.mitad-derecha .content h2{
  font-size: 57px;
  text-align:left;
}

.mitad-derecha .content p{
  font-size: 19px;
}
/* contenedor */

.contenedor {
  display: flex; /* Coloca los divs hijos uno al lado del otro */
  width: 100%; /* Ocupa todo el ancho de la pantalla o de su padre */
  height: 100vh; /* Ocupa el 100% del alto de la vista (puedes ajustarlo) */
}

.mitad-izquierda, .mitad-derecha {
  flex: 60%; /* Cada mitad ocupa el 50% del espacio del contenedor */
  /* o puedes usar: */
  /* width: 50%; */
}

/* Estilos adicionales opcionales */
.mitad-izquierda {
  background-color: white;
}

.mitad-derecha {
  background-color: white;
}
