/* ===================================================
   FlashFields – style.css v6 (clean rebuild)
   =================================================== */

/* --- Fonts --- */
@font-face {
  font-family: 'PPValve';
  src: url('assets/fonts/pp/PPValve-PlainMedium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PPValve';
  src: url('assets/fonts/pp/PPValve-PlainMediumItalic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'PPMori';
  src: url('assets/fonts/pp/PPMori-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PPMori';
  src: url('assets/fonts/pp/PPMori-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* --- Variables --- */
:root {
  --yellow: #E5F411;
  --pink: #FA468D;
  --blue: #076ECD;
  --blue-dark: #023BA6;
  --pink-light: #FECBEA;
  --dark: #000000;
  --white: #ffffff;
  --grey-bg: #f0f0f0;
  --green-footer: #00665B;
  --header-height: 100px;
  --page-pad: 40px;
  --font-valve: 'PPValve', 'Arial Black', sans-serif;
  --font-mori: 'PPMori', 'Arial', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-mori); color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===================================================
   HEADER
   =================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  border-bottom: 4px solid var(--dark);
}

/* Gelber vertikaler Streifen – durchgehend über gesamte Seitenhöhe */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 12px;
  height: 100%;
  background: var(--yellow);
  z-index: 9999;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--page-pad);
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
.header-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.header-center {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-right: 16px;
}
.lang-link {
  font-family: var(--font-mori);
  font-size: 13px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  padding: 4px 6px;
  transition: opacity 0.2s;
}
.lang-link:hover { opacity: 0.6; }
.lang-link.active { text-decoration: underline; text-underline-offset: 3px; }
.lang-sep { font-size: 13px; color: #888; }
.hamburger {
  background: none; border: none; cursor: pointer;
  padding: 8px; display: flex; flex-direction: column; gap: 5px; margin-left: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); }
.btn-book {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--dark);
  font-family: var(--font-mori); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 50px; border: none; cursor: pointer;
  white-space: nowrap; transition: background 0.2s, transform 0.1s;
}
.btn-book:hover { background: var(--green-footer); color: var(--white); transform: scale(1.02); }
/* Footer-Buchen-Button behält eigenen Hover */
.footer-book-wrap .btn-book:hover { background: #cfe000; color: var(--dark); }

/* ===================================================
   MOBILE NAV
   =================================================== */
.mobile-nav {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--dark); color: var(--white); z-index: 2000;
  padding: 60px 30px 30px; transition: right 0.35s ease;
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-nav.open { right: 0; }
#mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav ul a {
  font-family: var(--font-mori); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--white); text-transform: uppercase;
}
.mobile-nav ul a:hover { color: var(--yellow); }
.mobile-nav-social { display: flex; gap: 16px; }
.mobile-nav-social a { color: var(--white); font-size: 20px; }
.mobile-nav-social a:hover { color: var(--yellow); }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 1999;
}
.nav-overlay.active { display: block; }

/* ===================================================
   HERO TOP
   =================================================== */
.hero-top {
  margin-top: var(--header-height);
  background: var(--white);
}
.hero-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--page-pad);
  gap: 20px;
}
.hero-slogan {
  font-family: var(--font-valve);
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}
.btn-book-hero { font-size: 14px; padding: 14px 28px; flex-shrink: 0; }
.hero-cta-wrap { display: flex; align-items: center; flex-shrink: 0; }
.hero-cta-scroll {
  display: inline-flex; align-items: center;
  font-family: var(--font-mori); font-weight: 700; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--yellow); color: var(--dark);
  padding: 16px 32px; border-radius: 50px;
  border: none; transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.hero-cta-scroll:hover { background: var(--green-footer); color: var(--white); transform: scale(1.03); }

/* ===================================================
   HERO BOTTOM
   =================================================== */
