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

body {
  font-family: 'Noto Sans', sans-serif;
  color: #1a3a52;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(5, 18, 36, 0.85) 0%, rgba(10, 28, 60, 0.85) 100%), 
              url('/galery/489150677_1199601188832721_7729283300255663791_n.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  transform: translateY(0);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.lang-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.lang-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.cta-button {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
  padding: 1rem 3rem;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(250, 112, 154, 0.6);
}

/* Value Section */
.value-section {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.value-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.value-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-item h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.gallery-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

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

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.5);
}

/* Amenities Section */
.amenities-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.amenities-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.amenity-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.amenity-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.amenity-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.amenity-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.amenity-item p {
  color: #666;
  font-size: 0.9rem;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-align: center;
}

.about-section p {
  line-height: 1.8;
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Location Section */
.location-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.location-content {
  max-width: 900px;
  margin: 0 auto;
}

.location-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-align: center;
}

.location-section p {
  line-height: 1.8;
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.map-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.map-section h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #000;
}

.map-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link a {
  color: #1a3a52;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.map-link a:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

/* Facebook icon link */
.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facebook-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.facebook-logo {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.whatsapp-button {
  display: inline-block;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  margin: 0 1rem;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.contact-info a:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

.developer-credit {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.developer-credit a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.developer-credit a:hover {
  color: white;
}

[data-lang]:not([data-lang="en"]) .lang-en,
[data-lang]:not([data-lang="es"]) .lang-es {
  display: none;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 100px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
  
  .lang-toggle {
    top: 10px;
    right: 10px;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}