/* FILE: styles.css  (ALLES ersetzen) */
:root{
  --bg0:#060814;
  --text:#eef2ff;
  --muted:rgba(238,242,255,.72);
  --line:rgba(255,255,255,.12);

  --accent:#ffcc00;
  --accent2:#6cc6ff;

  --cardA:rgba(18,22,44,.60);
  --cardB:rgba(10,14,30,.56);

  --radius:22px;
  --shadow: 0 28px 90px rgba(0,0,0,.55);
  --shadow2: 0 18px 55px rgba(0,0,0,.45);
  --blur: 18px;

  --max: 1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: var(--bg0);
  overflow-x:hidden;
}

/* Global animated background */
.bg{position:fixed; inset:0; z-index:-5;}
.bg__image{
  position:absolute; inset:-20px;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(108,198,255,.14), transparent 62%),
    radial-gradient(900px 520px at 88% 22%, rgba(255,204,0,.10), transparent 62%),
    url("assets/img/hintergrund%20website.png") center/cover no-repeat;
  filter:saturate(1.12) contrast(1.06);
  transform:scale(1.05);
}
.bg__vignette{position:absolute; inset:0; background: radial-gradient(1200px 860px at 50% 30%, rgba(0,0,0,.06), rgba(0,0,0,.74));}
.bg__glow{
  position:absolute; inset:-30%;
  background: conic-gradient(from 180deg, rgba(255,204,0,.14), rgba(108,198,255,.12), rgba(255,204,0,.10));
  filter: blur(82px);
  opacity:.55;
  animation: glow 10s ease-in-out infinite alternate;
}
.bg__noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.25;
}
@keyframes glow{
  0%{transform:translate3d(-1%, -2%, 0) rotate(-8deg) scale(1.0)}
  100%{transform:translate3d(2%, 1%, 0) rotate(10deg) scale(1.05)}
}

.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Header */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(var(--blur));
  background: rgba(5,7,18,.58);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:center;
  padding:12px 0; gap:14px;
}

/* FIX: Brand darf nicht zusammenquetschen wenn Dropdown da ist */
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:var(--text);
  min-width:240px;
  flex: 1 1 auto;
}
.brand__logo{width:44px; height:44px; object-fit:contain; filter: drop-shadow(0 12px 30px rgba(0,0,0,.45));}
.brand__name{font-weight:900; letter-spacing:.2px; font-size:18px; line-height:1.1}
.brand__sub{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.nav a{
  color:rgba(238,242,255,.88);
  text-decoration:none;
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
  transition: transform .15s ease, background .15s ease;
}
.nav a:hover{background: rgba(255,255,255,.06); transform: translateY(-1px);}
.nav__cta{
  background: linear-gradient(135deg, rgba(255,204,0,.96), rgba(255,160,0,.96));
  color:#141414 !important;
  font-weight:900;
  box-shadow: 0 16px 40px rgba(255,204,0,.18);
}

/* FIX: Language Dropdown Styling (passt zum Header Look) */
.langSelect{display:flex; align-items:center; position:relative;}
.langSelect select{
  -webkit-appearance:none;
  appearance:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(238,242,255,.92);
  border-radius: 14px;
  padding: 10px 34px 10px 12px;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  outline: none;
  cursor:pointer;
  backdrop-filter: blur(var(--blur));
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.langSelect select:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.langSelect select:focus{
  border-color: rgba(255,204,0,.42);
}
.langSelect::after{
  content:"▾";
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-52%);
  color: rgba(238,242,255,.85);
  pointer-events:none;
  font-size: 12px;
}
.langSelect option{color:#0b0f1a;}

.burger{display:none; background:transparent; border:0; padding:10px; border-radius:14px; cursor:pointer;}
.burger span{display:block; width:22px; height:2px; background:rgba(238,242,255,.9); margin:5px 0; border-radius:9px;}

.mobile{border-top:1px solid var(--line); background: rgba(5,7,18,.72); backdrop-filter: blur(var(--blur));}
.mobile__inner{padding:12px 0; display:grid; grid-template-columns: 1fr 1fr; gap:10px;}
.mobile a{
  text-decoration:none; color:rgba(238,242,255,.9);
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background: rgba(255,255,255,.04);
}

/* Panels */
.panel{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.52));
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 22px 80px rgba(0,0,0,.36);
  padding: 18px 18px;
}
.panel--hero{max-width: 980px;}

.kicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  font-size: 12px;
  letter-spacing:.2px;
}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  padding: 58px 0 54px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero__slides{position:absolute; inset:0; z-index:-1; overflow:hidden;}
.hero__slide{
  position:absolute; inset:-10%;
  background-size:cover; background-position:center;
  opacity:0;
  transform:scale(1.08);
  animation: slide 18s infinite;
  filter: saturate(1.1) contrast(1.05);
}
.hero__slide:nth-child(1){animation-delay:0s}
.hero__slide:nth-child(2){animation-delay:6s}
.hero__slide:nth-child(3){animation-delay:12s}
@keyframes slide{
  0%{opacity:0; transform:scale(1.08)}
  8%{opacity:1}
  33%{opacity:1; transform:scale(1.14)}
  41%{opacity:0}
  100%{opacity:0}
}

.hero__content{padding: 26px 0 10px;}
.pill{
  display:inline-flex; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,14,30,.45);
  color: rgba(238,242,255,.92);
  font-weight:900;
}

h1{
  margin:16px 0 10px;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height:1.05;
  letter-spacing:-.7px;
  text-shadow: 0 18px 60px rgba(0,0,0,.75);
}
h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -.35px;
}
h3{margin:0 0 8px}


.heroSlogan{margin:10px 0 0; font-weight:900; color: rgba(238,242,255,.86);}
.heroSlogan::before{content:"★ "; opacity:.9}
.lead{
  margin:0;
  font-size: 15.6px;
  line-height: 1.65;
  color: rgba(238,242,255,.92);
  max-width: 78ch;
}
.leadHint{
  display:inline-block;
  margin-left:6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  font-size: 12.5px;
  color: rgba(238,242,255,.92);
}

.hero__metaRow{
  display:flex; flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.metaPill{
  display:inline-flex; gap:10px; align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  color: rgba(238,242,255,.90);
}
.metaPill__k{opacity:.9}
.metaIcon{
  width:18px;
  height:18px;
  object-fit:contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.40));
}
.metaPill--parking{
  border-color: rgba(255,204,0,.28);
  background: rgba(255,204,0,.10);
}

.hero__actions{
  display:flex; flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  line-height:1.2;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn img{
  width:16px;
  height:16px;
  margin-right:6px;
  object-fit:cover;
  border-radius:999px;
  flex:0 0 auto;
}
.btn--softBlue{
  background: linear-gradient(135deg, rgba(108,198,255,.96), rgba(80,160,255,.96));
  color:#0b1020;
  border-color: rgba(140,210,255,.8);
  box-shadow: 0 18px 55px rgba(40,120,220,.35);
}
.btn__icon{
  width:18px;
  height:18px;
  margin-right:6px;
  display:inline-block;
  flex:0 0 auto;
}
.btn__icon--round{
  border-radius:999px;
  object-fit:cover;
  overflow:hidden;
}
.btn--primary{
  background: linear-gradient(135deg, rgba(255,204,0,.98), rgba(255,160,0,.98));
  color:#121212;
  box-shadow: 0 18px 55px rgba(255,204,0,.18);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: rgba(238,242,255,.92);
  backdrop-filter: blur(var(--blur));
}
.btn:hover{transform: translateY(-2px); box-shadow: var(--shadow2);}

.scrollHint{
  position:absolute; left:50%; bottom:14px;
  transform:translateX(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(var(--blur));
  display:grid; place-items:center;
  color: rgba(238,242,255,.9);
  text-decoration:none;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(6px)}
}

/* Sections */
.section{padding: 72px 0;}
.section--alt{background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));}
.sectionHead p{margin:10px 0 0; color:var(--muted); max-width: 78ch}

