/* ====================================================
   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;
}
* { 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: 30px; align-items: center; }
.nav ul a {
  color: var(--ink-soft);
  font-size: 14px; font-weight: 600;
  transition: color 0.2s;
}
.nav ul a:hover, .nav ul a.active { color: var(--blue); }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 11px 22px; font-weight: 700 !important;
  font-size: 13px !important;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--blue); }

/* Highlight links: 49€ Angebot in Magenta + NEU Padel in Lime */
.nav-offer {
  background: #d11470;
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.01em;
  border: 2px solid #d11470;
  transition: all 0.2s;
}
.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-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-MENUE (Hamburger) ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  background: none; border: none; cursor: pointer;
  padding: 10px; z-index: 102;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease; z-index: 100;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-logo { position: relative; z-index: 102; }
  .nav.open .nav-overlay { opacity: 1; pointer-events: auto; }

  .nav ul {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: min(82vw, 340px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start; justify-content: flex-start;
    gap: 2px; margin: 0;
    padding: 100px 30px 40px;
    box-shadow: -24px 0 70px -25px rgba(0,0,0,0.35);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 101; overflow-y: auto;
  }
  .nav.open ul { transform: translateX(0); }
  .nav ul li { width: 100%; }
  .nav ul li a {
    display: block; width: 100%;
    padding: 15px 0; font-size: 19px;
    border-bottom: 1px solid var(--line);
  }
  .nav ul li.cta-li { margin-top: 18px; }
  .nav ul li.cta-li a { border-bottom: none; text-align: center; }
}

/* ===== 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-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-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); }
@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; }
