/* ============================================================
   Donau Padel Park — donaupadelpark.de
   Farbwelt & Typo gemäß Styleguide v1.3
   ============================================================ */

@font-face {
  font-family: 'Crystal';
  src: url('../fonts/Crystal-CondensedBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Montserrat als Variable Font (SIL OFL), lokal gehostet — keine Google-Verbindung */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Variable-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Variable-latin-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --gold:        #A88840;
  --gold-light:  #C6A860;
  --gold-pale:   #E4D3A6;
  --gold-text:   #8C7235;
  --anthracite:  #212224;
  --ink:         #191A1B;
  --panel:       #26272A;
  --line:        #34363A;
  --white:       #FFFFFF;
  --text:        #E8E6E1;
  --text-dim:    #9A9893;
  --court-blue:  #3E6E93;

  --font-display: 'Crystal', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1160px;
  --pad-x: clamp(20px, 5vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 92px; }

/* Nur für Screenreader sichtbarer Text */
.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;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.btn-solid:focus-visible { outline-color: var(--gold-pale); }

body {
  background: var(--anthracite);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold-pale); }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.015em;
  color: var(--white);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(38px, 5.2vw, 64px);
  margin-bottom: 28px;
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 62ch;
}
.lead strong { color: var(--text); font-weight: 600; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid var(--gold);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-solid {
  background: var(--gold);
  color: var(--ink);
}
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
}
.btn-ghost:hover { background: rgba(168, 136, 64, 0.12); color: var(--gold-pale); }

/* Noch nicht aktive CTA (Playtomic-Buchung startet zur Eröffnung) */
.btn-soon { cursor: default; }
.btn-soon.btn-solid:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.soon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  line-height: 1;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(25, 26, 27, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 76px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav .btn { padding: 12px 24px; }

.nav-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-insta img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  transition: transform .2s ease;
}
.nav-insta:hover img { transform: scale(1.08); }
.nav-insta-text { display: none; }

/* Einfache Navigation der Rechtsseiten (immer sichtbar, auch mobil) */
.legal-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.legal-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { display: block; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/rendering.jpg') center 30% / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(25,26,27,.55) 0%, rgba(25,26,27,.25) 35%, rgba(25,26,27,.88) 82%, var(--anthracite) 100%);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px var(--pad-x) clamp(72px, 10vh, 120px);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid var(--gold);
  background: rgba(25, 26, 27, 0.55);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  max-width: 14ch;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero .lead { margin-bottom: 40px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(20px, 5vw, 48px);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}

/* ---------- Sektionen (allgemein) ---------- */

section { position: relative; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
}

/* ---------- Zahlenleiste ---------- */

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px 12px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--gold);
  line-height: 1;
}
.stat .label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Anlage / Features ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}

.feature {
  background: var(--anthracite);
  padding: 44px 40px;
}
.feature:hover { background: var(--panel); }

.feature .no {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.feature p { color: var(--text-dim); font-size: 16px; }

/* ---------- Buchung / Playtomic ---------- */

.booking { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.booking .section-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.booking-steps, .fact-list { list-style: none; margin-top: 40px; display: grid; gap: 0; }
.booking-steps li, .fact-list li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.booking-steps li:last-child, .fact-list li:last-child { border-bottom: 1px solid var(--line); }
.booking-steps .step-no, .fact-list .step-no {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  min-width: 34px;
  padding-top: 2px;
}
.booking-steps h3, .fact-list h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.booking-steps p, .fact-list p { color: var(--text-dim); font-size: 15px; }

/* ---------- Lage ---------- */

.location .section-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.location .fact-list { margin-top: 0; }

.booking-card {
  border: 1px solid var(--gold);
  padding: clamp(36px, 4vw, 56px);
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(168,136,64,0.14) 0%, rgba(168,136,64,0) 60%),
    var(--anthracite);
}
.booking-card img { width: 84px; margin: 0 auto 26px; }
.booking-card h3 { font-size: 32px; margin-bottom: 14px; }
.booking-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 30px; }
.booking-card .note {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Eröffnung ---------- */

.opening .section-inner { text-align: center; max-width: 860px; }
.opening .section-title { margin-bottom: 20px; }
.opening .lead { margin: 0 auto 40px; }

/* ---------- Instagram-CTA ---------- */

.insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px 18px 20px;
  border: 1px solid var(--gold);
  text-align: left;
  transition: background .25s ease, border-color .25s ease;
}
.insta-cta:hover { background: rgba(168, 136, 64, 0.12); border-color: var(--gold-light); }
.insta-cta img { width: 56px; height: 56px; }
.insta-text { display: flex; flex-direction: column; gap: 3px; }
.insta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.insta-handle {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
}
.insta-cta:hover .insta-handle { color: var(--gold-pale); }

/* ---------- Kontakt ---------- */

.contact { background: var(--ink); border-top: 1px solid var(--line); }
.contact .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
}
.contact-list { list-style: none; margin-top: 36px; display: grid; gap: 26px; }
.contact-list .label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}
.contact-list a, .contact-list span.value { font-size: 19px; color: var(--text); }
.contact-list a:hover { color: var(--gold-light); }

.contact-map {
  border: 1px solid var(--line);
  min-height: 320px;
  background:
    radial-gradient(100% 100% at 50% 0%, rgba(62,110,147,0.18) 0%, rgba(62,110,147,0) 70%),
    var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.contact-map .inner { max-width: 34ch; }
.contact-map img { width: 64px; margin: 0 auto 20px; opacity: .9; }
.contact-map p { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--line); background: var(--anthracite); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img { height: 96px; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 13px; color: var(--text-dim); width: 100%; }

/* ---------- Unterseiten (Impressum etc.) ---------- */

.legal-page { padding-top: 92px; }
.legal-page .section-inner { max-width: 820px; }
.legal-page h1 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 40px; }
.legal-page h2 { font-size: 28px; margin: 56px 0 16px; color: var(--gold-light); }
.legal-page h3 { font-size: 21px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-dim); margin-bottom: 14px; }
.legal-page p strong { color: var(--text); }
.legal-page ul { padding-left: 22px; }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .booking .section-inner,
  .location .section-inner,
  .contact .section-inner { grid-template-columns: 1fr; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(25, 26, 27, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad-x) 24px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav .btn { margin-top: 16px; justify-content: center; }

  .nav-insta-text {
    display: inline;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-toggle { display: block; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 34px 26px; }
}