/* Cards grid */
.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  position:relative;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow2);
  overflow:hidden;
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{box-shadow: var(--shadow);}
.card__top{
  display:flex; gap:12px; align-items:flex-start;
  padding: 16px 16px 12px;
}
.card__top img{
  width:44px; height:44px; object-fit:contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
  flex: 0 0 auto;
}
.card__top p{
  margin:6px 0 0;
  color: rgba(238,242,255,.78);
  font-size: 13.5px;
  line-height: 1.45;
}
.card__actions{
  padding: 0 16px 16px;
  display:flex; gap:8px; flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(238,242,255,.92);
  text-decoration:none;
  font-weight:900;
  font-size: 12.5px;
}
.chip:hover{background: rgba(255,255,255,.10);}
.card__shine{
  position:absolute; inset:-2px;
  background: radial-gradient(600px 240px at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,.18), transparent 55%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}
.card:hover .card__shine{opacity: 1}

/* Split layouts */
.split{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
  align-items:center;
}
.split--reverse{grid-template-columns: .92fr 1.08fr;}
.split--reverse .split__text{order:2}
.split--reverse .split__visual{order:1}

.bullets{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.bullets li{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/* Media cards / frames */
.frame, .mediaCard, .mapCard{
  position:relative;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,14,30,.42);
  backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow2);
  overflow:hidden;
  transform-style: preserve-3d;
}
.frame__img{
  height: 340px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: translateZ(15px);
}
.frame__img--contain{
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center;
  background-color: rgba(0,0,0,.35);
}
.frame__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  display:flex; align-items:flex-end; padding: 14px;
}
.frame__badge{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.16);
  font-weight:900;
  color: rgba(238,242,255,.92);
}


/* panel tags & mini badge (text-side, not on images) */
.panelTags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.panelTags .tag{ margin:0; }

.miniBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(238,242,255,.92);
  font-weight: 900;
  width: fit-content;
}
/* mediaCard */
.mediaCard{
  min-height: 340px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
.mediaCard::before{content:"";position:absolute;inset:0;background: transparent;}
.mediaCard__top, .mediaCard__bottom{
  position:relative;
  margin: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,10,22,.62);
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  width: fit-content;
  max-width: calc(100% - 28px);
}
.mediaCard__bottom{
  margin-top: auto;
}
@media (max-width: 520px){
  .mediaCard__top, .mediaCard__bottom{
    margin: 12px;
    width: auto;
    max-width: calc(100% - 24px);
  }
}

.mediaCard__title{font-weight: 950; font-size: 20px; letter-spacing:-.3px}
.mediaCard__sub{color: rgba(238,242,255,.78); margin-top:6px; font-size: 13px}

.tag{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  font-size: 12.5px;
  margin-right: 8px;
  margin-top: 8px;
}

/* Contact grid */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

/* mapCard */
.mapCard__inner{padding: 18px;}
.mapCard__title{font-weight: 950; font-size: 20px;}
.mapCard__map{
  margin-top:10px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.mapCard__map iframe{
  display:block;
  width:100%;
  height:260px;
  border:0;
}
.mapCard__text{margin-top:10px; color: rgba(238,242,255,.85); line-height: 1.6;}
.mapCard__hint{margin-top: 12px; color: rgba(238,242,255,.65); font-size: 12.5px; line-height:1.5;}

.ctaRow{
  display:flex; flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.ctaRow--hiddenTracking .btn--hiddenTracking{
  display:none !important;
}

/* Mini trust */
.miniTrust{margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.miniTrust__badge{
  display:inline-flex; padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,204,0,.12);
  border: 1px solid rgba(255,204,0,.28);
  color: rgba(238,242,255,.92);
  font-weight: 950;
}
.miniTrust__text{color: rgba(238,242,255,.72); font-size: 13px; font-weight: 900;}

.parkingNote{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,204,0,.24);
  background: rgba(255,204,0,.08);
}
.parkingNote img{width:22px; height:22px; object-fit:contain}
.parkingNote span{font-size:13.5px;}

/* Reveal */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease;}
.reveal.is-visible{opacity:1; transform:none;}

/* Tilt base */
.tilt{will-change: transform;}

