:root {
  --primary: #2d4628;
  /* Verde Bosque */
  --secondary: #d4a373;
  /* Arena/Madera */
  --accent: #fefae0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #faf9f6;
}

h1,
h2,
h3,
.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}

.border-primary {
  border-color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.bg-secondary {
  background-color: var(--secondary);
}

/* Botón principal */
.btn-gold {
  background-color: var(--secondary);
  color: #fff;
  transition: all 0.25s ease;
}

.btn-gold:hover {
  background-color: #bc8a5f;
  transform: translateY(-2px);
}

/* Glass nav */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

/* Enlaces de navegación */
.nav-link {
  position: relative;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: #5c5c5c;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 4px;
  left: 50%;
  background-color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Hero overlay */
.hero-gradient {
  background: linear-gradient(to bottom, rgba(45, 70, 40, 0.68), rgba(0, 0, 0, 0.32));
}

/* Accesibilidad: skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* Pequeños ajustes visuales */
.prose img {
  border-radius: 0.75rem;
}

/* Botón Reservar mejorado */
.btn-gold {
  background: linear-gradient(135deg, #d4a373 0%, #bc8a5f 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 163, 115, 0.4);
  filter: brightness(1.05);
}


/* --------- HABITACIONES --------- */
.room-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.room-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.room-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .08);
  color: var(--primary);
}

/* --------- MAPA INTERACTIVO --------- */
.map-main {
  width: 100%;
  height: 520px;
}

.map-embed {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 768px) {
  .map-main {
    height: 420px;
  }
}