/* content.css */
.maincontent {
  max-width: var(--max-width);
 margin: 44px auto 0 auto;
  padding: 0 18px 0 18px;   /* bottom 0 */
  min-height: auto;
  box-sizing: border-box;
}
.maincontent h1 {
  font-size: 24px;
  color: var(--main-green);
  margin-bottom: 1.4rem;
  letter-spacing: 1px;
}
.maincontent p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  word-break: break-word;
  margin: 0;
}



.maincontent li {
	line-height: 1.7;
}

@media (max-width: 900px) {
  .maincontent {
    padding: 24px 8px 44px 8px;
  }
}
@media (max-width: 600px) {
  .maincontent {
    margin-top: 18px;
    padding: 15px 2px 20px 2px;
  }
}












.info-bar {
  background: var(--main-green);
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
   padding: 10px 14px;
  margin: 10px 0 0 0;
  box-sizing: border-box;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.info-item img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1); /* macht Icons weiß */
}

.info-item span {

 
  color: #fff;
}






/* 
   =========================================================
   ====   ÜBERSCHRIFTEN / TITEL / MIT LINIEN  ==============
   ========================================================= */

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;               /* Abstand Text ↔ Linien */
  margin: 30px 0;          /* Abstand nach oben/unten */

  color: var(--main-green);
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;                 /* Linien füllen links und rechts bis zum Rand */
  height: 1px;             /* Linienstärke */
  background: #ccc;        /* Linienfarbe */
}




/* 
   =========================================================
   ===============   VERTIKALER ABSTAND  ================
   ========================================================= */

.mt-20 {
  margin-top: 20px !important;
}





/* 
   =========================================================
   ===============   QUICKLINKS  ================
   ========================================================= */


.quicklinks {
  display: flex;
  flex-wrap: wrap;                 
  justify-content: space-between; 
  align-items: center;
  gap: 8px 12px;                   
  background: #f5f5f2;
  margin: 10px 0 20px 0;
  padding: 8px 10px;              
}

.quicklinks a {
  flex: 0 1 auto;                  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                        /* Abstand Text ↔ Pfeil */
  padding: 10px 12px;
  min-height: 44px;
  text-decoration: none;
  color: var(--main-green);
  white-space: nowrap;             
}

.quicklinks a:hover {
  background: #eceae5;
}

/* Pfeil ▼ */
.quicklinks .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(2px);
}

/* Responsiv: in der Mitte zentrieren */
@media (max-width: 900px) {
  .quicklinks {
    justify-content: center;
  }
}


:target {
  scroll-margin-top: 150px; /* Abstand nach oben in Pixel */
}




/* 
   =========================================================
   ===============   TEXT GRID - 2 SPALTEN  ================
   ========================================================= */

.text-grid-2 {
  max-width: 100%;
  margin: clamp(12px, 2vw, 24px) auto;
  text-align: left;
}
.text-grid-2 h1 {
  text-align: left;
}
.text-grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}
.text-grid-2-col p {
  margin: 0 0 .85rem;
  line-height: 1.65;
  color: #333;
}
.text-grid-2-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .text-grid-2 { max-width: 100%; }
  .text-grid-2-columns { grid-template-columns: 1fr; }
}





/* 
   =========================================================
   ===================   HIGHLIGHT TEXT  ===================
   ========================================================= */

.highlight {
  background: #f5f5f2;          
  border: 0px solid #e6e6e6;    
  padding: 10px 14px;
  margin: 10px 0 0 0;
  text-align: center;
  border-radius: 0;             
}






/* 
   =========================================================
   ===================   PANORAMA  ===================
   ========================================================= */



/* Section-Abstand + Überschrift */
.panorama { margin: clamp(16px, 3vw, 28px) 0; }
.panorama h2 {
  margin: 0 0 12px;

 
  text-align: left;
}



/* Section + Headline (wie gehabt) */
.panorama { margin: clamp(16px, 3vw, 28px) 0; }
.panorama h2 {
  margin: 0 0 12px;
  text-align: left;
}

/* Bild-Viewport (400px hoher Ausschnitt) */
.panorama-viewport {
  position: relative;                  /* wichtig für die Overlay-Box */
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* kein Parallax/Scroll-Effekt */
}

