/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
}

/* CONTENEDOR */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENIDO */
.card h2 {
  font-size: 18px;
  margin: 10px;
}

.card p {
  margin: 0 10px 10px;
  color: #555;
}

.precio {
  color: #2e7d32;
  font-weight: bold;
  margin: 10px;
}


/* HEADER */
.header {
  width: 100%;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: absolute;
  width: 100%;
  z-index: 10;
  color: white;
  
}

.logo {
  font-size: 40px;
  font-weight: bold;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.5)
    ),
    url('https://images.unsplash.com/photo-1505691938895-1758d7feb511');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BOTÓN */
.btn {
  background: #ff5a5f;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover {
  background: #e0484d;
}

/* SEPARACIÓN CONTENIDO */
.container {
  margin-top: 40px;
}

/* SECCIÓN CABANAS */
.seccion-cabanas {
  max-width: 1100px;
  margin: 60px auto 20px;
  padding: 0 20px;
}

.seccion-cabanas h2 {
  font-size: 35px;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 80px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.modal input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}