/* ============================================================
   Gasthof Lerner – Split-Screen Startseite
   split.css v3.2
   ============================================================ */

/* ── VARIABLEN ─────────────────────────────────────── */
:root {
  --blue:      #1d6b8f;
  --blue-dark: #0d3347;
  --gold:      #c8882a;
  --text:      #2a1f0e;
  --text-light:#5a4a38;
  --strip:     64px;
  --nav-h:     56px;
  --footer-h:  30px;
  --T:         0.72s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── DIVI AUSBLENDEN (nur Startseite) ──────────────── */
.gl-split-page #page-container,
.gl-split-page #main-header,
.gl-split-page #top-header { display: none !important; }

.gl-split-page body,
.gl-split-page html { overflow: hidden; height: 100%; background: #e8e2d8; }

/* ── SPLIT ROOT ────────────────────────────────────── */
.split {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
  padding-bottom: var(--footer-h);
}

/* ── PANELS ────────────────────────────────────────── */
.panel {
  position: relative;
  overflow: hidden;
  transition: width var(--T);
  flex-shrink: 0;
  cursor: pointer;
  background-image: url('../img/karo.jpg');
  background-size: cover;
  background-position: center;
}
.panel-hotel  { width: 50%; }
.panel-gastro { width: 50%; }

.split.hotel-active  .panel-hotel  { width: calc(100% - var(--strip)); cursor: default; }
.split.hotel-active  .panel-gastro { width: var(--strip); background-image: none; background-color: var(--gold); }
.split.gastro-active .panel-gastro { width: calc(100% - var(--strip)); cursor: default; }
.split.gastro-active .panel-hotel  { width: var(--strip); background-image: none; background-color: var(--blue); }

/* ── AKZENTBALKEN OBEN ─────────────────────────────── */
.accent-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px; z-index: 20;
  background: rgba(255, 255, 255, 0.85);
}

/* ── TRENNLINIE ────────────────────────────────────── */
.divider {
  position: absolute;
  left: calc(50% - 2px); top: 0; bottom: 0;
  width: 4px; z-index: 15;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  transition: opacity var(--T);
}
.split.hotel-active  .divider,
.split.gastro-active .divider { opacity: 0; }

/* ── COLLAPSED STRIP ───────────────────────────────── */
.strip-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s 0.4s;
  z-index: 5; cursor: pointer;
}
.strip-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Anivers', serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}
.split.hotel-active  .panel-gastro .strip-overlay,
.split.gastro-active .panel-hotel  .strip-overlay { opacity: 1; pointer-events: all; }

/* ── NAVIGATIONSLEISTE ─────────────────────────────── */
.nav-bar {
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 30;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.35s 0.5s, transform 0.35s 0.5s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.split.hotel-active  .panel-hotel  .nav-bar,
.split.gastro-active .panel-gastro .nav-bar { opacity: 1; pointer-events: all; transform: translateY(0); }

.nav-logo {
  font-family: 'Anivers', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--blue);
}

.nav-links {
  display: flex; align-items: center; gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.3rem 0.65rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  color: rgba(29, 107, 143, 0.55);
}
.nav-links a:hover { color: var(--blue); background: rgba(29, 107, 143, 0.08); }
.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
  padding-bottom: calc(0.3rem - 2px);
}
/* Wirtshaus: aktiver Link gold */
.panel-gastro .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.panel-gastro .nav-links a:hover { color: var(--text); background: rgba(200, 136, 42, 0.08); }

