* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero-section {
  height: 60vh;
  background: url('../images/05.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

@media (max-width: 576px) {
  .hero-section {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    height: auto;
    padding-top: 39%; /* 16:9 de proporción; ajusta según tu imagen */
  }
}

.hero-content .location {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  font-weight: 500;

}


.cta-button {
  background: #FF385C;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #E31C5F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  background: white;
  border: 2px solid #ddd;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active, .category-btn:hover {
  background: #FF385C;
  color: white;
  border-color: #FF385C;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 20px;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  margin: auto;
  display: block;
  width: 90%;
  max-width: 900px;
  max-height: 80%;
  margin-top: 5%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #FF385C;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
}

.info-section {
  padding: 80px 0;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.info-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #666;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 2rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
}

.booking-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 20px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.booking-form {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #FF385C;
  box-shadow: 0 0 0 2px rgba(255, 56, 92, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.0rem;
  }
  
  .info-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .gallery-categories {
      gap: 10px;
  }
  
  .category-btn {
      padding: 8px 15px;
      font-size: 0.9rem;
  }
}


