/* Force hero images visible — Webflow IX2 hides them on init */
.header-2-image-wrap {
  opacity: 0.7 !important;
  display: block !important;
}
.header-2-image {
  display: block !important;
  opacity: 1 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  min-height: 100% !important;
}
.section_header-2 {
  position: relative !important;
  overflow: hidden !important;
}
.header-2--content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  position: relative !important;
  z-index: 2 !important;
  min-height: 100dvh !important;
}
.header-2-content-info {
  position: relative !important;
  z-index: 2 !important;
}
.overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 200px !important;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.65)) !important;
  z-index: 1 !important;
}

/* ===== Language Dropdown Switcher ===== */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 9999;
}
.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: 'Fff Acidgrotesk', Tahoma, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  padding: 4px 0;
  background: none;
  border: none;
  transition: opacity 0.3s;
}
.lang-dropdown-toggle:hover { opacity: 0.7; }
.lang-dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
  fill: currentColor;
}
.lang-dropdown.is-open .lang-dropdown-toggle svg {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #f7f7f2;
  border: 1px solid rgba(0,0,0,0.08);
  min-width: 120px;
  padding: 6px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  z-index: 10000;
}
.lang-dropdown.is-open .lang-dropdown-menu {
  display: block;
}
.lang-dropdown-menu a {
  display: block;
  padding: 6px 16px;
  font-family: 'Fff Acidgrotesk', Tahoma, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.lang-dropdown-menu a:hover {
  background: rgba(0,0,0,0.04);
}
.lang-dropdown-menu a.is-active {
  opacity: 0.4;
  pointer-events: none;
}
/* Mobile: inside hamburger menu */
@media (max-width: 991px) {
  .lang-dropdown-menu {
    right: auto;
    left: 0;
  }
}

/* ===== Hotel Select Fix ===== */
#hotel-select {
  color: #f7f7f2 !important;
  font-size: .875rem !important;
  font-family: 'Fff Acidgrotesk', Tahoma, sans-serif !important;
  background-color: transparent !important;
  min-width: 8rem;
}
#hotel-select option {
  color: #333;
  background-color: #f7f7f2;
}

/* Accessibility widget (Simplex) — lower z-index so menu panel appears on top */
#vplugin-toggler-link,
#vplugin-toggler-link * {
  z-index: 999 !important;
}