/* Weiße Overlay-Box links, nicht ganz am Rand, volle Höhe */
.panorama-box {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: clamp(12px, 2vw, 24px);        /* Abstand vom linken Rand */
  width: min(420px, 48%);              /* max. Breite, sonst ~halbe Fläche */
  background: rgba(255,255,255,0.98);  /* fast deckend weiß */
  padding: clamp(12px, 1.6vw, 20px) clamp(14px, 2vw, 22px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;         /* Text oben beginnen */
}

/* Typografie in der Box */
.panorama-box p {
  margin: 0 0 10px;
  color: #333;
}
.panorama-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.panorama-list li {
  position: relative;
  padding-left: 1.1em;
  margin: 4px 0;
  line-height: 1.5;
  color: #333;
}
.panorama-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
  color: var(--main-green);
}

/* Mobile Feintuning: Box etwas breiter und mit kleinerem linken Abstand */
@media (max-width: 700px) {
  .panorama-box {
    left: clamp(8px, 3vw, 14px);
    width: 70%;
    padding: 12px 14px;
  }
  .panorama-viewport {
  
  height: 400px;
  }
  
}

/* Rechter, unterer CTA-Button – hellgrau */
.panorama-cta{
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  bottom: 20px;
  display: inline-block;
  padding: 12px 18px;
  background: #f0f0f0;           /* helles Grau */
  color: #000;                    /* dunkler Text für Kontrast */
  text-decoration: none;
  border: 1px solid #ddd;         /* dezenter Rahmen */
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
  font-weight: 600;
  transition: background .15s, border-color .15s, transform .08s, opacity .2s;
}
.panorama-cta:hover{ background:#e7e7e7; border-color:#ccc; }
.panorama-cta:active{ transform: translateY(1px); }
.panorama-cta:focus{ outline:2px solid #cfcfcf; outline-offset:2px; }

/* Mobil-Feinschliff */
@media (max-width: 700px){
  .panorama-cta{
    right: clamp(8px, 3vw, 14px);
    bottom: 14px;
    padding: 11px 16px;
  }
}



/* Abstand unter dem Einleitungs-Absatz im Lage-Listing */
.panorama > p {
  margin: 0 0 clamp(14px, 2.5vw, 40px);
}




/* 
   =========================================================
   ===================   GRID - 2 SPALTEN BILD + TEXT  ===================
   ========================================================= */




/* Section Wrapper */
.text-bild-grid-2-section {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 18px;
}

/* 2-Spalten Grid */
.text-bild-grid-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Karten */
.text-bild-grid-2-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--main-green);
}
.text-bild-grid-2-card img {
  width: 100%;
  height: 220px;          /* feste Höhe */
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}
.text-bild-grid-2-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin: 0 0 12px;
}

/* Mobil: untereinander */
@media (max-width: 900px) {
  .text-bild-grid-2-grid {
    grid-template-columns: 1fr;
  }
  .text-bild-grid-2-card img {
    height: 180px;
  }
}








/* 
   =========================================================
   ===================   GRID - 2 SPALTEN BILD + TEXT  ===================
   ========================================================= */



.grid-text-bild-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-text-bild-2-item {
  text-align: left;
}

.grid-text-bild-2-item img {
  width: 100%;
  height: auto;
}

.grid-text-bild-2-item h3 {
  margin: 15px 0 10px;
}

.grid-text-bild-2-item p {
  margin: 0 0 10px;
}

.grid-text-bild-2-item a {
  text-decoration: none;
  font-weight: bold;
}

.grid-text-bild-2-item a:hover {
  text-decoration: underline;
}






/* 
   =========================================================
   ===================   GRID - 3 SPALTEN BILD + TEXT  ===================
   ========================================================= */



.grid-text-bild-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-text-bild-3-item {
  text-align: left;
}

.grid-text-bild-3-item img {
  width: 100%;
  height: auto;
}

.grid-text-bild-3-item h3 {
  margin: 15px 0 10px;
}

.grid-text-bild-3-item p {
  margin: 0 0 10px;
}

.grid-text-bild-3-item a {
  text-decoration: none;
  font-weight: bold;
}

