:root{
  --bg:#0F0F0F;
  --panel:#1A1A1A;
  --muted:#2A2A2A;
  --ink:#FFFFFF;
  --ink-dim:#EDEDED;
  --ink-soft:#BDBDBD;
  --terracotta:#C35041;
  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:8px;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Open Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}

/* ===== REVEAL EFFECT ===== */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .4s ease-out, transform .4s ease-out;
}
.reveal-visible{
  opacity:1;
  transform:translateY(0);
}

/* ===== NAVIGATION ===== */
.nav-wrap{
  position:sticky;
  top:0;
  z-index:40;
  background:#0D0D0D;
  border-bottom:1px solid #1f1f1f;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  padding:18px 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  width:170px;
  height:68px;
  border-radius:0;
  display:grid;
  place-items:center;
  background:transparent;
  overflow:hidden;
}
.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-links a{
  position:relative;
  padding-bottom:4px;
  font:600 14px/20px "Open Sans";
  color:#EDEDED;
  transition:color .25s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:2px;
  width:100%;
  background:var(--terracotta);
  transform-origin:left;
  transform:scaleX(0);
  transition:transform .25s ease-out;
}
.nav-links a:hover,
.nav-links a.nav-active{
  color:var(--terracotta);
}
.nav-links a:hover::after,
.nav-links a.nav-active::after{
  transform:scaleX(1);
}

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-cta{margin-left:18px}
.cta-primary{
  display:inline-flex;
  padding:10px 16px;
  border-radius:8px;
  background:var(--terracotta);
  font:700 13px/18px "Open Sans";
  color:#fff;
  box-shadow:0 1px 18px rgba(195,80,65,.35);
  cursor:pointer;
  border:none;
  outline:none;
  transition:transform .15s ease, box-shadow .15s ease;
}
.cta-primary:hover{
  box-shadow:0 2px 22px rgba(195,80,65,.55);
  transform:translateY(-1px);
}
@keyframes bounceOnce{
  0%,20%,50%,80%,100%{transform:translateY(0);}
  40%{transform:translateY(-4px);}
  60%{transform:translateY(-2px);}
}
.cta-primary.is-bouncing{
  animation:bounceOnce .5s ease;
}

/* Hamburger Button */
@keyframes menuGain{
  0%{transform:scale(0.9);}
  60%{transform:scale(1.05);}
  100%{transform:scale(1);}
}

.menu-toggle{
  display:none;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid #2c2c2c;
  background:#181818;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  padding:0;
  flex-direction:column;
  transition:background .2s ease, transform .15s ease, box-shadow .15s ease;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:#EDEDED;
  transition:transform .25s ease, opacity .2s ease, background .2s ease;
}
.menu-toggle:hover{
  background:#202020;
  box-shadow:0 4px 16px rgba(0,0,0,.6);
  transform:translateY(-1px);
}

body.mobile-menu-open .menu-toggle{
  animation:menuGain .25s ease-out;
  box-shadow:0 4px 20px rgba(0,0,0,.9);
}
body.mobile-menu-open .menu-toggle span:nth-child(1){
  transform:translateY(3px) rotate(45deg);
}
body.mobile-menu-open .menu-toggle span:nth-child(2){
  transform:translateY(-3px) rotate(-45deg);
}

/* Off-Canvas Mobile Menu */
.mobile-menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:29;
}
.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:78%;
  max-width:320px;
  background:rgba(14,14,14,.96);
  backdrop-filter:blur(12px);
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(0.22,0.8,0.25,1);
  z-index:30;
  padding:72px 24px 24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-menu-title{
  font:700 14px/20px "Open Sans";
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#8c8c8c;
  margin-bottom:6px;
}
.mobile-menu a{
  padding:10px 0;
  font:600 15px/22px "Open Sans";
  color:#EDEDED;
  border-bottom:1px solid #252525;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:color .2s ease, transform .15s ease;
}
.mobile-menu a span.label{
  flex:1;
}
.mobile-menu a span.dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:transparent;
  margin-left:12px;
  transition:background .2s ease, transform .15s ease;
}
.mobile-menu a:hover{
  color:var(--terracotta);
  transform:translateX(2px);
}
.mobile-menu a:hover span.dot{
  background:var(--terracotta);
  transform:scale(1.3);
}
.mobile-book-cta{
  margin-top:16px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 18px;
  border-radius:999px;
  border:none;
  background:var(--terracotta);
  color:#fff;
  font:700 14px/18px "Open Sans";
  box-shadow:0 8px 24px rgba(0,0,0,.65);
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.mobile-book-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 30px rgba(0,0,0,.8);
}

