:root {
  --color-primary: #E8DFCF;
  --color-primary-dark: #D2C7B2;
  --color-accent: #C9E6EA;
  --color-bg: #FFFCF8;
  --color-text-dark: #4B4642;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-dark);
}

/* Parche para evitar cortes en acordeón */
.accordion-collapse,
.accordion-body {
  overflow: visible !important;
}
.accordion-collapse.collapse.show {
  height: auto !important;
}

/* Thumbnails mejor scroll */
.thumbs-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.custom-navbar {
  background: rgba(232, 223, 207, 0.5); /* color arena original, más saturado */
  backdrop-filter: blur(4px); /* blur bajito para evitar el blanco */
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(210,199,178,0.5);
}

/* Links */
.navbar .nav-link {
  color: #4B4642 !important;
  font-weight: 500;
  font-size: 1rem;
}

.navbar .nav-link:hover {
  color: #9e8a71 !important; /* arena más oscuro suave */
}

/* Botón dorado */
.btn-gold {
  background: #D2C7B2;     /* arena oscuro */
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: #4B4642;
}

.btn-gold:hover {
  background: #E8DFCF;      /* arena claro */
  color: #4B4642;
}


/* Botón */
.btn-gold {
  background: var(--color-primary-dark);
  border: none;
  color: var(--color-text-dark);
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: .4px;
}
.btn-gold:hover { 
  background: var(--color-primary-dark); 
}

/* Tipografías */
.brand-font,
.section-title,
h1, h2, h3, h4, h5 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  letter-spacing: .4px;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh; /* ajustable */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: #000; /* fallback mientras carga video/imagen */
  background-size: cover;
  background-position: center;
}

#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* evita deformaciones */
  z-index: 1;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}

/* Contenido */
.hero-body {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 820px;
}

/* Secciones */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.6rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--color-accent);
  margin: 14px auto 0;
  border-radius: 4px;
  opacity: .9;
}

/* Galería */
.story-img {
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}

/* Habitaciones */
.room-box {
  background: white;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.mainImage { 
  max-height: 260px; 
  object-fit: cover; 
  border-radius: 12px; 
}
.thumb { 
  height: 62px; 
  width: 94px; 
  object-fit: cover; 
  border-radius: 8px;
  cursor: pointer; 
  border: 2px solid transparent; 
  transition: .22s; 
}
.thumb:hover, .active-thumb { 
  border-color: var(--color-accent); 
}

/* Servicios */
.bg-primary-soft { 
  background: var(--color-primary); 
  color: var(--color-text-dark); 
}
.experience-icon { 
  font-size: 48px; 
  opacity: .82; 
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #cfcfcf;
  padding: 55px 0;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed; 
  bottom: 22px; 
  right: 22px;
  background: #25D366; 
  color: white;
  font-size: 28px; 
  width: 58px; 
  height: 58px;
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-decoration: none; 
  z-index: 999;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* Asegura que clicks pasen al botón sobre hero */
.hero::before {
  pointer-events: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* 100% del viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