.hero-bottom {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-row-blue {
  position: relative;
  background: #076ECD;
  height: 143px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-blue-graphic {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 406px;
  height: 143px;
  max-width: none;
  object-fit: none;
  z-index: 1;
  pointer-events: none;
}
.hero-row-pink {
  background: #FA468D;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.hero-court-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0.9;
}
.hero-yellow-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 100%;
  background: var(--yellow);
  z-index: 2;
}
.hero-social-box {
  border: 2px solid #ffffff;
  padding: 20px 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}
.hero-follow {
  font-family: var(--font-mori); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.hero-social { display: flex; gap: 10px; }
.social-circle {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  aspect-ratio: 1 / 1; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; color: var(--dark); transition: background 0.2s, transform 0.2s;
}
/* Social-Circles in der pinken Hero-Fläche */
.hero-social-box .social-circle,
.hero-row-pink .social-circle {
  background: var(--pink) !important;
  color: var(--white) !important;
}
.social-circle:hover { background: var(--yellow); transform: scale(1.1); }



/* ===================================================
   MARQUEE
   =================================================== */
.marquee-wrap {
  background: var(--green-footer); overflow: hidden; padding: 14px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 40px; animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mori); font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================================================
   SECTION LABEL
   =================================================== */
.section-label {
  font-family: var(--font-mori); font-weight: 600; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); margin-bottom: 16px;
}

/* ===================================================
   COURTS / STANDORTE SECTION (neue Karten-Struktur)
   =================================================== */
.section-courts {
  padding: 80px var(--page-pad);
  background: var(--white);
}
.courts-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.courts-title {
  font-family: var(--font-valve); font-weight: 500;
  font-size: clamp(36px, 5vw, 64px); line-height: 1;
  text-transform: uppercase; color: var(--dark); margin-bottom: 16px;
}
.courts-subtitle {
  font-family: var(--font-mori); font-size: 16px; line-height: 1.6;
  color: #555;
}

/* Court Card Grid – automatisch erweiterbar */
.courts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Einzelne Court-Karte */
.court-card {
  border: 2px solid var(--dark);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.court-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Court Card Image */
.court-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}
.court-card-img-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.court-card-img-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}
.court-card-img-track img {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 100%;
}
.court-slider-prev,
.court-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: var(--yellow);
  color: var(--dark);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.court-card-image:hover .court-slider-prev,
.court-card-image:hover .court-slider-next { opacity: 1; }
/* Pfeile auf Touch-Geräten (mobil) immer sichtbar */
@media (hover: none) {
  .court-slider-prev, .court-slider-next { opacity: 0.85; }
}
.court-slider-prev { left: 10px; }
.court-slider-next { right: 10px; }
.court-slider-prev:hover,
.court-slider-next:hover { background: var(--green-footer); color: var(--white); }

/* Badge */
.court-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-mori); font-weight: 700; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid var(--dark);
}

/* Court Card Body */
.court-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.court-card-name {
  font-family: var(--font-mori); font-weight: 400;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--dark); margin-bottom: 20px; line-height: 1.2;
}
.court-card-name strong { font-weight: 700; }

/* Court Info Rows */
.court-card-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
  margin-bottom: 28px;
}
.court-info-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-mori); font-size: 14px; color: #444; line-height: 1.4;
}
.court-info-row i {
  color: var(--blue); font-size: 14px; margin-top: 2px; flex-shrink: 0; width: 16px;
}

/* Court Card Actions */
.court-card-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-top: auto;
}
.btn-court-book {
  flex: 1; text-align: center; justify-content: center;
  font-size: 13px; padding: 14px 20px;
  min-width: 140px;
}
.btn-maps {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mori); font-size: 13px; font-weight: 600;
  color: var(--dark); letter-spacing: 0.05em;
  padding: 12px 16px; border: 2px solid var(--dark); border-radius: 50px;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.btn-maps:hover { background: var(--dark); color: var(--white); }

/* Dropdown: Location Name + Sub */
.dd-location-name {
  display: block;
  font-family: var(--font-mori); font-weight: 700; font-size: 14px;
  color: var(--dark);
}
.dd-location-sub {
  display: block;
  font-family: var(--font-mori); font-size: 11px;
  color: #777; margin-top: 2px;
}

/* ===================================================
   LOCATIONS SECTION (alt – für Rückwärtskompatibilität)
   =================================================== */