/* RTL adjustments */
html[dir="rtl"] .nav{direction:rtl}
html[dir="rtl"] .hero__metaRow{direction:rtl}
html[dir="rtl"] .langSelect select{padding:10px 34px 10px 12px;}
html[dir="rtl"] .langSelect::after{right:auto; left:12px;}
html[dir="rtl"] .langSelect select{padding:10px 12px 10px 34px;}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:block}
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .split, .split--reverse{grid-template-columns: 1fr}
  .split--reverse .split__text{order:0}
  .split--reverse .split__visual{order:0}
  .contactGrid{grid-template-columns: 1fr}

  /* FIX: Header bei Tablet/Mobile - Dropdown darf bleiben */
  .topbar__inner{gap:10px}
  .langSelect select{padding:10px 34px 10px 10px}

  /* FIX: Google Review Button kompakter */
  .googleReview{padding:6px 10px}
  .googleReview img{height:28px}
  .googleReview img:last-child{height:40px}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr}
  .brand__sub{display:none}
  .mobile__inner{grid-template-columns:1fr}

  /* FIX: Dropdown kompakter auf sehr kleinen Geräten */
  .langSelect select{font-size:11.5px; padding:8px 26px 8px 10px; border-radius: 12px;}

  /* Buttons auf Handy kompakter darstellen (Termin/Chat etc.) */
  .ctaRow .btn,
  .card__actions .btn{
    padding:10px 12px;
    font-size:13px;
  }
  .btn img{
    width:15px;
    height:15px;
    margin-right:5px;
  }

  /* FIX: Google Review Button auf Handy */
  .googleReview{gap:8px; padding:6px 10px; border-radius:12px}
  .googleReview img{height:26px}
  .googleReview img:last-child{height:38px}

  /* Footer: zentriert und sauber auf Handy */
  .footer__inner{
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap: 12px; flex-wrap:wrap;
  text-align:center;
}
  .footer__left{justify-content:center;}
  .footer__right{justify-content:center;}
}

/* ============
   MOBILE PRO (nur Handy)
   - bessere Abstände
   - saubere CTA-Buttons
   - Meta-Pills ohne Quetschen
   - Karten/Frames optisch “App-like”
   - Cookie besser auf Handy
============== */
@media (max-width: 560px){

  /* generelle Abstände */
  .wrap{padding:0 16px;}

  /* Header kompakter + sauber */
  .topbar__inner{padding:10px 0; gap:10px;}
  .brand{min-width: 0;}
  .brand__name{font-size:17px;}
  .brand__logo{width:42px; height:42px;}
  .burger{padding:8px; border-radius:12px;}
  .burger span{width:20px;}

  /* Hero mehr „oben“ und CTA full width */
  .hero{min-height: 74vh; padding: 42px 0 46px;}
  h1{font-size: clamp(28px, 7.5vw, 44px);}
  .hero__actions{gap:10px;}
  .hero__actions .btn{width:100%;}
  .panel--hero{padding:16px 16px;}

  /* Meta pills: automatisch umbrechen ohne Quetschen */
  .hero__metaRow{gap:8px;}
  .metaPill{width:100%; justify-content:flex-start;}
  .metaPill--parking{width:100%;}
  .metaIcon{width:18px; height:18px;}

  /* Sections enger */
  .section{padding:56px 0;}

  /* Cards mehr „App-like“ */
  .card{border-radius: 20px;}
  .card__top{padding:14px 14px 10px;}
  .card__actions{padding:0 14px 14px;}
  .chip{font-size: 12px; padding: 7px 11px;}
  .card__top p{font-size: 13.2px;}

  /* Frames/Media Höhe etwas kleiner */
  .frame__img{height: 260px;}
  .mediaCard{min-height: 260px;}
  .mapCard__map iframe{height:220px;}

  /* Footer: rechts/links nicht auseinanderziehen */
  .footer__inner{
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap: 12px; flex-wrap:wrap;
  text-align:center;
}
  .footer__right{justify-content:center;}
  .footer__sub{max-width: 36ch;}
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(5,7,18,.58);
  backdrop-filter: blur(var(--blur));
  padding: 18px 0 10px;
}
.footer__inner{
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap: 12px; flex-wrap:wrap;
  text-align:center;
}
.footer__left{display:flex; align-items:center; justify-content:center; gap:12px}
.footer__logo{width:44px; height:44px; object-fit:contain}
.footer__name{font-weight:950}
.footer__sub{color: var(--muted); font-size: 12.5px; margin-top:3px}
.footer__right{display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap}
.footer__right a{color: rgba(238,242,255,.85); text-decoration:none; font-weight:900}
.footer__right a:hover{text-decoration:underline}
.dot{opacity:.45}
.footer__bottom{color: rgba(238,242,255,.65); font-size: 12px; padding: 12px 0 18px; width:100%; text-align:center; margin:0 auto; display:block;}