.grid-text-bild-3-item a:hover {
  text-decoration: underline;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .grid-text-bild-3 {
    grid-template-columns: 1fr; /* 1 Spalte */
    gap: 20px; /* etwas kleinerer Abstand */
  }
}

/* Tablet – optional */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-text-bild-3 {
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    gap: 25px;
  }
}

/* 
   =========================================================
   ===================   GRID - 4 SPALTEN BILD + TEXT  ===================
   ========================================================= */



.grid-text-bild-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.grid-text-bild-4-item {
  text-align: left;
}

.grid-text-bild-4-item img {
  width: 100%;
  height: auto;
}

.grid-text-bild-4-item h3 {
  margin: 15px 0 10px;
}

.grid-text-bild-4-item p {
  margin: 0 0 10px;
}

.grid-text-bild-4-item a {
  text-decoration: none;
  font-weight: bold;
  color:var(--main-green);
}

.grid-text-bild-4-item a:hover {
  text-decoration: underline;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .grid-text-bild-4 {
    grid-template-columns: 1fr; /* 1 Spalte auf Smartphones */
    gap: 20px;
  }
}

/* Tablet Ansicht */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-text-bild-4 {
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablets */
    gap: 25px;
  }
}



/* 
   =========================================================
   ===================   FULLSIZE ICON BOX  ===================
   ========================================================= */


.icon-section {
  background-color: #f5f5f5;

  padding: 40px 0;
}

.icon-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;   /* bottom 0 */
}

.icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px; /* wieder wie vorher */
  color: #333;
 
}

.icon-text img {
  width: 35px; /* wieder wie vorher */
  height: auto;

}
@media (max-width: 768px) {
  .icon-row {
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Punkten */
    text-align: left; /* optional: Text linksbündig auf Handy */
  }

  .icon-text {
    justify-content: flex-start; /* Icon bleibt links neben Text */
  }
}







/* 
   =========================================================
   ===================   RESTAURANT GRID 5  ===================
   ========================================================= */



.lage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

/* Karte */
.lage-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-top: none;                 /* damit das abgerundete Bild „oben“ sauber wirkt */
}

/* Bild: oben abgerundete Ecken */
.lage-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;              /* harmonisch; anpassbar */
  object-fit: cover;
  border-radius: 0px 0px 0 0;     /* nur oben rund */
}

/* Body: Text auf weißem Hintergrund */
.lage-card-body {
  padding: 12px 12px 10px;
}
.lage-card-body h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #222;
}
.lage-card-body p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: #333;
}

/* Abstandsbalken in hellgrau (kleiner Text) */
.lage-distance {
  margin-top: auto;                 /* Textbereich darf wachsen, Balken hängt unten */
  background: #ededeb;
  color: #555;
  font-size: .9rem;
  padding: 8px 10px;
  border-top: 1px solid #e3e3e3;
}

/* Link unten */
.lage-link {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--main-green);
  font-weight: 600;
  border-top: 1px solid #eeeeee;
}
.lage-link:hover { text-decoration: underline; }

/* ===== Responsiv ===== */
@media (max-width: 1200px){
  .lage-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1000px){
  .lage-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px){
  .lage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .lage-grid { grid-template-columns: 1fr; }
}




/* 
   =========================================================
   ===================   RESTAURANT HIGHLIGHTS  ===================
   ========================================================= */



/* Container: zentriert, volle Breite bis max */
.lage-highlights{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 18px;
  padding: 0;                /* keine Seiten-Padding */
  box-sizing: border-box;
}

/* 2 Spalten nebeneinander */
.lage-grid-two{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 40px);
  width: 100%;
  box-sizing: border-box;
}

/* Karte darf Spalte NICHT sprengen */
.lage-grid-two .lage-card{
  display: flex;
  flex-direction: column;
  min-width: 0;              /* wichtig gegen Überlauf */
}

/* Bild automatisch an Spaltenbreite anpassen */
.lage-grid-two .lage-card .lage-card-img{
  width: 100%;
  height: 250px;             /* gewünschte fixe Höhe? anpassen */
  object-fit: cover;
  display: block;
}