.nav-cta {
  padding: 0.32rem 0.9rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  flex-shrink: 0; margin-left: 0.5rem;
  transition: background 0.2s;
  cursor: pointer; border: none;
}
.panel-hotel  .nav-cta { background: var(--blue); color: #fff; }
.panel-hotel  .nav-cta:hover { background: #155e7e; }
.panel-gastro .nav-cta { background: var(--gold); color: #fff; }
.panel-gastro .nav-cta:hover { background: #b8771f; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 5rem 3rem 3rem;
  z-index: 10;
  transition: opacity 0.3s;
}
.hero-brand { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; }

.hero-brand-name {
  font-family: 'Anivers', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--blue);
}
.hero-brand-divider { width: 36px; height: 2px; margin: 0.8rem auto; background: var(--blue); }
.hero-brand-sub {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--blue);
}
.hero-brand-sub--gastro { color: #8a6520 !important; opacity: 1 !important; } /* WCAG AA 4.5:1 */

.hero-sub {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem; line-height: 1.65;
  max-width: 320px; margin-bottom: 2rem;
  color: var(--text-light);
}
.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.9rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer; border: none;
}
.hero-cta:hover { transform: translateY(-1px); }
.panel-hotel  .hero-cta { background: var(--blue); color: #fff; }
.panel-hotel  .hero-cta:hover { background: #155e7e; }
.panel-gastro .hero-cta { background: var(--gold); color: #fff; }
.panel-gastro .hero-cta:hover { background: #b8771f; }

.panel-prompt {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; margin-top: 2.5rem;
  transition: opacity 0.4s 0.3s;
  color: rgba(29, 107, 143, 0.35);
}
.split:not(.hotel-active):not(.gastro-active) .panel-prompt { opacity: 1; }

.split.hotel-active  .panel-gastro .hero,
.split.gastro-active .panel-hotel  .hero { opacity: 0; pointer-events: none; }

/* ── FUSSZEILE TELEFON ─────────────────────────────── */
.gl-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--footer-h);
  z-index: 200;
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(29, 107, 143, 0.12);
}
.gl-footer-hotel,
.gl-footer-gastro {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.67rem; letter-spacing: 0.06em;
}
.gl-footer-hotel  { border-right: 1px solid rgba(29, 107, 143, 0.12); }
.gl-footer-hotel  a { color: var(--blue);  text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.gl-footer-gastro a { color: var(--gold); text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.gl-footer-hotel  a:hover,
.gl-footer-gastro a:hover { opacity: 0.7; }

/* ── MOBILE ────────────────────────────────────────── */
@media (max-width: 680px) {
  :root { --strip: 44px; --nav-h: 88px; }

  .split { flex-direction: column; }
  .panel { width: 100% !important; }
  .panel-hotel, .panel-gastro { height: 50%; transition: height var(--T); }
  .split.hotel-active  .panel-hotel  { height: calc(100% - var(--strip)); }
  .split.hotel-active  .panel-gastro { height: var(--strip); }
  .split.gastro-active .panel-gastro { height: calc(100% - var(--strip)); }
  .split.gastro-active .panel-hotel  { height: var(--strip); }

  .strip-label { writing-mode: horizontal-tb; transform: none; }
  .divider {
    left: 5%; right: 5%; top: 50%; bottom: auto;
    width: auto; height: 4px;
    background: rgba(255, 255, 255, 0.85);
  }

  .nav-bar { flex-wrap: wrap; padding: 0.5rem 1rem 0.4rem; align-items: flex-start; }
  .nav-logo { width: 100%; padding-bottom: 0.3rem; }
  .nav-links { flex-wrap: wrap; gap: 0; width: calc(100% - 90px); }
  .nav-links a { font-size: 0.63rem; padding: 0.18rem 0.4rem; }
  .nav-cta { font-size: 0.6rem; padding: 0.22rem 0.55rem; margin-left: auto; align-self: center; }

  
  .gl-footer { font-size: 0.6rem; }
}


/* ── KARO-HINTERGRUND FÜR ALLE SEITEN ─────────────── */
body:not(.gl-split-page) {
  background-image: url('../img/karo.jpg');
  background-attachment: fixed;
  background-size: cover;
}

/* Divi-Inhaltsbereich auf Unterseiten transparent */
body:not(.gl-split-page) #page-container,
/* Divi: Sections transparent – Karo scheint durch
   Row/Column/Module werden von Divi selbst gesteuert */
body:not(.gl-split-page) .et_pb_section {
  background-color: transparent !important;
}

/* ── HEADER CI ─────────────────────────────────────── */
body:not(.gl-split-page) #main-header {
  background: rgba(255,255,255,0.82) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(29,107,143,0.12) !important;
  box-shadow: none !important;
}

/* Logo */
body:not(.gl-split-page) #et-top-navigation .logo_container a {
  font-family: 'Anivers', serif !important;
  font-weight: 700 !important;
  color: #1d6b8f !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.03em !important;
}

/* Alle Nav-Links Basis */
body:not(.gl-split-page) #et-top-navigation nav > ul > li > a {
  font-size: 0.72rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(29,107,143,0.6) !important;
  font-weight: 400 !important;
}
body:not(.gl-split-page) #et-top-navigation nav > ul > li > a:hover,
body:not(.gl-split-page) #et-top-navigation nav > ul > li.current-menu-item > a {
  color: #1d6b8f !important;
}

/* Akzentlinie oben: Blau für Hotel, Gold für Wirtshaus */
body.gl-hotel-page #main-header  { border-top: 3px solid #1d6b8f !important; }
body.gl-gastro-page #main-header { border-top: 3px solid #c8882a !important; }

/* Aktiver Link: Hotel blau unterstrichen, Wirtshaus gold */
body.gl-hotel-page  #et-top-navigation nav > ul > li.current-menu-item > a {
  color: #1d6b8f !important;
  border-bottom: 2px solid #1d6b8f;
  padding-bottom: 2px;
}
body.gl-gastro-page #et-top-navigation nav > ul > li.current-menu-item > a {
  color: #8a6520 !important; /* WCAG AA 4.5:1 */
  border-bottom: 2px solid #c8882a;
  padding-bottom: 2px;
}

