/* ============================================
   Yoga Pilates Llucmajor - Static Site Styles
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/quicksand-normal-latin.woff2') format('woff2');
  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+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/quicksand-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/quicksand-normal-latin.woff2') format('woff2');
  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+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/quicksand-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/quicksand-normal-latin.woff2') format('woff2');
  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+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/quicksand-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- CSS Variables --- */
:root {
  --color-primary: #38a3a5;
  --color-primary-hover: #2a9294;
  --color-dark: #081d1e;
  --color-text: #545f5f;
  --color-bg-light: #f2f7f7;
  --color-white: #ffffff;
  --color-subtle: #d7e1e1;
  --color-black: #000000;
  --color-heading: #363636;
  --container-max: 1140px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-black);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: var(--color-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  color: var(--color-text);
  font-weight: 400;
}

h1 {
  font-size: 56px;
  line-height: 1.15em;
}

h2 {
  font-size: 36px;
  line-height: 1.25em;
}

h3 {
  font-size: 24px;
  line-height: 1.3em;
}

p {
  margin-bottom: 1em;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999999;
  padding: 8px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
}
.skip-link:focus {
  left: 0;
  color: var(--color-white);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

.main-nav a {
  display: block;
  padding: 10px 20px;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Subtitle (H6 style) --- */
.subtitle {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* --- Hero Section (Home) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background-image: url('../images/hero-bg.jpeg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--color-white);
}

.hero-content {
  max-width: 600px;
  padding: 0 40px;
}

.hero .subtitle {
  font-weight: 400;
}

.hero h1 {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
}

.section-teal-bg {
  background-color: #38A3A529;
}

/* --- Unser Zentrum Section --- */
.zentrum-section {
  position: relative;
  min-height: 500px;
  background-image: url('../images/zentrum-bg.jpeg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 40px;
}

.zentrum-card {
  background: var(--color-white);
  padding: 50px;
  max-width: 600px;
  width: 100%;
}

.zentrum-card h2 {
  color: var(--color-heading);
  margin-bottom: 20px;
}

.zentrum-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
}

/* --- Services Grid --- */
.services-grid-section {
  padding-top: 100px;
  padding-bottom: 0;
}

.services-grid-section h2 {
  color: var(--color-heading);
  text-align: left;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  animation: zoomIn 0.6s ease-out both;
}

.service-card:nth-child(2) { animation-delay: 60ms; }
.service-card:nth-child(3) { animation-delay: 120ms; }
.service-card:nth-child(4) { animation-delay: 180ms; }
.service-card:nth-child(5) { animation-delay: 240ms; }
.service-card:nth-child(6) { animation-delay: 300ms; }
.service-card:nth-child(7) { animation-delay: 360ms; }
.service-card:nth-child(8) { animation-delay: 420ms; }
.service-card:nth-child(9) { animation-delay: 480ms; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-card-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: #3f3f3f;
  padding: 20px;
  text-align: right;
  width: 100%;
  margin-top: auto;
}

/* --- Pricing Section --- */
.pricing-section {
  background-color: #38A3A529;
  padding-top: 100px;
  padding-bottom: 0;
}

.pricing-section > .container > h2 {
  color: var(--color-heading);
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pricing-card {
  padding: 40px 30px;
  text-align: center;
}

.pricing-card h2 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-divider {
  border-top: 1px solid var(--color-black);
  padding: 15px 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.pricing-card-1 { background-color: #38A3A582; }
.pricing-card-2 { background-color: #38a3a5; color: var(--color-white); }
.pricing-card-2 .pricing-divider { border-color: var(--color-white); }
.pricing-card-3 { background-color: #38A3A536; }
.pricing-card-4 { background-color: #38A3A5A6; }

/* --- Kurszeiten Section --- */
.kurszeiten-section {
  background-color: #38A3A529;
  padding-top: 100px;
  padding-bottom: 80px;
}

.kurszeiten-card {
  background: var(--color-white);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.kurszeiten-card h2 {
  color: var(--color-heading);
  margin-bottom: 20px;
}

.kurszeiten-card p {
  font-weight: 400;
  margin-bottom: 20px;
}

.kurszeiten-schedule {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-cta {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}
.btn-cta:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* --- Map / Location Section --- */
.location-section {
  background-color: #38A3A529;
  padding: 80px 0;
  text-align: center;
}

.location-section .subtitle {
  font-weight: 400;
}

.location-section h2 {
  margin-bottom: 15px;
}

.location-section h3 {
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--color-text);
}

.location-links {
  margin-bottom: 30px;
}

.location-links a {
  display: block;
  margin-bottom: 5px;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 1px solid #777;
}

/* --- Testimonials --- */
.testimonials-section {
  background-color: #38A3A529;
  padding: 80px 0;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-divider {
  width: 60px;
  height: 1px;
  background: var(--color-black);
  margin: 15px auto 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 10px 10px 10px 65px;
  box-shadow: 0 0 30px rgba(45, 45, 45, 0.1);
  padding: 30px;
  transition: background 0.3s, box-shadow 0.3s;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--color-white);
  font-size: 16px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--color-text);
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h2 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col p {
  color: var(--color-white);
  line-height: 1.8;
}

.footer-col a {
  color: var(--color-white);
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.footer-col a:hover {
  opacity: 0.8;
  color: var(--color-white);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-white);
}

/* --- Inner Page Hero --- */
.page-hero {
  padding: 160px 40px 100px;
  background-color: var(--color-bg-light);
}

.page-hero-dark {
  background-image: url('../images/zentrum-bg.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  opacity: 0.75;
}
.page-hero-dark .container {
  position: relative;
  z-index: 1;
}
.page-hero-dark,
.page-hero-dark h1,
.page-hero-dark .subtitle {
  color: var(--color-white);
}
.page-hero-dark .subtitle {
  color: var(--color-white);
}

/* --- About Page --- */
.about-story {
  position: relative;
  background-image: url('../images/zentrum-bg.jpeg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 300px;
}

.about-card {
  background: var(--color-white);
  padding: 100px;
  max-width: 900px;
}

.about-card h2 {
  color: var(--color-heading);
  margin-bottom: 20px;
}

.about-card p {
  font-weight: 400;
  margin-bottom: 20px;
}

.about-image {
  max-width: 600px;
  margin: 30px 0;
}

.about-values {
  padding: 80px 0;
}

.about-values h2 {
  color: var(--color-heading);
  margin-bottom: 30px;
}

.about-values h3 {
  color: var(--color-heading);
  margin-bottom: 10px;
  margin-top: 30px;
}

/* --- Services Page --- */
.services-hero-img {
  max-width: 100%;
  margin: 30px 0;
}

.service-detail {
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 60px;
}
.service-detail:nth-child(even) {
  flex-direction: row-reverse;
  background-color: var(--color-bg-light);
}

.service-detail-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.service-detail-content {
  flex: 1;
}

.service-detail-content h2 {
  color: var(--color-heading);
  margin-bottom: 15px;
}

/* --- Contact Page --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.contact-info-box {
  text-align: center;
}

.contact-info-box .icon {
  font-size: 30px;
  color: #333;
  margin-bottom: 10px;
}

.contact-info-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-heading);
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
  transition: color 0.3s;
}
.social-icons a:hover {
  color: var(--color-primary);
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-subtle);
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 12px 32px;
  background-color: #32373c;
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-submit:hover {
  background-color: var(--color-primary);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--color-bg-light);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-heading);
  margin-bottom: 15px;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 25px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

/* --- Cookie Page --- */
.cookie-content {
  padding: 40px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.cookie-content h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-heading);
}

.cookie-content h3 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--color-heading);
}

.cookie-content h4 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 8px;
  color: var(--color-heading);
}

.cookie-content p,
.cookie-content ul {
  font-size: 16px;
  margin-bottom: 15px;
}

.cookie-content ul {
  padding-left: 20px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  padding: 24px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-banner h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-heading);
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.cookie-btn-accept {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.cookie-btn-accept:hover {
  background-color: var(--color-primary-hover);
}

.cookie-btn-deny {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-subtle);
}
.cookie-btn-deny:hover {
  background-color: var(--color-bg-light);
}

.cookie-btn-preferences {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-subtle);
}

/* Floating consent manage button */
.consent-manage-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99998;
  padding: 8px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-subtle);
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

/* --- Trainer Overlay --- */
#trainerLink {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 2147483647;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
#trainerLink:hover { background: rgba(255, 255, 255, 0.98); }

#trainerPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 2147483647;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.trainer-panel {
  width: min(980px, 100%);
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}

.trainer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 10px;
}

.trainer-title {
  font-size: 16px;
  font-weight: 650;
  margin: 0;
}

.trainer-close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
}
.trainer-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.trainer-content {
  padding: 16px;
}

#trainerLogin p { margin: 6px 0 10px; }

.trainer-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

#trainerPassword {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  min-width: 220px;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}

#trainerOpenBtn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: var(--color-white);
  cursor: pointer;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}
#trainerOpenBtn:hover { background: rgba(0, 0, 0, 0.04); }

/* --- Responsive --- */
@media (max-width: 1200px) {
  .hero {
    background-position: center center;
  }
}

@media (max-width: 921px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .main-nav a {
    padding: 12px 20px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    flex-direction: column !important;
  }

  .service-detail-image {
    width: 100%;
    min-height: 250px;
  }

  .about-card {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .hero {
    background-size: cover;
    background-position: center;
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-title {
    font-size: 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .zentrum-section {
    padding: 40px 20px;
  }

  .zentrum-card {
    padding: 30px;
  }

  .kurszeiten-card {
    padding: 30px;
  }

  .btn-cta {
    font-size: 20px;
  }

  .page-hero {
    padding: 120px 20px 60px;
  }

  .about-story {
    padding-top: 100px;
  }

  .about-card {
    padding: 30px;
  }

  .section {
    padding: 60px 0;
  }
}