.section-locations { padding: 80px var(--page-pad); background: var(--white); }
.locations-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; max-width: 1200px; margin: 0 auto;
}
.locations-title {
  font-family: var(--font-valve); font-weight: 500;
  font-size: clamp(40px, 6vw, 80px); line-height: 1;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--dark); margin-bottom: 24px;
}
.locations-desc {
  font-family: var(--font-mori); font-size: 15px; line-height: 1.6; color: var(--dark); margin-bottom: 12px;
}

/* ===================================================
   IMAGE SLIDER
   =================================================== */
.img-slider {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/3; background: var(--dark);
}
.img-slider-track { display: flex; height: 100%; transition: transform 0.4s ease; }
.img-slider-track img { min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.slider-arrows { position: absolute; bottom: 16px; right: 16px; display: flex; gap: 8px; }
.slider-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--dark); background: var(--yellow); color: var(--dark);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.slider-arrow:hover { background: var(--green-footer); color: var(--white); }

/* ===================================================
   BOOKING SECTION
   =================================================== */
.section-booking { background: var(--dark); padding: 80px var(--page-pad); }
.booking-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; max-width: 1200px; margin: 0 auto;
}
.booking-title {
  font-family: var(--font-valve); font-weight: 500;
  font-size: clamp(24px, 3vw, 38px); text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.booking-desc {
  font-family: var(--font-mori); font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.75); margin-bottom: 32px;
}
.location-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 24px; margin-bottom: 16px;
}
.location-sport {
  font-family: var(--font-mori); font-weight: 600; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.location-name {
  font-family: var(--font-mori); font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px); color: var(--white); margin-bottom: 8px;
}
.location-name strong { font-weight: 700; }
.location-address {
  font-family: var(--font-mori); font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 20px; display: flex; align-items: center; gap: 6px;
}
.btn-book-location { display: inline-flex; margin-bottom: 12px; font-size: 12px; padding: 12px 20px; }
.location-maps-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mori); font-size: 13px; color: rgba(255,255,255,0.7);
  font-weight: 600; letter-spacing: 0.05em; transition: color 0.2s;
}
.location-maps-link:hover { color: var(--yellow); }
.scroll-down-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: var(--yellow);
  color: var(--dark); font-size: 20px; margin-top: 24px; transition: background 0.2s, transform 0.2s;
}
.scroll-down-btn:hover { background: var(--white); transform: translateY(4px); }

/* ===================================================
   VISION SECTION
   =================================================== */
.section-vision { padding: 80px var(--page-pad); background: var(--blue); }
.vision-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.vision-title {
  font-family: var(--font-valve); font-weight: 500;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.1;
  text-transform: uppercase; color: var(--white); margin-bottom: 24px;
}
.vision-desc { font-family: var(--font-mori); font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.9); }
.section-vision .section-label { color: rgba(255,255,255,0.7); }

/* ===================================================
   PARTNERS
   =================================================== */