/* Body 2-spaltig (links Stammdaten, rechts Beschreibung) */
.lage-card-body.two-cols{
  display: grid;
  grid-template-columns: 170px 1fr;  /* links fix, rechts flexibel */
  gap: 16px;
  padding: 20px 24px;
  box-sizing: border-box;
  width: 100%;
}
.lage-card-body.two-cols .col-left,
.lage-card-body.two-cols .col-right{ min-width: 0; }
.lage-card-body.two-cols .btn-group{ display:flex; flex-direction:column; gap:6px; }

/* Entfernung zentrieren */
.lage-card .lage-distance{ text-align:center; }

/* Mobil: untereinander */
@media (max-width: 900px){
  .lage-grid-two{ grid-template-columns: 1fr; }
  .lage-card-body.two-cols{ grid-template-columns: 1fr; }
  .lage-card-body.two-cols .btn-group{ flex-direction: row; flex-wrap: wrap; gap:8px; }
}


/* === Slider === */
.lage-slider {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 4px;
}

.lage-slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.lage-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.lage-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 28px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.lage-slider button:hover {
  background: rgba(0,0,0,0.7);
}

.lage-slider .prev { left: 10px; }
.lage-slider .next { right: 10px; }



















/* --- Unterseiten: Hero-Titelbereich --- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 1; /* Bild 50% transparent */
}
.page-hero__inner {
  position: relative; /* über dem ::before */
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 36px 18px;
  box-sizing: border-box;
}
/* Hero: H1 Lesbarkeit verbessern */
.page-hero h1 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85); /* weiß mit leichter Transparenz */
  padding: 10px 18px;
  border-radius: 0px;
  color: var(--main-green);
  margin: 0;
}


/* Responsive Tweaks */
@media (max-width: 900px) {
  .page-hero { min-height: 260px; }
  .page-hero__inner { padding: 28px 12px; }
}
@media (max-width: 600px) {
  .page-hero { min-height: 220px; }
  .page-hero__inner { padding: 20px 10px; }
}

/* --- Breadcrumb-Leiste --- */
.breadcrumb {
  width: 100%;
  background: #f5f5f2; /* hellgrau */
  border-top: 1px solid #e0e0dd;
  border-bottom: 1px solid #e0e0dd;
  font-size: 0.95rem;
  padding: 10px 18px;
  box-sizing: border-box;
}
.breadcrumb-boxed {
  max-width: var(--max-width);
  margin: 0 auto;
  color: #555;
}
.breadcrumb a {
  color: var(--main-green);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--light-brown);
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 6px;
  color: #999;
}











.amenities-3rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 gleich breite Spalten auf Desktop */
  gap: 8px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.amenities-3rows li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.6;
  color: #333;
}

.amenities-3rows li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.6;
  color: var(--main-green);
}

/* Mobile Ansicht: alles untereinander */
@media (max-width: 700px) {
  .amenities-3rows {
    grid-template-columns: 1fr; /* eine Spalte */
    gap: 6px 0;
  }
}





/* ===== Fullwidth Room Band (mit room-slider) ===== */
.room-band{
  background:#f5f5f5;                    /* hellgrau über volle Breite */
  padding: clamp(8px, 2vw, 20px) 0 clamp(24px, 4vw, 56px) 0;
}



/* .maincontent im Band transparent halten (Bild liegt direkt auf Grau) */
.room-band .maincontent,
.room-band .room-band-inner{
  background:transparent !important;
  box-shadow:none;
}

/* Überschrift in der Room-Band */
.room-band-title {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 18px 22px 18px; /* Abstand nach unten zu den Kästen */
  text-align: center;
}
.room-band-title h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--main-green);
}

/* optional: etwas kleiner auf Mobil */
@media (max-width: 600px) {
  .room-band-title h2 { font-size: 1.4rem; }
}


/* 3-Spalten "Tabelle": Personen | Größe | Preis (links ausgerichtet, nur so breit wie nötig) */
.room-meta {
  display: inline-grid;           /* shrink-to-fit */
  grid-auto-flow: column;
  grid-auto-columns: max-content; /* Spalten so breit wie Inhalt */
  column-gap: 16px;
  margin: 14px 0;
  text-align: left;
}

