/* =========================================
   FIGHT CLUB AIX-LA-CHAPELLE - DESIGN SYSTEM
   ========================================= */

/* --- CSS Variables --- */
:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-accent: #D4AF37;
  --color-accent-red: #d32f2f;
  /* Martial Arts Red */
  --color-accent-hover: #b71c1c;
  /* Darker Red for Hover */
  --color-gray: #e6e6e6;
  --color-gray-dark: #f8f8f8;
  --color-bg-dark: #0a0a0a;
  /* Retained for footer/hero where needed */

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.4s ease-out;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5em;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.2rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-red);
}

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

/* --- Typography Utilities --- */
.text-accent {
  color: var(--color-accent);
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #666666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 6rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 1rem 2rem;
  text-transform: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent-red);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(183, 28, 28, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- Navigation --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--color-gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.club-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.club-location {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-accent-red);
  margin-top: 2px;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  /* Wichtig für vertikale Ausrichtung */
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
}

/* --- Footer --- */
footer {
  background-color: var(--color-bg-dark);
  /* Keeps footer dark for contrast */
  color: #ffffff;
  border-top: 2px solid var(--color-accent-red);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-col h4 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: #aaaaaa;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #aaaaaa;
}

.footer-col a:hover {
  color: var(--color-accent-red);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: #aaaaaa;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333333;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-accent-red);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-dark);
  color: #777777;
  font-size: 0.9rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Cards (Generisch) --- */
.card {
  background-color: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
  padding: 2rem;
  border-radius: 4px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Added slight shadow */
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-red);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* --- Keine Silbentrennung auf allen Geräten --- */
* {
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .menu-toggle {
    display: block;
  }

  /* Header kompakter auf Tablet/Mobile */
  .nav-container {
    padding: 0.75rem 0;
  }

  .nav-logo {
    width: 42px;
    height: 42px;
  }

  .club-name {
    font-size: 1.2rem;
  }

  .club-location {
    font-size: 0.68rem;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: left var(--transition-normal);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 2rem;
  }
}

/* =========================================
   RESPONSIVE TYPOGRAFIE – GLOBAL
   Hierarchie: Desktop → Tablet (≤768) → Klein-Tablet (≤600) → Mobile (≤480)
   ========================================= */

/* === Tablet (≤ 768px) – Basis-Verkleinerung aller Überschriften === */
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
    letter-spacing: 0.4px;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.9rem;
    letter-spacing: 0.3px;
    line-height: 1.28;
  }

  h3 {
    font-size: 1.5rem;
    letter-spacing: 0.2px;
    line-height: 1.32;
  }

  h4 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.4px;
    line-height: 1.22;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.55;
  }
}

/* === Klein-Tablet (≤ 600px) – Sanfte Zwischenstufe === */
@media (max-width: 600px) {
  h1 {
    font-size: 2.1rem;
    letter-spacing: 0.3px;
    line-height: 1.22;
  }

  h2 {
    font-size: 1.75rem;
    letter-spacing: 0.2px;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.35rem;
    letter-spacing: 0.1px;
    line-height: 1.35;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 0.3px;
    line-height: 1.24;
  }

  .section-subtitle {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
  }
}

/* === Mobile (≤ 480px) – Vollständige Mobile-Typografie === */
@media (max-width: 480px) {
  h1 {
    font-size: 1.85rem;
    letter-spacing: 0.15px;
    line-height: 1.24;
    margin-bottom: 0.4em;
  }

  h2 {
    font-size: 1.55rem;
    letter-spacing: 0.1px;
    line-height: 1.32;
    margin-bottom: 0.4em;
  }

  h3 {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.38;
    margin-bottom: 0.4em;
  }

  h4 {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .section-title {
    font-size: 1.65rem;
    letter-spacing: 0.2px;
    margin-bottom: 0.9rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.93rem;
    margin-bottom: 1.4rem;
    max-width: 100%;
    line-height: 1.55;
  }
}

/* Google Maps Wrapper */
.custom-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.custom-map-wrapper iframe {
  width: 100%;
  max-width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

@media screen and (max-width: 749px) {
  .custom-map-wrapper iframe {
    height: 250px;
  }
}

/* --- Champions / Erfolge --- */
.champion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.champion-card {
  background-color: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.champion-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.champion-card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-bottom: 3px solid var(--color-accent);
}

.champion-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.champion-card-title {
  color: var(--color-accent-red);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.champion-card-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.champion-card-desc {
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* --- Champion Detail Page --- */
.champion-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: 70px;
  /* Offset for fixed header */
}

.champion-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.champion-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 3rem;
}

.champion-hero-name {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.champion-hero-subtitle {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 1px;
}

.champion-detail-section {
  padding: 4rem 0;
}

.champion-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background-color: var(--color-bg-dark);
  color: #fff;
  padding: 3rem;
  border-radius: 8px;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color-accent);
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #aaa;
}

.champion-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.champion-story h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.champion-story p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.champion-quote {
  background-color: var(--color-gray-dark);
  border-left: 4px solid var(--color-accent);
  padding: 2rem;
  margin: 3rem 0;
  font-style: italic;
  font-size: 1.3rem;
  color: #333;
}

.champion-quote i {
  color: var(--color-accent);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.champion-sidebar h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gray);
}