body.mobile-menu-open .mobile-menu{
  transform:translateX(0);
}
body.mobile-menu-open .mobile-menu-backdrop{
  opacity:1;
  visibility:visible;
}

/* Floating Court-Buchen Button (bottom, mobile) */
.floating-book-cta{
  position:fixed;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  padding:12px 22px;
  border-radius:999px;
  border:none;
  background:var(--terracotta);
  color:#fff;
  font:700 14px/18px "Open Sans";
  box-shadow:0 10px 28px rgba(0,0,0,.85);
  cursor:pointer;
  z-index:28;
  display:none;
}
.floating-book-cta:hover{
  transform:translateX(-50%) translateY(-1px);
  box-shadow:0 12px 32px rgba(0,0,0,.9);
}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  --hero-image:url('assets/hero.png');
  background:
    linear-gradient(270deg,
      rgba(0,0,0,0) 32.94%,
      rgba(0,0,0,0.44) 57.6%,
      rgba(0,0,0,0.5) 77.24%,
      rgba(0,0,0,0.55) 100.93%),
    var(--hero-image) center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(circle at center,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.15) 55%,
      rgba(0,0,0,0.55) 100%);
}
.hero-media-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:56px 24px 40px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.hero-copy{
  max-width:560px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-title{
  margin:0;
  color:#FFF;
  font-family:"Bebas Neue";
  font-size:64px;
  line-height:72px;
  letter-spacing:1px;
}
.hero-sub{
  margin:0;
  color:#EDEDED;
  font:400 16px/24px "Open Sans";
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:8px;
  font:600 14px/20px "Open Sans";
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .15s ease;
}
.btn.primary{
  background:var(--terracotta);
  border:1px solid var(--terracotta);
  color:#fff;
  box-shadow:0 1px 18px rgba(255,255,255,.10);
}
.btn.primary:hover{
  box-shadow:0 2px 22px rgba(255,255,255,.18);
  transform:translateY(-1px);
}
.btn.ghost{
  background:transparent;
  border:1.5px solid #EDEDED;
  color:#FFF;
}
.btn.ghost:hover{
  background:var(--terracotta);
  border-color:var(--terracotta);
  box-shadow:0 1px 18px rgba(195,80,65,.45);
  transform:translateY(-1px);
}

/* ===== SECTION WRAPPER ===== */
.section{
  max-width:1200px;
  margin:0 auto;
  padding:40px 24px;
}
.section-title{
  margin:0 0 8px 0;
  text-align:center;
  color:#FFF;
  font-family:"Bebas Neue";
  font-size:36px;
  line-height:44px;
  letter-spacing:.8px;
}
.section-subtitle{
  margin:0 0 16px 0;
  text-align:center;
  color:#BDBDBD;
  font:400 14px/20px "Open Sans";
}

/* ===== COURTS ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  background:#232323;
  border:1px solid #2E2E2E;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 22px rgba(0,0,0,.55);
  border-color:#3a3a3a;
}
.card img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}
.card-body{
  padding:14px 14px 16px 14px;
}
.card-title{
  margin:0 0 6px 0;
  font:600 16px/22px "Open Sans";
}
.card-sub{
  margin:0;
  color:#BDBDBD;
  font:400 13px/20px "Open Sans";
}

/* ===== SLIDER DOTS (Grundstil) ===== */
.slider-dots{
  display:none;
}
.slider-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:none;
  background:#555;
  padding:0;
  margin:0;
  cursor:pointer;
  transition:background .2s ease, transform .15s ease, opacity .2s ease;
  opacity:.6;
}
.slider-dot.is-active{
  background:var(--terracotta);
  transform:scale(1.4);
  opacity:1;
}