/* Spalte = Label oben + Zelle unten, Inhalte zentriert */
.room-meta .meta-item {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: stretch;
  text-align: center;
}

/* Label: schwarz, hellgrauer BG, NICHT fett */
.room-meta .meta-label {
  font-size: 0.9rem;
  font-weight: 400;               /* nicht fett */
  color: #000;
  background: #f5f5f2;
  padding: 8px 25px;
  border: 1px solid #ddd;
  border-bottom: none;            /* nahtlos zur Zelle */
  line-height: 1.2;
}

/* Zellen (Werte) + Icons: gleicher Rahmen/Look, minimal kleiner als zuvor */
.room-meta .meta-value,
.room-meta .meta-icons {
 font-size: 18px;

  font-weight: 600;
  color: #2f2f2f;                 /* dunkelgrau */
  padding: 10px 12px;
  border: 1px solid #ddd;
  line-height: 1.15;
}

/* Personen-Icons als Zellinhalt zentriert, mit Rahmen (s.o.) */
.room-meta .meta-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Icon-Größe/Farbe */
.room-meta .meta-icons svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}








/* Zeile: fast 50/50 – Bild minimal breiter, bündig ohne Spalt */
.room-band-row{
  display:grid;
  grid-template-columns: 1.05fr 1fr;     /* ~51% / 49% */
  grid-template-areas: "img card";
  gap:0;
  align-items:stretch;
}
.room-band-row + .room-band-row{ margin-top:clamp(16px,2vw,24px); }

/* Bildbereich (room-slider) – direkt auf grauem Hintergrund */
.band-image{
  grid-area: img;
  position:relative;
  min-height:260px;                       /* Desktop-Höhe, mobil s.u. */
  margin:0;
  overflow:hidden;                        /* für room-sliderüberlagerungen */
}

/* room-slider-Grundlayout */
.room-slider{
  position:relative;
  height:100%;
}
.room-slider-viewport{
  position:relative;
  height:100%;
  overflow:hidden;
}
.room-slider-track{
  display:flex;
  height:100%;
  transition: transform .4s ease;
  will-change: transform;
}
.room-slider-slide{
  flex:0 0 100%;
  height:100%;
}
.room-slider-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Navigation (Pfeile) */
.room-slider-nav-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px; height:38px;
  border:none; border-radius:999px;
  background:rgba(0,0,0,.45);
  color:#fff;
  display:grid; place-items:center;
  cursor:pointer;
  padding:0;
}
.room-slider-nav-btn:hover{ background:rgba(0,0,0,.6); }
.room-slider-prev{ left:10px; }
.room-slider-next{ right:10px; }
.room-slider-nav-btn svg{ width:18px; height:18px; }

/* Dots unten mittig */
.room-slider-dots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:10px;
  display:flex;
  gap:8px;
  padding:4px 8px;
  background:rgba(0,0,0,.15);
  border-radius:999px;
  backdrop-filter:saturate(120%) blur(2px);
}
.room-slider-dot{
  width:8px; height:8px;
  border:none; border-radius:999px;
  background:#fff;
  opacity:.7;
  cursor:pointer;
  padding:0;
}
.room-slider-dot.is-active{
  opacity:1;
 background: var(--main-green); /* vorher #0c4d8d */
}