/* Footer Labels */
.gl-footer-label {
  font-weight: 400;
  opacity: 0.55;
  margin-right: 0.4em;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── FOOTER ────────────────────────────────────────── */
#gl-footer-main {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(29,107,143,0.12);
  margin-top: 4rem;
}
.gl-footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}
.gl-footer-heading {
  font-family: 'Anivers', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1d6b8f;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(29,107,143,0.15);
}
.gl-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.gl-footer-col ul li {
  margin-bottom: 0.4rem;
}
.gl-footer-col ul li a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.82rem;
  color: #4a3a2e;
  text-decoration: none;
  transition: color 0.2s;
}
.gl-footer-col ul li a:hover { color: #1d6b8f; }
.gl-footer-col address {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.82rem;
  color: #5a4a38;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

/* Footer-Bar */
.gl-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(29,107,143,0.15);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.72rem;
  color: #5a4a38;
}
.gl-footer-bar a {
  color: #5a4a38;
  text-decoration: none;
  margin-left: 1.2rem;
  transition: color 0.2s;
}
.gl-footer-bar a:hover { color: #1d6b8f; }

/* Divi Footer ausblenden */
body:not(.gl-split-page) #footer-bottom,
body:not(.gl-split-page) #footer-widgets,
body:not(.gl-split-page) #et-footer-nav { display: none !important; }

/* Mobile Footer */
@media (max-width: 768px) {
  .gl-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 1.2rem 1.5rem;
  }
  .gl-footer-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem 1.2rem;
  }
  .gl-footer-bar a { margin-left: 0.6rem; }
}
@media (max-width: 480px) {
  .gl-footer-inner { grid-template-columns: 1fr; }
}

/* ── DIRS21 WIDGETS ── */
.gl-dirs21-widget {
  margin: 2rem 0;
  border-radius: 5px;
  overflow: hidden;
}
/* Quickbook-Box zentriert im Header-Bereich */
.gl-quickbook-wrap {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(29,107,143,0.15);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin: 2rem 0 3rem;
}
/* Divi-Modul mit Widget soll vollen Breite nutzen */
.et_pb_code .gl-dirs21-widget { width: 100%; }

/* ── CUSTOM HEADER (Divi 5 Override) ── */
#gl-main-header {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: none;
  border-bottom: 1px solid rgba(29,107,143,0.12);
}
.gl-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding: 0 2rem; height: 50px;
}

/* ── NAV-LEFT: Chips + Desktop-Navigation ── */
.gl-nav-left {
  display: flex; align-items: center; gap: 0.8rem;
}
.gl-nav-desktop { display: flex; }