/* ===== LOCATION / TEAM / GALLERY ===== */
.location-head{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:space-between;
  margin:12px 0 16px;
}
.loc-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.loc-name{
  font:700 18px/24px "Open Sans";
}

.pill-open{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:#143b25;
  color:#37D67A;
  font:700 12px/16px "Open Sans";
}
.pill-open.is-closed{
  background:#3b1414;
  color:#ff8787;
}

.pill-open img{
  width:14px;
  height:14px;
  display:block;
}
.addr{
  display:flex;
  align-items:center;
  gap:10px;
  color:#FFF;
  font:400 14px/20px "Open Sans";
  flex-wrap:wrap;
}
.rating{
  display:flex;
  align-items:center;
  gap:6px;
  color:#EDEDED;
  font:400 14px/20px "Open Sans";
}
/* Falls im HTML .map-embed genutzt wird: gleiche Optik wie .map */
.map-embed{
  width:100%;
  height: clamp(260px, 28vw, 420px);
  border-radius:18px;
  overflow:hidden;
  border:2px solid #fff;
  box-shadow:0 22px 60px rgba(0,0,0,.55);
  margin-top:12px;
  background:#111;
}
.map-embed iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}
@media (max-width: 640px){
  .map-embed{
    height:320px;
  }
}

.accordions{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.accordion{
  background:#232323;
  border:1px solid #2E2E2E;
  border-radius:12px;
  overflow:hidden;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.accordion.open{
  border-color:#2E2E2E;
  box-shadow:0 1px 18px rgba(0,0,0,.55);
  background:#262626;
}
.acc-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  cursor:pointer;
}
.acc-icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#303030;
  font-size:14px;
  color:#fff;
}
.acc-title{
  flex:1;
  font:600 14px/20px "Open Sans";
}
.acc-arrow{
  width:18px;
  height:18px;
  border-radius:999px;
  position:relative;
}
.acc-arrow::before{
  content:"";
  position:absolute;
  inset:4px;
  border-left:2px solid #EDEDED;
  border-bottom:2px solid #EDEDED;
  transform:rotate(-45deg);
  transform-origin:center;
  transition:transform .25s cubic-bezier(0.2,0.8,0.2,1.2);
}
.accordion.open .acc-arrow::before{
  transform:rotate(135deg) translateY(-1px);
}

.acc-body{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  color:#EDEDED;
  font:400 14px/20px "Open Sans";
  opacity:0;
  transition:max-height .3s ease, opacity .3s ease, padding .3s ease;
}
.accordion.open .acc-body{
  opacity:1;
  max-height:600px;
  padding:8px 16px 16px 42px;
}

/* ===== Nice Racket Uhingen: Abstände (Web + Mobile) =====
   Ziel: weniger "gestapelt"/luftig, aber weiterhin klar trennbar.
   Wir scopen das bewusst nur auf den Location-Bereich, damit
   Courts/Events-Slider etc. unverändert bleiben.
*/

#location .accordions{
  /* ein Tick kompakter als global */
  gap:12px;
  margin-top:14px;
}

#location .acc-head{
  /* etwas weniger Höhe, wirkt auf Mobile deutlich sauberer */
  padding:12px 16px;
}

/* Nested FAQ im BW-Accordion: kompaktere Abstände */
#acc-bw .acc-bw-faq{
  margin-top:12px;
  gap:10px;
}

#acc-bw .acc-bw-faq .acc-head{
  padding:12px 16px;
}

@media (max-width: 768px){
  #location .accordions{
    gap:10px;
    margin-top:12px;
  }

  #location .acc-head{
    padding:12px 14px;
  }

  #acc-bw .acc-bw-faq{
    gap:8px;
  }
}