/* Weiße Textfläche rechts, bündig ans Bild */
.band-card{
  grid-area: card;
  background:#fff;
  padding:clamp(18px,2.2vw,32px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius:0 0 0 0;            /* links 0, damit bündig am Bild */
  box-shadow:0 4px 20px rgba(0,0,0,.06);
}

/* Sehr große Screens: exakt 50/50 */
@media (min-width:1280px){
  .room-band-row{ grid-template-columns: 1fr 1fr; }
}

/* Typografie & Inhalte */
.band-card h2{ margin:0 0 .5rem; line-height:1.2; }
.band-card p{ margin:0 0 1rem; color:#333; }

/* kleine Ausstattungs-Liste */
.band-amenities{
  margin:0 0 1.2rem; padding:0; list-style:none;
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.5rem 1rem; font-size:.95rem; color:#555;
}
.band-amenities li{ position:relative; padding-left:1.1rem; }
.band-amenities li::before{
  content:"•"; position:absolute; left:0; top:0; line-height:1; transform:translateY(2px);
  color:#0c4d8d;
}

/* Button im Traube-Stil */
.band-btn{
  align-self:flex-start;
  text-decoration:none;
  background:#0c4d8d; color:#fff;
  padding:.75rem 1rem; border-radius:8px;
  transition:transform .08s ease, opacity .2s ease;
}
.band-btn:hover{ opacity:.95; }
.band-btn:active{ transform:translateY(1px); }

/* Mobil: untereinander; Karte unten mit runder Ecke */
@media (max-width:900px){
  .room-band-row{
    grid-template-columns:1fr;
    grid-template-areas:"img" "card";
  }
  .band-image{ min-height:220px; }
  .band-card{
    border-radius:0 0 14px 14px;
  }
}

/* Rechte weiße Box (Zimmerinfo): links deutlich mehr Innenabstand */
.room-info-box {
  padding: 18px 18px 18px 32px; /* L: 32px */
}

/* Integrierte graue Fläche unten: an neues Padding anpassen */
.room-info-box .room-features {
  margin-left: -32px;   /* war -18/-24 */
  padding-left: 32px;   /* Textflucht wie oben */
  /* rechte Seite lassen wir wie gehabt, damit die Fläche weiter vollflächig ist */
}

/* Room-Band Karte (weiße Box rechts): links noch etwas mehr Innenabstand */
.band-card {
  padding-left: calc(clamp(18px, 2.2vw, 32px) + 12px); /* vorher +6px */
}

/* Mobil leicht entschärfen */
@media (max-width: 600px) {
  .room-info-box { padding-left: 22px; }
  .room-info-box .room-features { margin-left: -22px; padding-left: 22px; }
  .band-card { padding-left: calc(clamp(14px, 3vw, 24px) + 8px); }
}

/* Room-Band Button: hellgrau */
.band-btn{
	 margin-top: clamp(10px, 1.2vw, 18px);
  align-self:flex-start;
  background: #f0f0f0;          /* helles Grau */
  color: #000000;     /* Markenfarbe für Text */
  border: 1px solid #ddd;       /* dezenter Rahmen */
  padding: .75rem 1rem;
  border-radius: 8px;           /* wie zuvor – gern auf 0 setzen, wenn eckig gewünscht */
  text-decoration: none;
  transition: background .15s, border-color .15s, opacity .2s;
}

.band-btn:hover{
  background: #e7e7e7;
  border-color: #ccc;
  opacity: 1;
}

.band-btn:focus{
  outline: 2px solid #cfcfcf;
  outline-offset: 2px;
}

.band-btn:active{
  background: #dfdfdf;
}


/* Mobil: Aufzählungspunkte untereinander */
@media (max-width: 900px) {
  .amenities-3rows {
    display: block !important;   /* Grid aushebeln */
    margin: 0 auto;              /* Block zentriert halten */
    padding: 0;
  }
  .amenities-3rows li {
    margin-bottom: 6px;          /* kleiner Abstand zwischen Punkten */
  }
}

/* Mobile: .content-70 nicht begrenzen, volle Breite */
@media (max-width: 1000px) {
  .content-70 {
    max-width: 100%; /* statt 70% */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left; /* passt zum mobilen Layout */
  }

  /* Liste untereinander (falls noch nicht ganz unten im CSS) */
  .amenities-3rows {
    display: block !important;
    padding: 0;
    margin: 0;
  }
  .amenities-3rows li { margin-bottom: 6px; }
}

/* Mobile-Optimierung für .maincontent */
.maincontent > *:last-child { margin-bottom: 0; } /* kein Extraabstand am Ende */
.maincontent img,
.maincontent video { max-width: 100%; height: auto; display: block; }

/* ≤900px: schmalere Ränder, unten kein Padding */
@media (max-width: 900px) {
  .maincontent { padding: 20px 12px 0 12px; } /* bottom 0 */
}

/* ≤600px: noch etwas kompakter */
@media (max-width: 600px) {
  .maincontent { margin-top: 12px; padding: 14px 8px 0 8px; } /* bottom 0 */
}

/* Basis: nur links/rechts, oben/unten = 0 */
.maincontent {
  padding-block: 0;

}

/* ≤900px: etwas schmaler */
@media (max-width: 900px) {
  .maincontent { padding-inline: 20px; }
}

/* ≤600px: noch kompakter */
@media (max-width: 600px) {
  .maincontent { padding-inline: 20px; }
}

/* --- Mobile-Optimierungen für Zimmerbereiche (Room-Band) --- */

/* 1) Bild/Slider: stabiles Seitenverhältnis, bessere Touch-Ziele */
@media (max-width: 900px){
  .band-image{
    aspect-ratio: 3 / 2;   /* passt zu 1000×667 */
    min-height: auto;      /* statt fixer Höhe */
  }
  .room-slider-nav-btn{ width: 44px; height: 44px; } /* größere Tap-Ziele */
  .room-slider-dots{ bottom: 8px; }
}

/* 2) Karte (Textseite): kompaktere Abstände & Lesbarkeit */
@media (max-width: 900px){
  .band-card{
    padding: clamp(14px, 4vw, 22px);
    border-radius: 0 0 12px 12px;
  }
  .band-card h2{ font-size: clamp(1.15rem, 2.2vw + 1rem, 1.4rem); }
  .band-card p{ font-size: 1rem; line-height: 1.55; }
}

/* 3) Meta-„Tabelle“: umbrechen & mittig ausrichten */
@media (max-width: 900px){
  .room-meta{
    grid-auto-flow: row;        /* Spalten untereinander */
    grid-auto-columns: unset;
    width: 100%;
    max-width: 520px;           /* verhindert Zeilenbruch der Labels */
    margin-left: 0;
    margin-right: 0;
  }
  .room-meta .meta-item,
  .room-meta .meta-item.right{ text-align: center; }
  .room-meta .meta-label{ padding: 6px 10px; }
  .room-meta .meta-value,
  .room-meta .meta-icons{ padding: 10px; }
}
@media (max-width: 480px){
  .room-meta{ max-width: 100%; }
}

/* 4) Kleine Ausstattungslisten in Karten: einspaltig */
@media (max-width: 900px){
  .band-amenities{ grid-template-columns: 1fr; }
}

/* 5) Button: mehr Luft, optional volle Breite */
@media (max-width: 900px){
  .band-card .band-btn{
    margin-top: 14px;
    /* optional aktivieren:
    display:block; width:100%; text-align:center;
    */
  }
}

/* 6) Abstand zwischen Zimmerzeilen: kompakter */
@media (max-width: 900px){
  .room-band-row + .room-band-row{ margin-top: clamp(6px, 2vw, 12px); }
}

/* Mobile: größeren Abstand zwischen den Zimmern */
@media (max-width: 900px) {
  .room-band-row + .room-band-row {
    margin-top: clamp(24px, 5vw, 36px); /* vorher kleiner – jetzt deutlich größer */
  }
}

/* Extra-kompaktgeräte: noch mehr Abstand möglich */
@media (max-width: 600px) {
  .room-band-row + .room-band-row {
    margin-top: clamp(28px, 6vw, 44px);
  }
}






















/* --- HOME: Zwei-Spalten-Layout (links Text, rechts Bilder 300px) --- */
.home-split {
  display: grid;
  grid-template-columns: 1fr 300px;             /* rechts fix 300px */
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  margin: clamp(12px, 2vw, 24px) 0;
}

.home-split-text > * + * {                      /* Abstände zwischen Text-Elementen */
  margin-top: 0.9rem;
}

/* Rechte Spalte (Bilderstapel) */
.home-split-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-aside-item {
  margin: 0;
  padding: 8px;                                 /* etwas Innenabstand */
  border: 1px solid #e6e6e6;                    /* dünner grauer Rahmen */
  background: #fff;
  border-radius: 0;                              /* eckig */
}

.home-aside-item img {
  display: block;
  width: 100%;
  max-width: 300px;                              /* Sicherheit */
  height: auto;
}

.home-aside-caption {
  margin-top: 8px;
  line-height: 1.5;
  color: #333;
}

/* Responsiv: unter 900px untereinander */
@media (max-width: 900px) {
  .home-split {
    grid-template-columns: 1fr;                  /* einspaltig */
  }
  .home-split-aside {
    margin-top: 8px;
  }
  .home-aside-item img {
    max-width: 100%;
  }
}

/* HOME: Bilder-Karten ohne Rahmen & ohne Padding */
.home-aside-item {
  border: none;
  padding: 0;              /* kein Innenabstand */
  background: transparent; /* optional: falls wirklich „nackt“ gewünscht */
}

.home-aside-item img {
  display: block;
  width: 100%;
  height: auto;
}

.home-aside-caption {
  margin-top: 8px;
  padding: 0;              /* auch hier kein seitliches Padding */
}





























/* --- Horizontale Bildleiste (400x400) --- */
.gallery-section {
  max-width: var(--max-width);
  margin: 0px auto 28px;
  padding: 0 0px;
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-head h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--font-color);
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-arrow {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--main-green);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59,69,32,0.18);
  transition: filter .15s ease, transform .05s ease;
}
.gallery-arrow:hover { filter: brightness(1.05); }
.gallery-arrow:active { transform: translateY(1px); }

