/* =========================================================
   BHB Rooms Overview — Aman Split Layout
   BG: #191104
========================================================= */
:root{
  --bhb-bg:#191104;
  --bhb-gold: #bea069;
  --bhb-line: rgba(255,255,255,.10);
  --bhb-soft: rgba(0,0,0,.16);
  --bhb-soft2: rgba(0,0,0,.22);
  --bhb-text: rgba(255,255,255,.86);
  --bhb-muted: rgba(255,255,255,.58);
}

.bhb-rooms-overview{ background: var(--bhb-bg); padding: 60px 0 64px; }

.bhb-ov-wrap{ width: min(1280px, calc(100% - 56px)); margin: 0 auto; }
@media (max-width: 680px){ .bhb-ov-wrap{ width: calc(100% - 26px); } }

.bhb-ov-grid{
  display:grid;
  grid-template-columns: minmax(340px, 520px) 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

/* LEFT panel */
.bhb-ov-left{
  position: sticky;
  top: 96px;
  border: 1px solid var(--bhb-line);
  border-radius: 26px;
  background: var(--bhb-soft);
  box-shadow: 0 22px 80px rgba(0,0,0,.52);
  overflow:hidden;
}

.bhb-ov-left-head{
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}

.bhb-ov-kicker{
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(190,160,105,.82);
  margin: 0 0 10px;
}

.bhb-ov-title{
  margin:0;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  line-height: 1.1;
  font-weight: 500;
}

.bhb-ov-lead{
  margin: 14px 0 0;
  color: var(--bhb-muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 62ch;
}

.bhb-ov-tabs{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.bhb-ov-tab{
  appearance:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  color: rgba(255,255,255,.72);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor:pointer;
  transition: .18s ease;
  white-space: nowrap;
}
.bhb-ov-tab:hover{ border-color: rgba(190,160,105,.45); color: rgba(255,255,255,.88); }
.bhb-ov-tab.is-active{
  background: rgba(190,160,105,.16);
  border-color: rgba(190,160,105,.55);
  color: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
}

.bhb-ov-left-media{
  position:relative;
  aspect-ratio: 16/10;
  overflow:hidden;
  background: rgba(0,0,0,.25);
}
.bhb-ov-left-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(.92) contrast(1.02);
  transform: scale(1.01);
}
.bhb-ov-left-media:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(90% 70% at 50% 30%, rgba(0,0,0,.05), rgba(0,0,0,.42));
  pointer-events:none;
}

.bhb-ov-left-foot{
  padding: 18px 22px 20px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.75;
}

/* RIGHT list */
.bhb-ov-right{
  border: 1px solid var(--bhb-line);
  border-radius: 26px;
  background: rgba(0,0,0,.12);
  box-shadow: 0 22px 80px rgba(0,0,0,.48);
  overflow:hidden;

  max-height: calc(100vh - 160px);
  display:grid;
  grid-template-rows: auto 1fr;
}

.bhb-ov-right-head{
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.bhb-ov-right-title{
  margin:0;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.bhb-ov-count{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
}

.bhb-ov-list{
  padding: 18px 18px 22px;
  overflow:auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(190,160,105,.35) rgba(0,0,0,.12);
}
.bhb-ov-list::-webkit-scrollbar{ width: 10px; }
.bhb-ov-list::-webkit-scrollbar-thumb{
  background: rgba(190,160,105,.28);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.18);
}

.bhb-room-card{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(0,0,0,.14);
  margin-bottom: 14px;
  transition: .18s ease;
}
.bhb-room-card:hover{
  border-color: rgba(190,160,105,.34);
  background: rgba(0,0,0,.18);
}

.bhb-room-media{
  border-radius: 16px;
  overflow:hidden;
  background: rgba(0,0,0,.22);
  aspect-ratio: 4/3;
}
.bhb-room-media img{ width:100%; height:100%; object-fit:cover; display:block; }

.bhb-room-meta{
  display:flex;
  flex-direction: column;
  justify-content:center;
  gap: 10px;
  min-width:0;
}

.bhb-room-top{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.bhb-room-kicker{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(190,160,105,.78);
}

.bhb-room-name{
  margin: 2px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
  line-height: 1.2;
}

.bhb-room-sub{
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.6;
}

.bhb-room-price{
  display:flex;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
  white-space: nowrap;
}
.bhb-room-price .from{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.bhb-room-price .val{
  font-size: 22px;
  color: rgba(255,255,255,.92);
  letter-spacing: .03em;
}
.bhb-room-price .unit{
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.bhb-room-actions{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  margin-top: 6px;
}

.bhb-room-badges{ display:flex; flex-wrap: wrap; gap: 8px; }
.bhb-pill{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  padding: 8px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
}

.bhb-room-cta{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(0,0,0,.10);
  transition:.18s ease;
}
.bhb-room-cta:hover{
  border-color: rgba(190,160,105,.55);
  color: rgba(255,255,255,.92);
}

/* Responsive */
@media (max-width: 980px){
  .bhb-ov-grid{ grid-template-columns: 1fr; }
  .bhb-ov-left{ position: relative; top: auto; }
  .bhb-ov-right{ max-height: none; }
  .bhb-room-card{ grid-template-columns: 1fr; }
  .bhb-room-media{ aspect-ratio: 16/9; }
  .bhb-room-price{ justify-content: flex-start; }
}

/* =========================================================
   FIX: Card bottom too dark (pill + CTA)
========================================================= */

/* die allgemeine Card ein klein wenig heller */
.bhb-room-card{
  background: rgba(0,0,0,.11);
}

/* leichte Aufhellung im unteren Bereich (ohne “grau” zu werden) */
.bhb-room-meta{
  position: relative;
}
.bhb-room-meta::after{
  content:"";
  position:absolute;
  left:-16px;
  right:-16px;
  bottom:-16px;
  height: 120px;
  pointer-events:none;
  /* statt dunklem Fade → sanft heller */
  background: linear-gradient(to top,
    rgba(0,0,0,.00),
    rgba(0,0,0,.00)
  );
}

/* Pills: etwas weniger “schwarz”, klarer lesbar */
.bhb-pill{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
}

/* CTA: mehr Kontrast, aber immer noch Aman-ruhig */
.bhb-room-cta{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
}
.bhb-room-cta:hover{
  background: rgba(190,160,105,.10);
  border-color: rgba(190,160,105,.60);
  color: rgba(255,255,255,.92);
}

/* =========================================================
   Rooms Overview – Variante A (Aman)
   - weniger dunkler Footerbereich in der Card
   - Text-Link statt Button
========================================================= */

/* Bottom row: nicht so dunkel/gedrückt */
.bhb-room-actions--a{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;

  /* subtle lift instead of heavy dark */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.10) 100%
  );
}

/* View-Kicker (Seeblick/Bergblick...) */
.bhb-room-view{
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(190,160,105,.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

/* Aman Text-Link */
.bhb-room-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration: none;

  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;

  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(190,160,105,.22);
  padding-bottom: 8px;

  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.bhb-room-link span{
  color: rgba(190,160,105,.75);
}

.bhb-room-link:hover{
  color: rgba(255,255,255,.92);
  border-bottom-color: rgba(190,160,105,.70);
  transform: translateY(-1px);
}

/* Mobile: sauber stapeln */
@media (max-width: 640px){
  .bhb-room-actions--a{
    flex-direction: column;
    align-items: flex-start;
  }
  .bhb-room-view{ max-width: 100%; }
}

/* =========================================================
   STAYINFO (Overview) — Hard fix alignment
   (nur diese Seite)
========================================================= */

.bhb-stayinfo--overview .bhb-acc-summary{
  display: grid !important;
  grid-template-columns: 1fr 56px !important; /* Text | Icon */
  grid-template-rows: auto auto auto !important;
  column-gap: 18px !important;
  row-gap: 8px !important;

  align-items: start !important;
  justify-items: start !important;
  text-align: left !important;
}

.bhb-stayinfo--overview .bhb-acc-kicker{
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  text-align: left !important;
  margin: 0 !important;
}

.bhb-stayinfo--overview .bhb-acc-title{
  grid-column: 1 !important;
  grid-row: 2 !important;
  justify-self: start !important;
  text-align: left !important;
  margin: 0 !important;
}

.bhb-stayinfo--overview .bhb-acc-teaser{
  grid-column: 1 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  text-align: left !important;
  margin: 0 !important;
}

.bhb-stayinfo--overview .bhb-acc-icon{
  grid-column: 2 !important;
  grid-row: 1 / span 3 !important;
  justify-self: end !important;
  align-self: center !important;
}

.bhb-ov-intro{
  margin: 20px 0 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.78);
}

.bhb-ov-intro strong{
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}

.bhb-ov-intro span{
  display:block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
}

.bhb-ov-tab.is-active{
  background: transparent;
  border-color: rgba(190,160,105,.55);
  box-shadow: inset 0 0 0 1px rgba(190,160,105,.35);
}

.bhb-room-card{
  margin-bottom: 26px; /* statt 14px */
}

.bhb-ov-left-media img{
  transition: transform 8s ease;
}
.bhb-ov-left:hover img{
  transform: scale(1.06);
}

/* =========================================================
   MOBILE FIX: Actions nebeneinander (VISTA LAGO | LEGGI DI PIÙ →)
   -> ganz ans Ende der bhb-rooms-overview.css
========================================================= */
@media (max-width: 640px){

  .bhb-room-actions--a{
    flex-direction: row !important;          /* statt column */
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }

  /* Link soll rechts bleiben und nicht umbrechen */
  .bhb-room-link{
    margin-left: auto !important;
    white-space: nowrap !important;
  }

  /* View-Text darf umbrechen, aber nicht den Link wegdrücken */
  .bhb-room-view{
    max-width: 60% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