.staff-grid{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.staff-card{
  width:120px;
  text-align:center;
}
.staff-avatar{
  width:72px;
  height:72px;
  border-radius:999px;
  overflow:hidden;
  margin:0 auto 8px;
  border:2px solid #2E2E2E;
}
.staff-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.staff-name{
  font:600 13px/18px "Open Sans";
  margin-bottom:2px;
}
.staff-role{
  font:400 12px/18px "Open Sans";
  color:#BDBDBD;
}

/* COURT GALLERY */
.gallery-wrapper{
  position:relative;
  margin-top:4px;
}
.gallery-strip{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  scroll-behavior:smooth;
}
.gallery-strip::-webkit-scrollbar{
  height:4px;
}
.gallery-strip::-webkit-scrollbar-thumb{
  background:#444;
  border-radius:999px;
}
.gallery-strip img{
  flex:0 0 auto;
  width:170px;
  height:100px;
  border-radius:10px;
  object-fit:cover;
  background:#111;
}
.gallery-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,.6);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:16px;
}
.gallery-btn.left{left:4px;}
.gallery-btn.right{right:4px;}

/* ===== EVENTS – Karten-Basisstyle ===== */
.event{
  background:#232323;
  border:1px solid #2E2E2E;
  border-radius:12px;
  overflow:hidden;
}
.event img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.event-body{
  padding:12px 12px 14px;
}
.event-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}
.badge{
  font:700 12px/16px "Open Sans";
  padding:4px 8px;
  border-radius:999px;
  background:#2d2d2d;
}
.price{
  font:700 14px/18px "Open Sans";
}
.event-title{
  margin:0 0 6px;
  font:700 14px/18px "Open Sans";
}
.event-list{
  color:#BDBDBD;
  font:400 12px/18px "Open Sans";
  display:grid;
  gap:4px;
  margin:0 0 10px 0;
}
.event-cta{
  display:block;
  width:100%;
  text-align:center;
  padding:10px 14px;
  border-radius:8px;
  font:600 13px/18px "Open Sans";
  border:1.5px solid #EDEDED;
  background:transparent;
  color:#FFF;
  transition:background .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .15s ease;
  cursor:pointer;
}
.event-cta:hover{
  background:var(--terracotta);
  border-color:var(--terracotta);
  box-shadow:0 1px 18px rgba(195,80,65,.45);
  transform:translateY(-1px);
}

/* ===== BUCHUNG (nur Wrapper + Widget) ===== */
.booking-section-hidden{
  display:none;
}
.booking{
  background:#FFFFFF;
  border:1px solid #2E2E2E;
  border-radius:12px;
  padding:16px;
  margin-top:16px;
}
.cs-embed-wrapper{
  background:#FFFFFF;
  border-radius:12px;
  border:1px solid #2E2E2E;
  padding:8px;
  margin-bottom:12px;
}

/* ===== FOOTER ===== */
.footer{
  background:#181818;
  border-top:1px solid #2E2E2E;
  margin-top:40px;
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:28px 24px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
}
.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.footer-brand .brand-logo{
  width:170px;
  height:68px;
}
.footer-brand-text{
  margin-top:24px;
}
.foot-copy{
  color:#BDBDBD;
  font:400 12px/18px "Open Sans";
  margin:0 0 24px 0;
  max-width:368px;
}
.foot-col h4{
  margin:0 0 8px 0;
  font:700 13px/18px "Open Sans";
}
.foot-link{
  display:flex;
  align-items:center;
  gap:8px;
  color:#EDEDED;
  font:400 13px/20px "Open Sans";
  margin-bottom:6px;
  transition:color .2s ease, transform .15s ease;
}
.foot-link:hover{
  color:var(--terracotta);
  transform:translateX(2px);
}