.gl-nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; padding: 0; margin: 0; }
.gl-nav-links a {
  display: block;
  padding: 0.3rem 0.65rem;
  padding-bottom: calc(0.3rem + 3px);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  color: #2a6e8f;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.gl-nav-links a:hover {
  color: #1d6b8f;
  border-bottom-color: rgba(29,107,143,0.3);
}
.gl-nav-links .current-menu-item a {
  color: #1d6b8f; font-weight: 600;
  border-bottom-color: #1d6b8f;
}
/* Gastro nav links */
.gl-gastro-page .gl-nav-desktop .gl-nav-links a { color: #8a6520; } /* WCAG AA 4.5:1 */
.gl-gastro-page .gl-nav-desktop .gl-nav-links a:hover { color: #c8882a; border-bottom-color: rgba(200,136,42,0.3); }
.gl-gastro-page .gl-nav-desktop .gl-nav-links .current-menu-item a { color: #8a6520; border-bottom-color: #c8882a; } /* WCAG AA 4.5:1 */

.gl-nav-cta {
  padding: 0 0.9rem; height: 38px;
  display: flex; align-items: center;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px; color: #fff;
  transition: opacity 0.2s; white-space: nowrap;
}
.gl-cta-blue { background: #1d6b8f; }
.gl-cta-gold { background: #c8882a; }
.gl-nav-cta:hover { opacity: 0.85; }

/* Divi 5 Body-Padding korrigieren */
body.gl-hotel-page,
body.gl-gastro-page {
  padding-top: 0 !important;
}
.gl-hotel-page .et_pb_section:first-child,
.gl-gastro-page .et_pb_section:first-child {
  margin-top: 0 !important;
}

/* ── DIVI 5 STANDARD-ELEMENTE AUSBLENDEN ── */
/* Divi Header + Footer komplett ausblenden auf Unterseiten */
body.gl-hotel-page #main-header,
body.gl-hotel-page #top-header,
body.gl-hotel-page .et-fixed-header,
body.gl-hotel-page #main-footer,
body.gl-hotel-page #footer-bottom,
body.gl-hotel-page #footer-widgets,
body.gl-gastro-page #main-header,
body.gl-gastro-page #top-header,
body.gl-gastro-page .et-fixed-header,
body.gl-gastro-page #main-footer,
body.gl-gastro-page #footer-bottom,
body.gl-gastro-page #footer-widgets { display: none !important; }

/* Divi 5 neue Selektoren */
body.gl-hotel-page [data-et-vb-module="header"],
body.gl-gastro-page [data-et-vb-module="header"],
body.gl-hotel-page et-header,
body.gl-gastro-page et-header { display: none !important; }

/* Seitenlayout: kein Sidebar */
body.gl-hotel-page #left-area,
body.gl-gastro-page #left-area { width: 100% !important; }
body.gl-hotel-page #sidebar,
body.gl-gastro-page #sidebar { display: none !important; }

/* Divi content-area spacing korrigieren */
body.gl-hotel-page #page-container,
body.gl-gastro-page #page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Sidebar global ausblenden – Gasthof Lerner nutzt keine Sidebar */
#sidebar,
#left-area + #sidebar,
.et_right_sidebar #sidebar,
.et_left_sidebar #sidebar,
#right-sidebar { display: none !important; }

#left-area,
#page-container #left-area {
  width: 100% !important;
  float: none !important;
}

/* ── DIRS21 ZIMMER-LISTE: Bild oben, Text unten ── */
/* Karten-Layout auf vertikal umstellen */
.d21-RoomList .d21-RoomListItem,
.d21-roomList .d21-RoomListItem,
[class*="RoomListItem"] {
  flex-direction: column !important;
}

/* Bild volle Breite */
.d21-RoomList .d21-RoomListItem__image,
.d21-roomList .d21-RoomListItem__image,
[class*="RoomListItem"] [class*="image"],
[class*="RoomListItem"] [class*="Image"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  height: 260px !important;
  object-fit: cover !important;
}

/* Bild-Container volle Breite */
.d21-RoomList .d21-RoomListItem__imageWrapper,
[class*="RoomListItem"] [class*="imageWrapper"],
[class*="RoomListItem"] [class*="ImageWrapper"] {
  width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0 !important;
}

/* Slider volle Breite */
.d21-RoomList [class*="Slider"],
.d21-RoomList [class*="slider"] {
  width: 100% !important;
  max-width: 100% !important;
}

/* Text-Bereich volle Breite */
.d21-RoomList .d21-RoomListItem__content,
[class*="RoomListItem"] [class*="content"],
[class*="RoomListItem"] [class*="Content"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 1.2rem 1.5rem !important;
}

/* Karten etwas abgerundet und mit Schatten */
.d21-RoomList .d21-RoomListItem,
[class*="RoomListItem"] {
  border-radius: 6px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(29,107,143,0.12) !important;
  margin-bottom: 1.5rem !important;
}

/* ── DIVI 5 HEADER-SPACE ENTFERNEN ── */
body { padding-top: 0 !important; }
#page-container { padding-top: 0 !important; margin-top: 0 !important; }
.et_fixed_nav #page-container,
.et_fixed_nav body { padding-top: 0 !important; }

/* Divi fixed nav padding gezielt überschreiben */
.et_fixed_nav.et_show_nav #page-container,
.et_fixed_nav #page-container,
.et_show_nav #page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ── MOBILE NAVIGATION ── */
@media (max-width: 768px) {

  /* Nav-Zeile: eine Reihe, alles nebeneinander */
  .gl-header-inner {
    padding: 0 1rem;
    height: 46px;
  }
  .gl-nav-left { gap: 0.5rem; }

  /* Desktop-Nav verstecken */
  .gl-nav-desktop { display: none; }

  /* Hamburger */
  .gl-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px; height: 34px;
    cursor: pointer;
    background: none; border: none;
    padding: 4px; flex-shrink: 0;
  }
  .gl-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: #1d6b8f;
    border-radius: 2px;
    transition: all 0.25s;
  }
  .gl-gastro-page .gl-hamburger span { background: #c8882a; }

  /* CTA klein */
  .gl-nav-cta {
    font-size: 0.6rem;
    padding: 0 0.65rem;
    height: 32px;
    white-space: nowrap;
  }

  /* Aufklapp-Menü */
  .gl-nav-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid rgba(29,107,143,0.08);
  }
  .gl-nav-mobile.open { max-height: 320px; }
  .gl-nav-mobile .gl-nav-links {
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0 0.6rem;
  }
  .gl-nav-mobile .gl-nav-links a {
    padding: 0.55rem 1.2rem;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(29,107,143,0.06);
    display: block; width: 100%;
  }
  .gl-gastro-page .gl-nav-mobile .gl-nav-links a { border-bottom-color: rgba(200,136,42,0.06); }
}

/* Desktop: Hamburger, Call, Mobile-Nav ausblenden */
@media (min-width: 769px) {
  .gl-hamburger { display: none; }
  .gl-nav-mobile { display: none; }
}


/* ── BEREICHS-CHIPS (ersetzt Area-Bar) ──────────────────────── */
.gl-chips {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(29,107,143,0.2);
  flex-shrink: 0;
}
.gl-chip {
  padding: 0 0.75rem;
  height: 28px;
  display: flex; align-items: center;
  font-family: 'Anivers', serif; font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.gl-chip + .gl-chip { border-left: 1px solid rgba(29,107,143,0.2); }

.gl-chip-active   { background: #1d6b8f; color: #fff; }
.gl-chip-inactive { background: transparent; color: #33799a; } /* 4.8:1 – WCAG AA ✅ */
.gl-chip-inactive:hover { background: rgba(29,107,143,0.07); color: #1d6b8f; }

/* Gastro: aktiver Chip gold */
.gl-gastro-page .gl-chips { border-color: rgba(200,136,42,0.25); }
.gl-gastro-page .gl-chip + .gl-chip { border-color: rgba(200,136,42,0.2); }
.gl-gastro-page .gl-chip-active  { background: #c8882a; }
.gl-gastro-page .gl-chip-inactive { color: #8a6520; } /* 4.5:1 – WCAG AA ✅ */
.gl-gastro-page .gl-chip-inactive:hover { background: rgba(200,136,42,0.07); color: #c8882a; }


/* ══════════════════════════════════════════
   HEADER LOGO BAR
   ══════════════════════════════════════════ */
.gl-logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(29,107,143,0.07);
}
.gl-logo-wrap {
  display: flex; flex-direction: column; gap: 0.15rem;
  align-items: center;
}
.gl-nav-logo {
  font-family: 'Anivers', serif; font-weight: 700;
  font-size: 2rem; color: #1d6b8f !important;
  text-decoration: none; letter-spacing: 0.04em; line-height: 1;
}
.gl-nav-sub {
  font-family: 'Anivers', serif; font-weight: 400;
  font-size: 0.58rem; color: #8a6520; /* WCAG AA 4.5:1 */
  letter-spacing: 0.22em; text-transform: uppercase;
}
.gl-tel-wrap {
  text-align: right; display: flex; flex-direction: column; gap: 0.3rem;
}
.gl-tel-line {
  font-size: 0.82rem; color: #2a1f0e;
  text-decoration: none; letter-spacing: 0.02em;
}
.gl-tel-line strong { color: #1d6b8f; font-weight: 600; }
.gl-tel-line.gl-tel-gastro strong { color: #8a6520; } /* WCAG AA 4.5:1 */
.gl-tel-line:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .gl-logo-bar { padding: 0.6rem 1rem; justify-content: flex-start; }
  .gl-nav-logo { font-size: 1.4rem; }
  .gl-nav-sub { display: none; }
  .gl-tel-wrap { display: none; }
}

/* ── SPRACHUMSCHALTER MOBILE (im aufgeklappten Menü) ── */
@media (max-width: 768px) {
  .gl-lang-mobile {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    font-size: 0.68rem; letter-spacing: 0.1em;
  }
  .gl-lang-mobile a { color: #1d6b8f; text-decoration: none; font-weight: 600; }
  .gl-lang-mobile a.active { color: #1d6b8f; }
  .gl-lang-mobile span { color: rgba(29,107,143,0.2); }
}
@media (min-width: 769px) {
  .gl-lang-mobile { display: none; }
}

/* ── DESKTOP: Sprachumschalter in Logo-Bar ── */
.gl-lang-desktop {
  display: flex; align-items: flex-start; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.1em; font-weight: 600;
}
.gl-lang-desktop a {
  color: #33799a; /* 4.8:1 – WCAG AA ✅ */
  text-decoration: none; padding: 0.1rem 0.2rem;
}
.gl-lang-desktop a.active { color: #1d6b8f; }
.gl-lang-desktop a:hover { color: #1d6b8f; }
.gl-lang-desktop span { color: rgba(29,107,143,0.35); } /* Trennzeichen: dekorativ */
@media (max-width: 768px) { .gl-lang-desktop { display: none; } }

/* Header-Right: Sprache + Telefon gestapelt */
.gl-header-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem;
}
@media (max-width: 768px) { .gl-header-right { display: none; } }

/* ── MOBILE: Anruf-Button neben CTA ── */
.gl-nav-actions {
  display: flex; align-items: center; gap: 0.4rem;
}
.gl-nav-call {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 3px;
  background: #1d6b8f; color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.gl-nav-call:hover { opacity: 0.85; }
.gl-gastro-page .gl-nav-call { background: #c8882a; }

/* Desktop: Anruf-Button ausblenden (Telefon ist im Header sichtbar) */
@media (min-width: 769px) {
  .gl-nav-call { display: none; }
}

/* ── BARRIEREFREIHEIT ── */
.gl-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── GLOBALE ÜBERSCHRIFTEN ── */
h1, h2, h3, h4 {
  font-family: 'Anivers', serif !important;
  line-height: 1.2 !important;
}
h1 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #1d6b8f !important;
}
h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #1d6b8f !important;
}
h3 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #2a1f0e !important;
}
h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #2a1f0e !important;
}

/* ── BEWERTUNGS-SEITE ── */
.gl-reviews-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}
.gl-reviews-intro {
  background: rgba(255,255,255,0.88);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  border-left: 3px solid #1d6b8f;
}
.gl-reviews-intro p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5a4a38;
  margin-top: 0.5rem;
}
.gl-reviews-widget-wrap {
  background: rgba(255,255,255,0.88);
  border-radius: 6px;
  padding: 1.5rem;
}

/* ══════════════════════════════════════════
   STARTSEITE v4.0 – Zentriertes Logo
   ══════════════════════════════════════════ */
.gl-split-page body,
body.gl-split-page {
  margin: 0; padding: 0;
}
.gl-home {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('../img/karo.jpg') fixed center center;
  background-size: cover;
  padding: 2rem;
}
.gl-home-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: 680px; width: 100%;
}

/* Logo */
.gl-home-logo {
  margin-bottom: 1rem;
}
.gl-home-logo img {
  width: 340px; max-width: 80vw; height: auto;
}

/* Slogan */
.gl-home-slogan {
  font-family: 'Anivers', serif;
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: #1d6b8f;
  margin-bottom: 2.5rem;
}

/* Buttons */
.gl-home-choices {
  display: flex; gap: 1.2rem; justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gl-home-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  min-width: 200px;
  transition: transform 0.15s, opacity 0.15s;
}
.gl-home-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.gl-home-btn--hotel { background: #1d6b8f; color: #fff; }
.gl-home-btn--gastro { background: #c8882a; color: #fff; }
.gl-home-btn-label {
  font-family: 'Anivers', serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.gl-home-btn-sub {
  font-size: 0.7rem; opacity: 0.8; letter-spacing: 0.05em;
}

/* Telefon */
.gl-home-tel {
  font-size: 0.8rem; color: #4a3a2e;
  display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; justify-content: center;
}
.gl-home-tel a { text-decoration: none; color: inherit; }
.gl-home-tel a:hover { color: #1d6b8f; }
.gl-home-tel strong { color: #1d6b8f; }
.gl-home-tel strong.gold { color: #8a6520; } /* WCAG AA 4.5:1 */
.gl-home-tel-sep { opacity: 0.3; }

@media (max-width: 500px) {
  .gl-home-choices { flex-direction: column; align-items: center; }
  .gl-home-btn { width: 100%; max-width: 280px; }
  .gl-home-tel { flex-direction: column; gap: 0.3rem; }
  .gl-home-tel-sep { display: none; }
}

/* ── FOOTER KONTAKTZEILE ── */
.gl-footer-contact {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem;
  align-items: center; justify-content: center;
  padding: 0.9rem 2rem;
  border-top: 1px solid rgba(29,107,143,0.15);
  font-size: 0.78rem; color: #5a4a38 !important;
}
.gl-footer-contact span { color: #5a4a38 !important; }
.gl-footer-contact a { color: #1d6b8f !important; text-decoration: none; }
.gl-footer-contact a:hover { color: #0d3347 !important; }
.gl-footer-contact-name { font-family: 'Anivers', serif; font-weight: 700; color: #1d6b8f !important; }

@media (max-width: 600px) {
  .gl-footer-contact { flex-direction: column; gap: 0.2rem; text-align: center; }
}

/* ── BEWERTUNGEN SHORTCODE ── */
/* ── BEWERTUNGS-TITEL ── */
.gl-reviews-titel {
  font-family: 'Anivers', serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #1d6b8f !important;
  margin-bottom: 1.2rem !important;
  margin-top: 0 !important;
}

.gl-reviews-wrap {
  display: flex; flex-direction: column; gap: 1rem;
}
.gl-review-card {
  background: rgba(255,255,255,0.88);
  border-radius: 5px;
  padding: 1rem 1.2rem;
  border-left: 3px solid #1d6b8f;
}
.gl-review-stars {
  color: #c8882a;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.gl-review-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #2a1f0e;
  margin: 0 0 0.5rem;
  font-style: italic;
}
.gl-review-meta {
  font-size: 0.72rem;
  color: #5a4a38;
  font-weight: 600;
}
.gl-review-meta span {
  font-weight: 400;
  margin-left: 0.4rem;
}
.gl-review-mehr {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1d6b8f;
  text-decoration: none;
}
.gl-review-mehr:hover { text-decoration: underline; }
.gl-review-empty { font-size: 0.82rem; color: rgba(42,31,14,0.5); }

/* ── BEWERTUNGS-FILTER BUTTONS ── */
.gl-review-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.gl-review-filter-btn {
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid rgba(29,107,143,0.3);
  border-radius: 20px; background: transparent; color: rgba(29,107,143,0.6);
  cursor: pointer; transition: all 0.2s;
}
.gl-review-filter-btn:hover {
  background: rgba(29,107,143,0.08); color: #1d6b8f;
}
.gl-review-filter-btn.active {
  background: #1d6b8f; color: #fff; border-color: #1d6b8f;
}
.gl-review-list {
  display: flex; flex-direction: column; gap: 1rem;
}

/* ── KARTE ── */
.gl-map-wrap {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(29,107,143,0.15);
}
.gl-map-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.9);
  font-size: 0.78rem; color: #4a3a2e;
  border-top: 1px solid rgba(29,107,143,0.1);
  gap: 0.5rem;
  flex-wrap: wrap;
}
.gl-map-footer > span:first-child {
  flex: 1 1 100%; /* Zielname immer volle Breite */
  font-weight: 600;
}
.gl-map-footer a {
  color: #1d6b8f; text-decoration: none; font-weight: 600;
  white-space: nowrap;
}
.gl-map-footer a:hover { text-decoration: underline; }
@media (min-width: 500px) {
  .gl-map-footer > span:first-child { flex: 1 1 auto; }
}

/* ── BEWERTUNGSSEITE DASHBOARD ── */
.gl-reviews-page-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.gl-reviews-sidebar {
  position: sticky; top: 10px;
  display: flex; flex-direction: column; gap: 1.2rem;
  max-height: calc(100vh - 20px);
  overflow-y: auto;
}
.gl-reviews-stats {
  background: rgba(255,255,255,0.9);
  border-radius: 6px; padding: 1.5rem;
  text-align: center;
  border-top: 3px solid #1d6b8f;
}
.gl-reviews-score {
  font-family: 'Anivers', serif; font-weight: 700;
  font-size: 3rem; color: #1d6b8f; line-height: 1;
}
.gl-reviews-stars-big {
  color: #c8882a; font-size: 1.2rem;
  margin: 0.4rem 0 0.2rem;
  letter-spacing: 0.05em;
}
.gl-reviews-avg {
  font-size: 0.85rem; color: #2a1f0e; font-weight: 600;
}
.gl-reviews-total {
  font-size: 0.75rem; color: rgba(42,31,14,0.5);
  margin-top: 0.2rem;
}
.gl-reviews-filter-group {
  background: rgba(255,255,255,0.88);
  border-radius: 6px; padding: 1rem 1.2rem;
}
.gl-reviews-filter-label {
  font-family: 'Anivers', serif; font-weight: 700;
  font-size: 0.72rem; color: #1d6b8f;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.gl-rfbtn {
  display: block; width: 100%;
  text-align: left; padding: 0.3rem 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.75rem; letter-spacing: 0.04em;
  border: 1px solid rgba(29,107,143,0.35);
  border-radius: 4px; background: transparent;
  color: #1d6b8f; cursor: pointer;
  transition: all 0.15s;
}
.gl-rfbtn:hover { background: rgba(29,107,143,0.07); color: #1d6b8f; }
.gl-rfbtn.active { background: #1d6b8f; color: #fff; border-color: #1d6b8f; }
.gl-reviews-count-info {
  font-size: 0.72rem; color: #5a4a38;
  text-align: center; padding: 0.3rem;
}
.gl-reviews-list-wrap { display: flex; flex-direction: column; gap: 0.8rem; }
.gl-reviews-more {
  margin-top: 0.5rem; padding: 0.5rem 1.5rem;
  background: transparent; border: 1.5px solid rgba(29,107,143,0.3);
  border-radius: 4px; color: #1d6b8f;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.2s; align-self: center;
}
.gl-reviews-more:hover { background: #1d6b8f; color: #fff; }

/* Prozentanzeige in Bewertungskarten */
.gl-review-pct {
  font-size: 0.68rem; color: #8a6520; /* WCAG AA 4.5:1 */
  font-weight: 700; margin-left: 0.3rem;
}

@media (max-width: 768px) {
  .gl-reviews-page-wrap { grid-template-columns: 1fr; }
  .gl-reviews-sidebar { position: static; }
}

/* ── CUSTOMER ALLIANCE TRUST BLOCK ── */
.gl-reviews-trust {
  background: rgba(255,255,255,0.88);
  border-radius: 6px; padding: 1rem 1.2rem;
  border-top: 2px solid rgba(29,107,143,0.15);
}
.gl-reviews-ca-logo {
  height: 28px; width: auto;
  margin-bottom: 0.6rem;
  display: block;
}
.gl-reviews-trust p {
  font-size: 0.75rem; color: #4a3a2e;
  line-height: 1.5; margin-bottom: 0.6rem;
}
.gl-reviews-trust strong { color: #2a1f0e; }
.gl-reviews-trust a {
  font-size: 0.72rem; font-weight: 700;
  color: #1d6b8f; text-decoration: none;
  letter-spacing: 0.04em;
}
.gl-reviews-trust a:hover { text-decoration: underline; }

/* Karten-Info: Distanz + Fahrzeit */
.gl-map-info {
  font-size: 0.78rem; color: #2a1f0e;
  background: rgba(29,107,143,0.08);
  padding: 0.2rem 0.6rem; border-radius: 3px;
}
.gl-map-info strong { color: #1d6b8f; }