.gallery-viewport {
  --gallery-gap: 12px;
  --gallery-size: 200px;   /* Ziel: 400x400 */
  position: relative;
  overflow: hidden;         /* versteckt den Überlauf */
  background: var(--gray);
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(59,69,32,0.06);
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: var(--gallery-gap);
  padding: 12px; /* optischer Außenabstand */
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 0.45s cubic-bezier(.5,.2,.2,1);
}

.gallery-item {
  flex: 0 0 auto;
  width: var(--gallery-size);
  height: var(--gallery-size);
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Bilder füllen 400x400 sauber */
  display: block;
}

/* Responsive – auf kleineren Geräten verkleinern wir die Kacheln dezent */
@media (max-width: 900px) {
  .gallery-viewport { --gallery-size: 320px; }
}
@media (max-width: 600px) {
  .gallery-viewport { --gallery-size: 260px; }
}

















/* Section Wrapper */
.zimmer-ausstattung {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 18px;
}

.zimmer-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 22px;
}

/* Panorama-Viewport mit festem Bild */
.zimmer-panorama-viewport {
  position: relative;
  height: 320px;
  background-image: url("https://zur-traube-velbert.de/hotelzimmer/hotel-zur-traube-velbert-doppelzimmer-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 18px;
}

/* Weiße Overlay-Box links */
.zimmer-panorama-box {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: clamp(12px, 2vw, 24px);
  width: min(420px, 48%);
  background: rgba(255,255,255,0.96);
  padding: clamp(12px, 1.6vw, 20px) clamp(14px, 2vw, 22px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Typografie */
.zimmer-panorama-box h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--main-green);
}
.zimmer-panorama-box p {
  margin: 0 0 10px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .zimmer-panorama-viewport { height: 400px; }
  .zimmer-panorama-box {
    left: clamp(8px, 3vw, 14px);
    width: 75%;
    padding: 12px 14px;
  }
}
/* CTA-Button in der Panorama-Box */
.zimmer-panorama-cta {
  margin-top: auto;                 /* rutscht ans Ende, falls viel Text */
  align-self: flex-start;           /* linksbündig */
  display: inline-block;
  padding: 12px 18px;
  background: #f0f0f0;              /* helles Grau */
  color: #000;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
  font-weight: 600;
  transition: background .15s, border-color .15s, transform .08s, opacity .2s;
}
.zimmer-panorama-cta:hover { background:#e7e7e7; border-color:#ccc; }
.zimmer-panorama-cta:active { transform: translateY(1px); }
.zimmer-panorama-cta:focus { outline:2px solid #cfcfcf; outline-offset:2px; }










/* BUTTON */
.button {
  align-self: flex-start;           /* linksbündig */
  display: inline-block;
  padding: 12px 18px;
  background: #f0f0f0;              /* helles Grau */
  color: #000;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  
  font-weight: 600;
  transition: background .15s, border-color .15s, transform .08s, opacity .2s;
}
.button:hover { background:#e7e7e7; border-color:#ccc; }
.button-panorama-cta:active { transform: translateY(1px); }
.button:focus { outline:2px solid #cfcfcf; outline-offset:2px; }