.foot-social{
  display:flex;
  gap:10px;
  margin-top:0;
}
.foot-social a{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#222;
  display:grid;
  place-items:center;
  color:var(--terracotta);
  font:700 12px/1 "Open Sans";
  transition:background .2s ease, color .2s ease, transform .15s ease, box-shadow .15s ease;
  cursor:pointer;
}
.foot-social a:hover{
  background:var(--terracotta);
  color:#fff;
  box-shadow:0 2px 14px rgba(195,80,65,.6);
  transform:translateY(-1px);
}

.icon{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:var(--terracotta);
}
.icon img{
  width:100%;
  height:100%;
  display:block;
}
.rating .icon{
  color:var(--terracotta);
}

.foot-bottom{
  text-align:center;
  color:#999;
  padding:12px 0;
  border-top:1px solid #2E2E2E;
  font:400 12px/18px "Open Sans";
}

/* ===== RESPONSIVE ===== */
@media (max-width:980px){
  .nav{
    padding-inline:16px;
  }
  .nav-links{
    display:none;
  }
  .nav-cta{
    display:none;
  }
  .menu-toggle{
    display:flex;
  }
  .hero-title{font-size:48px;line-height:56px;}
  .hero-sub{max-width:100%;}
  .cards{
    grid-template-columns:1fr 1fr;
  }
  .footer-inner{grid-template-columns:1fr;}
  .floating-book-cta{display:inline-flex;}
}
@media (max-width:640px){
  .section{padding-inline:16px;}
  .cards{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:16px;
    -webkit-overflow-scrolling:touch;
  }
  .cards::-webkit-scrollbar{
    display:none;
  }
  .card{
    flex:0 0 100%;
    scroll-snap-align:center;
  }
  .slider-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:10px;
  }
  .hero-inner{
    padding-top:40px;
    padding-bottom:32px;
  }
}

/* ===== EVENT SLIDER (API-Logik, Desktop + Mobile) ===== */
.event-slider{
  position:relative;
  display:flex;
  align-items:stretch;
  gap:12px;
  margin-top:12px;
}
.event-cards-viewport{
  position:relative;
  overflow:hidden;
  flex:1;
}
.event-slider .event-cards{
  display:flex;
  gap:20px;
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}
.event-slider .event{
  flex:0 0 calc((100% - 40px)/3);
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.event-slider .event:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 22px rgba(0,0,0,.55);
  border-color:#3a3a3a;
}

.event-arrow{
  display:none;
  align-self:center;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid #EDEDED;
  background:#181818;
  color:#EDEDED;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease,transform .15s ease,box-shadow .15s ease;
}
.event-arrow:hover{
  background:var(--terracotta);
  border-color:var(--terracotta);
  color:#fff;
  box-shadow:0 4px 18px rgba(195,80,65,.6);
  transform:translateY(-1px);
}
.event-arrow[disabled]{
  opacity:.35;
  cursor:default;
  transform:none;
  box-shadow:none;
}

@media (max-width:980px){
  .event-slider .event{
    flex:0 0 calc((100% - 20px)/2);
  }
}
@media (max-width:640px){
  .event-slider{
    gap:0;
  }
  .event-cards-viewport{
    overflow-x:auto;
  }
  .event-slider .event{
    flex:0 0 100%;
    scroll-snap-align:center;
  }
  .event-slider .event-cards{
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .event-arrow{
    display:none !important;
  }
}

/* Modal / Popup (Impressum & weitere Inhalte) */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.78);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.25s ease;
  z-index:999;
}

.modal-overlay.is-visible{
  opacity:1;
  pointer-events:auto;
}

.modal{
  background:var(--panel);
  color:var(--ink);
  border-radius:var(--radius-lg);
  max-width:720px;
  width:100%;
  max-height:90vh;
  overflow:auto;
  padding:24px 24px 20px;
  box-shadow:0 24px 60px rgba(0,0,0,0.7);
  transform:translateY(14px) scale(0.96);
  opacity:0;
  transition:transform 0.25s ease, opacity 0.25s ease;
}

