* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
  scroll-padding-top: 100px;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 6px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 1000;

  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.2);
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo img {
  height: 50px;
  width: 50px;

  object-fit: cover;

  border-radius: 50%;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.menu-toggle {
  display: none;

  font-size: 2rem;

  color: white;

  cursor: pointer;

  z-index: 2000;
}

/* HERO */

.hero {
  position: relative;

  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: black;
}

.hero-video-wrapper {
  position: fixed;

  inset: 0;

  width: 100%;
  height: 100vh;

  z-index: 0;

  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    blur(3px)
    brightness(0.80)
    saturate(1.1);

  transform: scale(1.05);
}

.overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0);

  z-index: 1;
}

.hero-content {
  position: relative;

  z-index: 10;

  text-align: center;

  max-width: 900px;

  padding: 20px;
}

.hero::after {
  content: '';

  position: absolute;

  inset: 0;

  z-index: 1;
}



.hero-subtitle {
  color:  #c7b510;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;

  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;

  color: #d1d5db;

  margin-bottom: 40px;
}

/* BUTTONS */

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary {
  background: #d4af37;
  color: black;
}

.btn-primary:hover {
  transform: translateY(-3px);

  background: rgba(17, 17, 17, 0.256);

  color: rgb(255, 255, 255);

  box-shadow: 0 10px 30px rgba(236, 178, 17, 0.637);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.btn-secondary:hover {
  background: rgba(39, 140, 255, 0.739);
}

.whatsapp-contact-btn:hover {
  background: #2dee74a8;

  color: white;

  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}

/* SECTIONS */

.section {
  padding: 120px 40px;
}

.dark-section {
  position: relative;

  overflow: hidden;

  background: black;
}

.video-background {
  position: absolute;

  inset: 0;

  z-index: 0;

  overflow: hidden;
}

.gallery-video {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0.45;

  transform: scale(1.05);
}

.dark-section::before {
  content: '';

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0);

  z-index: 1;
}

.dark-section .container {
  position: relative;

  z-index: 2;
}

.light-section {
  background: #ffffff;
  color: #000000;
}



.section,
.light-section,
#nosotros,
#disponibilidad,
#ubicacion,
#contacto {
  position: relative;

  z-index: 20;
}

.light-section h2,
.light-section p,
.light-section .section-description,
.light-section .calendar-description {
  color: #000000;
}

.light-section .location-description {
  color: #000000;
}

.light-section .amenity-card {
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.section p {
  color: #ffffff;
  line-height: 1.8;
}

/* AMENITIES */

.section-description {
  max-width: 800px;
  margin-top: 20px;
}

.amenities-grid {
  margin-top: 50px;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;
}

.amenity-card {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  padding: 28px;

  font-size: 1rem;

  backdrop-filter: blur(10px);

  transition: 0.3s;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amenity-card span {
  color: #9ca3af;
  font-size: 0.9rem;
}

.amenity-card:hover {
  transform: translateY(-5px);

  border-color: rgba(212,175,55,0.4);

  background: #d4af37;
}

.capacity {
  background: #d4af37;
  color: black;
  font-weight: 700;
}

/* GALLERY */

.gallery {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;
}

.gallery-item {
  position: relative;

  height: 320px;

  border-radius: 24px;

  overflow: hidden;

  background: #1f1f1f;

  transition: 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.4s;

  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CALENDAR */

/* CALENDAR */

.calendar-description {
  margin-top: 20px;
  margin-bottom: 40px;

  color: #d1d5db;
}

.calendar-wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.calendar-wrapper iframe {
  width: 100%;
  height: 700px;

  border: 0;
}

.calendar-cta {
  display: flex;

  width: fit-content;

  margin: 0 auto 40px auto;

  align-items: center;
  justify-content: center;

  background: #d4af37;

  color: white;

  padding: 10px 24px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  letter-spacing: 0.5px;

  transition: 0.3s;
}

.calendar-cta:hover {
  transform: scale(1.05);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* LOCATION */

.location-description {
  margin-top: 20px;
  margin-bottom: 40px;

  color: #d1d5db;
}

.location-link {
  text-decoration: none;
}

.location-wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 10px 40px rgba(0,0,0,0.3);

  cursor: pointer;
}

.location-wrapper iframe {
  width: 100%;
  height: 500px;

  border: 0;

  pointer-events: none;

  filter: grayscale(0.1) brightness(0.9);
}

.location-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  transition: 0.3s;

  backdrop-filter: blur(2px);
}

.location-overlay span {
  background: rgba(0,0,0,0.75);

  color: white;

  padding: 18px 36px;

  border-radius: 999px;

  font-size: 1.1rem;
  font-weight: 600;

  letter-spacing: 1px;

  border: 1px solid rgba(255,255,255,0.15);
}

.location-wrapper:hover .location-overlay {
  opacity: 1;
}

/* WHATSAPP */

.whatsapp-button {
  position: fixed;

  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  transition: 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.08);
}

.whatsapp-button img {
  width: 38px;
  height: 38px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .navbar {

    padding: 6px 24px;

  }

  .menu-toggle {

    display: block;

  }

  nav {

    position: fixed;

    top: 0;
    right: -100%;

    width: 280px;
    height: 100vh;

    background: rgba(0, 0, 0, 0.775);

    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;

    padding: 120px 40px;

    gap: 32px;

    transition: 0.4s ease;

    z-index: 1500;

  }

  nav.active {

    right: 0;

  }

  nav a {

    font-size: 1.2rem;

  }

  .hero {

    background-attachment: scroll;

  }

  .hero-video-wrapper {

    position: fixed;

  }

  .hero-video {

    filter:
      blur(1px)
      brightness(0.80);

  }

  .hero h1 {

    font-size: 2.8rem;

  }

  .hero-description {

    font-size: 1rem;

  }

  .hero-subtitle {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .section {

    padding: 80px 24px;

  }

  .section h2 {

    font-size: 2.2rem;

  }

  .dark-section {

    background-attachment: scroll;

  }

  .gallery-video {

    position: absolute;

  }



}