.titles-list {
  list-style: none;
}

.titles-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
}

.titles-list li::before {
  content: '\f091';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.champion-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.gallery-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform var(--transition-fast);
}

.gallery-img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .champion-content-grid {
    grid-template-columns: 1fr;
  }

  .champion-hero-name {
    font-size: 2.5rem;
  }

  .champion-stats-grid {
    margin-top: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .champion-grid {
    grid-template-columns: 1fr;
  }

  .champion-card-img {
    height: 250px;
  }

  .champion-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .champion-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-img {
    height: auto;
  }

  .champion-hero {
    height: 50vh;
    min-height: 300px;
  }

  .champion-hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .champion-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .champion-hero-name {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}

/* --- Sponsoren-Streifen --- */
.sponsors-bar {
  background-color: #111111;
  border-top: 2px solid var(--color-accent);
  padding: 3rem 0;
  text-align: center;
}

.sponsors-bar-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: #fdfdfd;
  text-transform: none;
  margin-bottom: 2rem;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

/* Echter Sponsor mit Logo */
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  width: 200px;
  height: 90px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.sponsor-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
  border-color: var(--color-accent);
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
}

/* Leere Platzhalter-Slots */
.sponsor-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  opacity: 0.45;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
  color: #aaa;
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-decoration: none;
}

