/* ====================================================
   ELOSTA GYM – Shared Styles (Light Theme, Manrope)
   ==================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f0;
  --bg-cream: #faf9f4;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --muted: #6e6e6e;
  --line: #e6e6e2;
  --blue: #29A8D9;
  --blue-deep: #1D8FBA;
  --blue-soft: #e8f6fc;
  --lime: #d4ff2a;
  --lime-deep: #a8d000;
  --orange: #FF6B35;
  --orange-deep: #E04F1A;
  --orange-soft: #FFF1EB;
  --green: #5DA831;
  --green-deep: #4A8628;
  --green-soft: #EEF7E7;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--ink);
  font-weight: 400; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { font-weight: 900; letter-spacing: -0.025em; line-height: 0.98; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 4%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 64px; width: auto; display: block; }
@media (max-width: 600px) { .nav-logo img { height: 52px; } }
.nav ul { list-style: none; display: flex; gap: 24px; align-items: center; flex-wrap: nowrap; }
.nav ul li { display: flex; align-items: center; }
.nav ul a {
  color: var(--ink-soft);
  font-size: 14px; font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
  line-height: 1.2;
}
.nav ul a:hover, .nav ul a.active { color: var(--blue); }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 8px 18px; font-weight: 700 !important;
  font-size: 13px !important;
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1.3;
}
.nav-cta:hover { background: var(--blue); }

/* Highlight links: Fitness Angebot in Magenta + NEU Padel in Lime */
.nav-offer {
  background: #d11470;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.01em;
  border: 2px solid #d11470;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1.3;
}
.nav-offer:hover {
  background: #fff;
  color: #d11470 !important;
  transform: translateY(-1px);
}
.nav-padel {
  background: var(--lime);
  color: var(--ink) !important;
  padding: 6px 8px 6px 14px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.nav-padel:hover {
  background: var(--ink);
  color: var(--lime) !important;
  transform: translateY(-1px);
}
.nav-squash {
  background: var(--orange);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 13px !important;
  transition: all 0.2s;
}
.nav-squash:hover { background: var(--ink); color: var(--orange) !important; transform: translateY(-1px); }
.nav-tennis {
  background: var(--green);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 13px !important;
  transition: all 0.2s;
}
.nav-tennis:hover { background: var(--ink); color: var(--green) !important; transform: translateY(-1px); }
.nav-neu-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--lime);
  font-weight: 900; font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  line-height: 1;
}
.nav-padel:hover .nav-neu-badge { background: var(--lime); color: var(--ink); }

/* ===== MOBILE MENU ===== */
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 8px;
}
.nav-mobile-toggle span {
  display: block; height: 3px; width: 100%;
  background: var(--ink); border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-mobile-toggle { display: flex; }
  .nav ul {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 20px 18px 28px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  }
  .nav ul.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav ul li { display: block !important; width: 100%; }
  .nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
  }
  .nav ul li a:not(.nav-offer):not(.nav-padel):not(.nav-squash):not(.nav-tennis):not(.nav-cta):hover {
    background: var(--blue-soft); color: var(--blue-deep);
  }
  .nav-offer, .nav-padel, .nav-squash, .nav-tennis, .nav-cta {
    width: 100%;
    text-align: center;
    font-size: 15px !important;
  }
  .cta-li { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); color: #fff; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--ink); color: var(--lime); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--ink); color: #fff;
  padding: 16px 0; overflow: hidden;
}
.marquee.lime { background: var(--lime); color: var(--ink); }
.marquee.orange { background: var(--orange); color: #fff; }
.marquee.green { background: var(--green); color: #fff; }
.marquee-track {
  display: flex; gap: 44px; white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.01em;
}
.marquee-track span.dot { color: var(--blue); font-size: 12px; align-self: center; }
.marquee.lime .marquee-track span.dot { color: var(--ink); }
.marquee.orange .marquee-track span.dot { color: var(--ink); }
.marquee.green .marquee-track span.dot { color: var(--ink); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 110px 4%; }
.section.alt { background: var(--bg-cream); }
.section.dark { background: var(--ink); color: #fff; }
.section-head {
  max-width: 1400px; margin: 0 auto 64px;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 40px; align-items: end;
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 50px; } }
.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--blue);
}
.section h2 {
  font-size: clamp(40px, 6vw, 92px);
  color: var(--ink);
}
.section.dark h2 { color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 4% 90px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 28px;
  border-radius: 999px;
}
.page-hero-tag::before {
  content: ''; width: 7px; height: 7px;
  background: var(--blue); border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(48px, 8vw, 130px);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--blue); }
.page-hero h1 .light { font-weight: 300; color: var(--muted); }
.page-hero p {
  font-size: clamp(16px, 1.3vw, 20px);
  max-width: 620px; color: var(--muted);
  font-weight: 400;
}
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px;
  font-weight: 600;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--blue); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: #fff;
  padding: 70px 4% 30px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand img { height: 90px; width: auto; margin-bottom: 22px; background: #fff; padding: 10px; border-radius: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; max-width: 320px; }
.footer-col h5 {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ===== UTILITY ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: none; }
.container { max-width: 1400px; margin: 0 auto; }
