:root {
  --black: #0a0a0a;
  --dark-gray: #151515;
  --gold: #c5a059;
  --gold-light: #e2c07d;
  --silver: #e0e0e0;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--black);
  color: var(--silver);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}

/* --- Navegación --- */
nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
nav.scrolled {
  background: var(--black);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  padding: 15px 8%;
}

#ubicacion {
  scroll-margin-top: 100px;
}

.logo {
  font-size: 2rem;
  color: var(--gold);
  text-decoration: none;
  font-family: "Bebas Neue";
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}

/* --- Hero --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop")
      center/cover;
  padding: 0 10%;
}
.hero-content h1 {
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.9;
  margin-bottom: 15px;
  color: var(--white);
}
.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

/* --- Botones --- */
.btn-gold {
  display: inline-block;
  padding: 18px 45px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-5px);
}

/* --- Servicios --- */
.services {
  padding: 120px 10%;
  background: var(--dark-gray);
}
.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.section-title h2 {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title span {
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.6;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--black);
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}
.service-card i {
  color: var(--gold);
  margin-bottom: 25px;
  display: block;
}
.service-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 20px;
}
.service-card .price {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: "Bebas Neue";
}

/* --- Galería --- */
.gallery {
  padding: 100px 10%;
  background: var(--black);
}

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

.gallery-item {
  height: 350px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: 0.7s;
}
.gallery-item:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  z-index: 10;
}

/* --- Reservas --- */
.booking {
  padding: 100px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-text h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.booking-text p {
  margin-bottom: 30px;
  font-weight: 300;
}

.contact-box {
  background: var(--black);
  padding: 40px;
  border: 1px solid var(--gold);
}
.info-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.info-row i {
  color: var(--gold);
}

/* --- Map Section --- */

.map-section-wrapper .section-title {
  margin-bottom: -30px; /* menos espacio que el default de 80px */
}

.map-section {
  padding: 100px 10%;
  height: 700px;
  width: 100%;
  filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* --- Footer --- */
footer {
  padding: 80px 10%;
  text-align: center;
  background: var(--black);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.socials a {
  color: var(--gold);
  transition: 0.3s;
  text-decoration: none;
}
.socials a:hover {
  color: var(--white);
  transform: scale(1.2);
}

/* --- WhatsApp --- */
.ws-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 2000;
  transition: 0.3s;
}
.ws-float:hover {
  transform: scale(1.1);
}

.ws-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); /* blanco */
}

@media (max-width: 900px) {
  .booking {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero-content h1 {
    font-size: 4rem;
  }
  .map-container {
    height: 350px;
  }
}