.sponsor-slot:hover {
  opacity: 0.8;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.sponsors-cta {
  font-size: 0.95rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

.sponsors-cta a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.sponsors-cta a:hover {
  color: var(--color-accent-red);
}

/* =========================================
   UNTERSEITEN: PAGE-HEADER RESPONSIVE
   ========================================= */

/* Beschreibungstext im Page-Header (ersetzt Inline-Styles) */
.page-header-desc {
  font-size: 1.4rem;
  color: #dddddd;
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
  font-family: var(--font-body);
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

/* Großer CTA-Button (ersetzt inline font-size/padding overrides) */
.btn-lg {
  font-size: 1.35rem;
  padding: 1.1rem 2.6rem;
}

/* === Tablet (≤ 768px) – Page Header === */
@media (max-width: 768px) {
  .page-header {
    padding: 9rem 0 4rem !important;
  }

  .page-header h1 {
    font-size: 2.5rem !important;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .page-header-desc {
    font-size: 1.15rem;
    margin-top: 0.6rem;
  }

  .btn-lg {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }
}

/* === Mobile (≤ 480px) – Page Header === */
@media (max-width: 480px) {
  .page-header {
    padding: 7.5rem 0 3rem !important;
  }

  .page-header h1 {
    font-size: 1.85rem !important;
    letter-spacing: 0.2px;
    line-height: 1.22;
  }

  .page-header-desc {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.55;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
}

/* --- Button Responsive – Tablet (≤ 768px) --- */
@media (max-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
  }

  .btn-outline {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
  }

  /* Full-width Buttons in Karten: maximale Breite begrenzen */
  .program-card .btn,
  .team-member-info .btn {
    max-width: 280px;
  }
}

/* --- Mobile Button Kompression (≤ 480px) --- */
@media (max-width: 480px) {
  .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
    letter-spacing: 0.3px;
  }

  /* Outline-Button etwas leichter / schmäler */
  .btn-outline {
    border-width: 1.5px;
    font-size: 0.85rem;
    padding: 0.65rem 1.3rem;
  }

  /* Full-width Buttons in Karten: auf Mobile hübsch begrenzen */
  .program-card .btn,
  .team-member-info .btn {
    max-width: 240px;
  }

  /* Seitliche Abstände im Container sauber halten */
  .container {
    width: 92%;
  }

  /* Sections etwas weniger Padding auf Mobile */
  section {
    padding: 4rem 0;
  }
}

/* =========================================
   KOMPONENTEN-SPEZIFISCHE MOBILE TYPOGRAFIE
   Überschreibt seitenspezifische Inline-Größen
   auf Tablet, Klein-Tablet und Mobile.
   Desktop-Styles werden NICHT verändert.
   ========================================= */

/* === Tablet (≤ 768px) – Komponenten === */
@media (max-width: 768px) {

  /* --- Stundenplan: Area-Titel --- */
  .area-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }

  .day-time {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .class-name {
    font-size: 1.05rem;
  }

  /* --- Preise: Karten-Überschriften & Preise --- */
  .pricing-title {
    font-size: 1.7rem;
  }

  .pricing-price {
    font-size: 3.2rem;
  }

  /* --- Index: Programm-Karten --- */
  .program-card h3 {
    font-size: 1.6rem;
  }

  /* --- Index: Value-Prop-Leiste --- */
  .value-prop {
    font-size: 1.2rem;
    padding: 1.2rem 0;
  }

  /* --- Über Uns: Statistik-Zahlen --- */
  .stat-item h4 {
    font-size: 2.2rem;
  }

  /* --- Champion / Trainer: Hero-Name --- */
  .champion-hero-name {
    font-size: 2.6rem;
  }

  .champion-hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  /* --- Champion: Inhaltsbereich --- */
  .champion-story h2 {
    font-size: 1.9rem;
  }

  .champion-sidebar h3 {
    font-size: 1.5rem;
  }

  /* --- Kontakt: Info-Karten --- */
  .info-card h3 {
    font-size: 1.3rem;
  }

  /* --- Kontakt: Formular-Titel (inline h2 2.5rem) --- */
  .contact-form-card h2 {
    font-size: 1.9rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* --- Kontakt: Abschluss-H3 in Formular --- */
  .contact-form-card h3 {
    font-size: 1.2rem !important;
  }

  /* --- Footer --- */
  .footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  /* --- Champion Stats --- */
  .stat-value {
    font-size: 1.9rem;
  }

  /* --- Champion-Zitat --- */
  .champion-quote {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
}

/* === Klein-Tablet (≤ 600px) – Komponenten === */
@media (max-width: 600px) {

  /* --- Stundenplan --- */
  .area-title {
    font-size: 1.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
  }

  .day-time {
    font-size: 1.05rem;
  }

  /* --- Preise --- */
  .pricing-title {
    font-size: 1.55rem;
  }

  .pricing-price {
    font-size: 2.8rem;
  }

  /* --- Programm-Karten --- */
  .program-card h3 {
    font-size: 1.4rem;
  }

  /* --- Champion / Trainer --- */
  .champion-hero-name {
    font-size: 2.2rem;
  }

  .champion-story h2 {
    font-size: 1.65rem;
  }

  /* --- Statistik --- */
  .stat-item h4 {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 1.7rem;
  }
}

/* === Mobile (≤ 480px) – Komponenten === */
@media (max-width: 480px) {

  /* --- Stundenplan: Area-Titel stark verkleinert --- */
  .area-title {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
  }

  .area-card {
    padding: 1.5rem 1rem;
  }

  .day-time {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .class-name {
    font-size: 0.95rem;
  }

  /* --- Preise: Karten kompakt --- */
  .pricing-title {
    font-size: 1.35rem;
  }

  .pricing-price {
    font-size: 2.4rem;
  }

  .premium-badge {
    font-size: 0.95rem;
    top: -28px;
  }

  /* --- Index: Programm-Karten --- */
  .program-card h3 {
    font-size: 1.25rem;
  }

  .program-card {
    padding: 2rem 1.25rem;
  }

  /* --- Index: Value-Prop-Leiste --- */
  .value-prop {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .value-item {
    font-size: 0.9rem;
  }

  /* --- Über Uns: Statistik-Zahlen --- */
  .stat-item h4 {
    font-size: 1.8rem;
  }

  .stat-item p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  /* --- Über Uns: Team-Karten --- */
  .team-member-info h3 {
    font-size: 1.3rem;
  }

  /* --- Champion / Trainer: Hero --- */
  .champion-hero-name {
    font-size: 1.9rem;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9);
  }

  .champion-hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  /* --- Champion: Inhaltsbereich --- */
  .champion-story h2 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
  }

  .champion-story p {
    font-size: 1rem;
  }

  .champion-sidebar h3 {
    font-size: 1.2rem;
  }

  /* --- Champion: Statistik-Werte --- */
  .stat-value {
    font-size: 1.6rem;
  }

  /* --- Champion: Zitat --- */
  .champion-quote {
    font-size: 1rem;
    padding: 1.25rem;
    margin: 2rem 0;
  }

  /* --- Kontakt: Formular-Titel --- */
  .contact-form-card h2 {
    font-size: 1.55rem !important;
    margin-bottom: 1.25rem !important;
  }

  .contact-form-card h3 {
    font-size: 1.05rem !important;
  }

  /* --- Kontakt: Info-Karten --- */
  .info-card h3 {
    font-size: 1.1rem;
  }

  .info-card i {
    font-size: 1.8rem;
  }

  /* --- Footer --- */
  .footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  /* --- Index: Final-CTA-Bereich --- */
  .final-cta h2 {
    font-size: 1.55rem !important;
  }

  .final-cta p {
    font-size: 1rem !important;
  }

  /* --- Champion-Karten (Erfolge) --- */
  .champion-card-name {
    font-size: 1.35rem;
  }

  .champion-card-title {
    font-size: 0.8rem;
  }
}