/* FIX: Google Review Button im Footer (Größe an Footer angepasst) */
.googleReview{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
  text-decoration:none !important;
}
.googleReview img{height:30px; width:auto; display:block}
.googleReview img:last-child{height:42px}

/* Cookie Banner (KONTRAST – hebt sich klar vom Site-Look ab) */
.cookie{
  position:fixed;
  inset:0;
  display:grid;
  place-items:end center;
  padding:16px;
  z-index:9999;
}
.cookie[hidden]{display:none !important;}

.cookie__card{
  width:min(760px, 100%);
  border-radius: 22px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,248,255,.92));
  border: 1px solid rgba(15,20,40,.20);
  box-shadow: 0 26px 90px rgba(0,0,0,.62);
  color: #0b1020;
}

.cookie__head{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.cookie__brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.cookie__logo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius: 14px;
  padding:8px;
  background: rgba(10,14,30,.06);
  border: 1px solid rgba(10,14,30,.14);
  filter: none;
}

.cookie__title{
  font-weight: 950;
  letter-spacing: -.2px;
  font-size: 18px;
  line-height: 1.1;
  color:#0b1020;
}

.cookie__sub{
  margin-top:4px;
  color: rgba(10,14,30,.72);
  font-size: 12.5px;
  font-weight: 900;
}

.cookie__x{
  border: 1px solid rgba(10,14,30,.18);
  background: rgba(10,14,30,.06);
  color: rgba(10,14,30,.92);
  border-radius: 14px;
  padding: 8px 10px;
  cursor:pointer;
}

.cookie__text{
  margin: 0;
  color: rgba(10,14,30,.88);
  line-height:1.6;
  font-size: 14px;
}

.cookie__links{
  margin-top:10px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.cookie__links a{
  color: rgba(10,14,30,.92);
  text-decoration:none;
  font-weight: 900;
}
.cookie__links a:hover{ text-decoration:underline; }

.cookie__settings{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.cookie__row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(10,14,30,.12);
  background: rgba(10,14,30,.04);
  color:#0b1020;
}

.cookie__muted{
  color: rgba(10,14,30,.72);
  font-size: 12.5px;
}

.cookie__actions{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Buttons im Cookie-Fenster auf hellem Hintergrund */
.cookie .btn--ghost{
  background: rgba(10,14,30,.06);
  border: 1px solid rgba(10,14,30,.14);
  color: rgba(10,14,30,.92);
}
.cookie .btn--ghost:hover{
  background: rgba(10,14,30,.10);
}

.cookie__fineprint{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(10,14,30,.70);
}

/* Smartsupp: immer über dem Layout (auch mobil) */
#smartsupp-widget-container,
.smartsupp-widget-container,
#smartsupp-widget,
.smartsupp-widget{
  z-index: 2147483000 !important;
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce){
  .bg__glow, .hero__slide{animation:none}
  .btn, .card, .reveal, .scrollHint, .langSelect select, .googleReview{transition:none}
}


/* Accessibility helpers */
.srOnly{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}



/* ---------- Tracking (index.html + tracking.html) ---------- */
.section--tight{padding: 34px 0;}
.trackGrid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 980px){
  .trackGrid{grid-template-columns: 1fr;}
}

.trackingPanel__head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom: 12px;
}
.trackingPanel__icon{
  width:56px; height:56px;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
}
.trackingPanel__icon img{
  width:100%; height:100%;
  object-fit:contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.45));
}