.section-partners { padding: 60px var(--page-pad); background: #FEF9F1; text-align: center; }
.partners-label { margin-bottom: 32px; }
.partners-marquee-wrap { overflow: hidden; width: 100%; }
.partners-marquee-track {
  display: inline-flex; align-items: center; gap: 60px;
  animation: marquee-partners 18s linear infinite; white-space: nowrap;
}
.partner-logo {
  height: 50px; width: auto; opacity: 0.85; flex-shrink: 0; transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }
@keyframes marquee-partners { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================================================
   INSTAGRAM
   =================================================== */
.section-instagram { padding: 80px var(--page-pad); background: var(--white); text-align: center; }
.insta-label { text-align: center; }
.insta-title {
  font-family: var(--font-valve); font-weight: 500;
  font-size: clamp(24px, 3vw, 40px); text-transform: uppercase;
  color: var(--dark); margin-bottom: 40px;
}
.insta-title a { color: var(--dark); transition: color 0.2s; }
.insta-title a:hover { color: var(--pink); }
.insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  max-width: 900px; margin: 0 auto 32px;
}
.insta-tile {
  aspect-ratio: 1; background-size: cover; background-position: center;
  background-color: var(--grey-bg); position: relative; overflow: hidden;
}
.insta-tile-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px; opacity: 0;
  transition: background 0.3s, opacity 0.3s;
}
.insta-tile:hover .insta-tile-overlay { background: rgba(0,0,0,0.45); opacity: 1; }
.btn-insta-follow {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white); font-family: var(--font-mori); font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em; padding: 14px 28px; border-radius: 50px;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-insta-follow:hover { opacity: 0.9; transform: scale(1.02); }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: var(--green-footer); color: var(--white); padding: 48px var(--page-pad) 32px; }
.footer-top {
  display: flex; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap;
}
.footer-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); flex-shrink: 0; }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 6px 16px; flex: 1; align-items: center;
}
.footer-nav a {
  font-family: var(--font-mori); font-weight: 600; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8);
  white-space: nowrap; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-book { flex-shrink: 0; font-size: 12px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px;
}
.footer-hours { display: flex; align-items: center; gap: 16px; }
.footer-hours-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
.footer-hours-label {
  font-family: var(--font-mori); font-weight: 600; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 2px;
}
.footer-hours-time { font-family: var(--font-mori); font-weight: 600; font-size: 14px; color: var(--white); }
.footer-social-wrap { text-align: center; }
.footer-social-label { font-family: var(--font-mori); font-size: 11px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-social { display: flex; gap: 16px; justify-content: center; }
.footer-social a { color: var(--white); font-size: 20px; transition: color 0.2s; }
.footer-social a:hover { color: var(--yellow); }
.footer-copy { font-family: var(--font-mori); font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===================================================
   SUBPAGE STYLES
   =================================================== */
.subpage-hero {
  background: var(--blue); color: var(--white);
  padding: 80px var(--page-pad) 60px; margin-top: var(--header-height);
  border-bottom: 2px solid var(--dark);
}
.subpage-hero h1 {
  font-family: var(--font-valve); font-weight: 500;
  font-size: clamp(40px, 8vw, 80px); text-transform: uppercase; line-height: 1;
}
.subpage-hero p {
  font-family: var(--font-mori); font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 12px;
}
.subpage-content { max-width: 900px; margin: 0 auto; padding: 60px var(--page-pad); }
.subpage-content h2 { font-family: var(--font-mori); font-weight: 700; font-size: 18px; margin: 36px 0 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.subpage-content h3 { font-family: var(--font-mori); font-weight: 700; font-size: 15px; margin: 24px 0 8px; }
.subpage-content p { font-family: var(--font-mori); font-size: 15px; line-height: 1.7; margin-bottom: 12px; color: #333; }
.subpage-content ul { padding-left: 20px; margin-bottom: 16px; }
.subpage-content ul li { font-family: var(--font-mori); font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 6px; list-style: disc; }
.subpage-content a { color: var(--blue); text-decoration: underline; }

/* Contact Form */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-family: var(--font-mori); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; color: #555; }
.contact-form input, .contact-form textarea { width: 100%; font-family: var(--font-mori); font-size: 15px; padding: 12px 16px; border: 2px solid #ddd; border-radius: 4px; background: var(--white); color: var(--dark); transition: border-color 0.2s; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--dark); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-submit { display: inline-flex; align-items: center; background: var(--dark); color: var(--white); font-family: var(--font-mori); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--blue); }

/* FAQ */
.faq-section { padding: 60px var(--page-pad); max-width: 900px; margin: 0 auto; }
.faq-category { margin-bottom: 40px; }
.faq-category-title {
  font-family: var(--font-valve); font-weight: 500; font-size: 28px;
  text-transform: uppercase; color: var(--dark); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--dark);
}
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; text-align: left; gap: 16px;
}
.faq-question span { font-family: var(--font-mori); font-weight: 600; font-size: 15px; color: var(--dark); }
.faq-question .faq-icon { font-size: 20px; color: var(--dark); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 2000px; }
.faq-answer p { font-family: var(--font-mori); font-size: 15px; line-height: 1.7; padding-bottom: 18px; color: #444; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  :root { --page-pad: 20px; }
  .hero-row-blue { height: 143px; }
  .hero-row-pink { height: 52px; }
  .hero-social { flex-wrap: wrap; gap: 8px; }
  .social-circle { width: 36px; height: 36px; min-width: 36px; min-height: 36px; font-size: 15px; }
  .section-locations, .section-booking, .section-vision, .section-courts { padding: 60px var(--page-pad); }
  .locations-inner, .booking-inner, .vision-inner { grid-template-columns: 1fr; gap: 40px; }
  .locations-title { font-size: clamp(36px, 8vw, 60px); }
  .courts-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero-row-blue { height: 143px; }
  .hero-row-pink { height: 46px; padding: 0 16px; }
  .hero-social-box { padding: 14px 18px; }
  .social-circle { width: 32px; height: 32px; min-width: 32px; min-height: 32px; font-size: 13px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-title { font-size: clamp(32px, 10vw, 50px); }
  .btn-book-hero { display: none; }
  .courts-grid { grid-template-columns: 1fr; }
  .court-card-actions { flex-direction: column; align-items: stretch; }
  .btn-maps { justify-content: center; }
  .hero-cta-scroll { font-size: 13px; padding: 13px 22px; }
  /* Header: Logo kleiner, DE/EN sichtbar */
  .header-logo img { height: 36px; }
  .header-center { gap: 4px; padding-right: 8px; }
  .lang-link { font-size: 12px; padding: 4px 4px; }
  .lang-sep { font-size: 12px; }
  .hamburger { margin-left: 4px; padding: 6px; }
}

/* ===================================================
   DROPDOWN BOOKING MENUS
   =================================================== */
.header-book-wrap,
.footer-book-wrap,
.locations-book-wrap,
.mobile-book-wrap {
  position: relative;
  display: inline-block;
}
.header-dropdown,
.footer-dropdown,
.locations-dropdown,
.mobile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: 8px;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.footer-dropdown {
  bottom: calc(100% + 8px);
  top: auto;
  right: 0;
}
.locations-dropdown {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
}
.mobile-dropdown {
  position: static;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  box-shadow: none;
}
.header-dropdown a,
.footer-dropdown a,
.locations-dropdown a,
.mobile-dropdown a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-mori);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  text-transform: none;
}
.mobile-dropdown a {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.15);
}
.header-dropdown a:last-child,
.footer-dropdown a:last-child,
.locations-dropdown a:last-child,
.mobile-dropdown a:last-child { border-bottom: none; }
.header-dropdown a:hover,
.footer-dropdown a:hover,
.locations-dropdown a:hover { background: var(--yellow); color: var(--dark); }
.mobile-dropdown a:hover { background: rgba(255,255,255,0.2); color: var(--yellow); }
.header-dropdown.open,
.footer-dropdown.open,
.locations-dropdown.open,
.mobile-dropdown.open { display: block; }
.dropdown-arrow { font-size: 10px; margin-left: 4px; }

/* Hover-Dropdown nur für Desktop mit Maus (verhindert "sticky hover" auf Touch-Geräten) */
@media (hover: hover) and (pointer: fine) {
  .header-book-wrap:hover .header-dropdown { display: block; }
  .footer-book-wrap:hover .footer-dropdown { display: block; }
  .locations-book-wrap:hover .locations-dropdown { display: block; }
}

/* ===================================================
   LOCATION CARD IMPROVEMENTS (Punkt 7: besseres Alignment)
   =================================================== */
.location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.location-hours {
  font-family: var(--font-mori);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.location-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.location-address { margin-bottom: 8px; }

/* LOCATIONS SECTION: Court-buchen Button */
.locations-book-wrap { margin-top: 24px; }
.btn-locations-book { font-size: 13px; padding: 13px 24px; }

/* Mobile book wrap in nav */
.mobile-book-wrap { margin-top: 8px; }
.mobile-book-wrap .btn-book { width: 100%; justify-content: center; }
