@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --red: #A40233;
  --red-dark: #870228;
  --red-light: #f9e8ed;
  --dark: #2b2b2b;
  --gray: #666;
  --light: #f8f8f8;
  --white: #fff;
  --border: #e5e5e5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-group span { display: flex; align-items: center; gap: 6px; }

/* ── NAVBAR ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red);
  background: var(--red-light);
}
.nav-links .btn-nav {
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  margin-left: 8px;
}
.nav-links .btn-nav:hover {
  background: var(--red-dark);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background:
    linear-gradient(135deg, rgba(26,0,8,0.72) 0%, rgba(164,2,51,0.65) 60%, rgba(212,0,74,0.55) 100%),
    url('https://physio-platzer.de/wp-content/uploads/intro1.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.75);
}
.hero p {
  font-size: clamp(15px, 2.5vw, 20px);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--white);
  color: var(--red);
}
.btn-primary:hover { background: #f0f0f0; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); }

/* ── QUICK INFO STRIP ── */
.info-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px;
}
.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-item h4 { font-size: 13px; color: var(--gray); font-weight: 500; }
.info-item p { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ── SECTION ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--gray);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text h2 span { color: var(--red); }
.about-text p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 16px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight p { font-size: 15px; color: var(--dark); }
.about-visual {
  background: linear-gradient(160deg, var(--red-light), #fff0f4);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.about-visual-inner {
  font-family: 'Poppins', sans-serif;
}
.about-stat {
  margin: 20px 0;
}
.about-stat .num {
  font-size: 56px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.about-stat p { color: var(--gray); font-size: 14px; }
.about-stat-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

/* ── LEISTUNGEN CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(164,2,51,0.1);
  transform: translateY(-3px);
  border-color: var(--red);
}
.service-card-icon {
  width: calc(100% + 56px);
  height: 200px;
  margin: -28px -28px 20px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-icon img {
  transform: scale(1.05);
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 18px;
  opacity: 0.88;
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(160deg, var(--red-light), #ffe0e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.team-info { padding: 24px; }
.team-info h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.team-info .role { font-size: 13px; color: var(--red); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: var(--gray); }

/* ── KONTAKT / FORM ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.kontakt-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-block-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-block h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-block p, .contact-block a { font-size: 14px; color: var(--gray); text-decoration: none; }
.contact-block a:hover { color: var(--red); }
.opening-hours { margin-top: 32px; }
.opening-hours h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }

/* ── FORM ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-required { color: var(--red); }
.dsgvo-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
}
.dsgvo-label input { margin-top: 3px; accent-color: var(--red); }
.dsgvo-label a { color: var(--red); }
.form-submit { width: 100%; padding: 14px; font-size: 16px; font-weight: 600; margin-top: 8px; }
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
}
.form-msg.success { background: #e8f9f0; color: #1a7a42; }
.form-msg.error { background: #fde8ed; color: var(--red); }

/* ── MAP PLACEHOLDER ── */
.map-section { padding: 0; }
.map-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #e8e8e8, #d5d5d5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
}
.map-placeholder span { font-size: 48px; }

/* ── PAGE HERO (sub pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1a0008 0%, var(--red) 100%);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p { font-size: 18px; opacity: 0.85; max-width: 580px; margin: 0 auto; }

/* ── LEISTUNGEN FULL LIST ── */
.leistung-detail {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.leistung-toggle {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background 0.2s;
}
.leistung-toggle:hover { background: var(--red-light); color: var(--red); }
.leistung-toggle span { font-size: 20px; transition: transform 0.3s; }
.leistung-toggle.open span { transform: rotate(45deg); }
.leistung-body {
  display: none;
  padding: 0 24px 24px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.leistung-body.open { display: block; }
.leistung-badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 8px;
}

/* ── AKUTTERMIN PAGE ── */
.akut-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 18px;
}
.step-card h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray); }

/* ── FOOTER ── */
footer {
  background: #1a0008;
  color: #ccc;
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer p, footer a { font-size: 14px; color: #aaa; text-decoration: none; line-height: 1.9; }
footer a:hover { color: var(--white); }
.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid #2d0012;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #888; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-nav { display: flex; flex-direction: column; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px 24px; border-bottom: 2px solid var(--border); gap: 2px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  nav { position: relative; }
}