.hintBox{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(238,242,255,.90);
}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 900;
  letter-spacing: .15px;
}

.trackForm{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.trackInput{
  flex: 1 1 260px;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  color: rgba(238,242,255,.95);
  outline:none;
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 18px 55px rgba(0,0,0,.26);
}
.trackInput::placeholder{color: rgba(238,242,255,.58);}
.trackInput:focus{
  border-color: rgba(255,204,0,.46);
  box-shadow: 0 0 0 4px rgba(255,204,0,.14), 0 18px 55px rgba(0,0,0,.26);
}

.trackStatus{
  margin-top: 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
}
.trackDot{
  width: 12px; height: 12px; border-radius: 999px;
  margin-top: 5px;
  background: rgba(238,242,255,.45);
  box-shadow: 0 0 0 6px rgba(238,242,255,.08);
}
.trackDot.is-load{background: rgba(108,198,255,.90); box-shadow:0 0 0 6px rgba(108,198,255,.16);}
.trackDot.is-ok{background: rgba(70, 255, 170, .95); box-shadow:0 0 0 6px rgba(70,255,170,.14);}
.trackDot.is-warn{background: rgba(255, 204, 0, .95); box-shadow:0 0 0 6px rgba(255,204,0,.16);}
.trackDot.is-err{background: rgba(255, 90, 90, .95); box-shadow:0 0 0 6px rgba(255,90,90,.14);}

.trackTitle{margin:0; font-weight: 900;}
.trackSub{margin:4px 0 0; color: rgba(238,242,255,.78);}

.trackList{
  margin-top: 12px;
  display:grid;
  gap:10px;
}

.trackCard{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.trackK{font-weight: 900; color: rgba(238,242,255,.86);}
.trackV{color: rgba(238,242,255,.80); text-align:right; max-width: 60%; word-break: break-word;}

.trackEvent{
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.20));
}
.trackEvent__when{font-weight: 900; opacity:.9; font-size: 13px;}
.trackEvent__text{margin-top:6px; font-weight: 900;}
.trackEvent__place{margin-top:6px; color: rgba(238,242,255,.74); font-size: 13px;}

/* --- Tracking: Datum/Uhrzeit sauber ausrichten --- */
.dt{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.05;
}
.dt-date{font-weight:900;}
.dt-time{font-weight:800; opacity:.85;}
/* In der Meta-Tabelle rechtsbündig */
.trackV .dt{align-items:flex-end; text-align:right;}
/* In der Event-Liste linksbündig */
.trackEvent__when .dt{align-items:flex-start; text-align:left;}


.trackingHero{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.trackingHero__media{
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 12px;
}
.trackingHero__media img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.trackingHero__text{flex: 1 1 320px; min-width: 240px;}

@media (max-width: 820px){
  .trackingHero{gap:12px;}
  .trackingHero__media{
    flex-basis: 72px;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    padding: 10px;
  }
  .trackingHero__text{flex-basis: 100%; min-width: 0;}
  .trackV{max-width: 100%;}
}
  .trackingHero__media{width:100%; flex-basis:auto;}
  .trackV{max-width: 72%;}
}


/* --- 2026 polish: open-status, quicklinks, mobile bar --- */
.metaPill--open{
  gap:10px;
}
.metaPill--open .metaPill__k{
  font-size:12px;
  line-height:1;
  transform:translateY(1px);
}
.metaPill--open.is-open .metaPill__k{ color:rgba(90,255,170,.95); text-shadow:0 0 18px rgba(90,255,170,.35); }
.metaPill--open.is-closed .metaPill__k{ color:rgba(255,120,120,.95); text-shadow:0 0 18px rgba(255,120,120,.35); }

.telLink{ color:inherit; text-decoration:none; }
.telLink:hover{ text-decoration:underline; }