.modal-overlay.is-visible .modal{
  transform:translateY(0) scale(1);
  opacity:1;
}

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

.modal-title{
  margin:0;
  font-family:"Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:28px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.modal-body{
  font-size:14px;
  line-height:1.7;
}

.modal-body p{
  margin:0 0 1em;
}

.modal-body a{
  color:inherit;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.modal-body img{
  max-width:100%;
  height:auto;
  display:block;
  margin:0 0 1em;
  border-radius:var(--radius-md);
}

.modal-close{
  border:none;
  background:transparent;
  color:var(--ink-soft);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  padding:4px 8px;
  border-radius:999px;
  transition:background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover,
.modal-close:focus-visible{
  outline:none;
  background:var(--muted);
  color:var(--ink);
  transform:scale(1.05);
}

body.modal-open{
  overflow:hidden;
}

@media (max-width:600px){
  .modal{
    padding:20px 16px 16px;
    border-radius:var(--radius-md);
  }
  .modal-title{
    font-size:24px;
  }
}

/* Mobile Optimierung CircleSquare Booking */
@media (max-width:640px){
  /* Booking-Karte etwas kompakter, ohne das restliche Design zu verändern */
  .booking{
    padding:12px;
  }
  .cs-embed-wrapper{
  background:#FFFFFF;
  border-radius:12px;
  border:1px solid #2E2E2E;
  padding:8px;
  margin-bottom:12px;
}

  /* Kalenderbereich: horizontales Scrollen nur im Widget, nicht auf der ganzen Seite */
  #circlesquare-court-availability{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  #circlesquare-court-availability > *{
    min-width:640px; /* genug Breite, damit Slots lesbar bleiben */
  }

  /* etwas kleinere Schrift nur im Widget, damit mehr Infos auf kleinen Screens Platz haben */
  #circlesquare-court-availability,
  #circlesquare-court-availability *{
    font-size:12px;
    line-height:1.4;
  }
}

/* ===== SEO HERO KICKER (unter H1) ===== */
.hero-title .hero-kicker{
  display:block;
  margin-top:10px;
  font-size:.52em;
  line-height:1.2;
  color:var(--ink-dim);
}

/* ===== BW ACCORDION: Mobile Integration ===== */
#acc-bw .acc-body{
  line-height:1.6;
}
#acc-bw .acc-bw-content p{
  margin:0 0 12px;
}
#acc-bw .acc-bw-highlights{
  margin:12px 0 14px;
  display:grid;
  gap:8px;
}
#acc-bw .acc-bw-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
#acc-bw .acc-bw-dot{
  margin-top:2px;
  flex:0 0 auto;
}
#acc-bw .acc-bw-faq{
  margin-top:12px;
}
#acc-bw .acc-bw-faq .accordion{
  margin-top:10px;
}
#acc-bw .acc-bw-faq .acc-head{
  padding-top:12px;
  padding-bottom:12px;
}
#acc-bw .acc-bw-faq .acc-title{
  font-size:15px;
  line-height:1.35;
}

/* ===== FOOTER: Bottom Zone (Copyright + Local Line sauber integriert) ===== */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
  padding: 16px 24px 18px;
  text-align: center;
}

/* überschreibt das alte foot-bottom Styling NUR im footer-bottom Bereich */
.footer-bottom .foot-bottom{
  margin: 0;
  padding: 0;
  border-top: 0;
}

/* Local Line: dezenter, mittig, max-width damit es wie Design wirkt */
.footer-bottom .foot-local{
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* Mobile: weniger “Textwand”, saubere Zeilen */
@media (max-width: 768px){
  .footer-bottom{
    padding: 14px 18px 16px;
  }
  .footer-bottom .foot-local{
    font-size: 10.5px;
    line-height: 1.55;
    max-width: 520px;
  }
}

@media (max-width:768px){
  #acc-bw .acc-body{font-size:15px;}
  #acc-bw .acc-bw-highlights{gap:10px;}
  #acc-bw .acc-bw-row span{min-width:0;}
}