.quickNav{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.quickNav__link{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,14,28,.38);
  backdrop-filter: blur(10px);
  color:var(--text);
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.quickNav__link:hover{
  transform:translateY(-1px);
  background:rgba(10,14,28,.52);
  border-color:rgba(255,255,255,.22);
}

.mobileBar{
  position:fixed;
  left:12px; right:12px;
  bottom:12px;
  display:none;
  gap:10px;
  padding:10px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,10,20,.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  z-index: 9999;
}
.mobileBar__btn{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:12px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(18,28,58,.40);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}
.mobileBar__btn--primary{
  border-color: rgba(255,193,7,.35);
  background: rgba(255,193,7,.14);
}
@media (max-width: 900px){
  .mobileBar{ display:flex; }
  body{ padding-bottom: 92px; }
}


/* =========================================================
   FOOTER FIX (Social Icons + Review Badges) — Mobile & Desktop
   Prevents oversized images and keeps everything aligned.
   ========================================================= */
.footer__right{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-wrap:wrap !important;
  gap:10px 14px !important;
  text-align:center !important;
}

/* Keep link row readable */
.footer__right > a{
  white-space:nowrap;
}

/* Social icons group */
.footer__right .social{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  margin-left:6px;
}

.footer__right .social__link{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:34px !important;
  height:34px !important;
  border-radius:10px !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(12,16,30,.35);
}

.footer__right .social__link img{
  width:22px !important;
  height:22px !important;
  max-width:22px !important;
  max-height:22px !important;
  object-fit:contain !important;
  display:block !important;
}

/* Reviews group */
.footer__right .reviews{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  margin-left:8px;
  flex-wrap:wrap !important;
}

.footer__right .reviewBadge{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:6px 10px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(12,16,30,.35);
  overflow:hidden !important;
  max-width:min(92vw, 420px);
}

/* Constrain any images inside review badges (including googleReview) */
.footer__right .googleReview img,
.footer__right .reviewBadge img{
  height:34px !important;
  width:auto !important;
  max-height:34px !important;
  max-width:100% !important;
  object-fit:contain !important;
  display:block !important;
}

/* On very small screens, make everything slightly smaller */
@media (max-width:520px){
  .footer__right{ gap:10px 12px !important; }
  .footer__right .social__link{ width:32px !important; height:32px !important; border-radius:10px !important; }
  .footer__right .social__link img{ width:21px !important; height:21px !important; max-width:21px !important; max-height:21px !important; }
  .footer__right .googleReview img,
  .footer__right .reviewBadge img{ height:32px !important; max-height:32px !important; }
}


/* ==========================
   Legal Pages (Datenschutz/Impressum):
   Hintergrund weniger dominant (kein großes Laptop-Bild)
   ========================== */
.page--legal .bg__image{
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(108,198,255,.12), transparent 62%),
    radial-gradient(900px 520px at 88% 22%, rgba(255,204,0,.08), transparent 62%),
    radial-gradient(1200px 700px at 50% 70%, rgba(0,0,0,.35), transparent 60%);
  filter:saturate(1.0) contrast(1.0);
  transform:scale(1.02);
}
.page--legal .bg__vignette{
  opacity: .85;
}


/* ==========================
   LEGAL HERO WRAP FIX (Datenschutz/Impressum)
   - verhindert, dass Überschriften/Text aus dem Kasten laufen
   ========================== */
.page--legal .legalHero{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:12px;
  padding:12px 14px;
  border-radius:18px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.page--legal .legalHero__logo{
  width:72px;
  height:72px;
  border-radius:16px;
  padding:10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  filter: brightness(1.10) contrast(1.08);
  object-fit: contain;
  flex: 0 0 auto;
}
.page--legal .legalHero__text{
  min-width: 0;            /* <- wichtig für Text-Wrap in Flexbox */
  flex: 1 1 260px;
}
.page--legal .legalHero__text h1{
  margin:0;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.page--legal .legalHero__brand{
  color: rgba(238,242,255,.82);
  margin-top:4px;
  font-weight:900;
  overflow-wrap:anywhere;
}
.page--legal .legalHero__desc{
  color: rgba(238,242,255,.68);
  margin-top:6px;
  font-size:13px;
  overflow-wrap:anywhere;
}

@media (max-width: 520px){
  .page--legal .legalHero{
    gap:12px;
    padding:12px;
  }
  .page--legal .legalHero__logo{
    width:58px;
    height:58px;
    border-radius:14px;
    padding:8px;
  }
}
