/* =========================================================
   Physiotherapie Schneider – Haupt-Stylesheet (neu)
   Stil: Hell, clean, mit lime-green Akzenten (#86C440)
   Schrift: Calibri
   ========================================================= */

/* ---------- Grundlayout ---------- */
body {
  font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #222;
}

p {
  color: #444;
  line-height: 1.6;
}

/* ---------- Navigation ---------- */
.navbar {
  background-color: #fff !important;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: #222 !important;
}

.navbar .btn-primary,
.btn-cta {
  background-color: #86C440;
  border-color: #86C440;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.6rem 1.25rem;
  transition: all 0.25s ease;
}
.navbar .btn-primary:hover,
.btn-cta:hover {
  background-color: #7ab72e;
  border-color: #7ab72e;
  color: #fff;
}

/* ---------- Hero / Masthead ---------- */
header.masthead {
  position: relative;
  background: url("/assets/img/bg-masthead.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 9rem 0 8rem;
  text-align: center;
}

header.masthead h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

header.masthead h3 {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

header.masthead .btn-primary {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
}

/* ---------- Leistungsbereich ---------- */
.features-icons {
  padding: 4rem 0;
}

.features-icons h3 {
  color: #222;
  margin-top: 1rem;
  font-weight: 600;
}

.features-icons p {
  color: #555;
}

.features-icons-icon {
  font-size: 3rem;
  color: #86C440;
}

/* ---------- Showcase-Bereiche ---------- */
.showcase .showcase-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.showcase .showcase-text {
  padding: 3rem;
}

.showcase h2 {
  color: #86C440;
  margin-bottom: 1rem;
}

/* ---------- Testimonials (Team) ---------- */
.testimonials {
  padding: 4rem 0;
}

.testimonials h2 {
  margin-bottom: 3rem;
  color: #222;
}

.testimonial-item h5 {
  color: #222;
  font-weight: 700;
}

.testimonial-item p {
  font-style: italic;
  color: #555;
}

.testimonial-item img {
  border: 4px solid #86C440;
}

/* ---------- Call to Action ---------- */
.call-to-action {
  background: #86C440;
  color: #fff;
  padding: 5rem 0;
}

.call-to-action h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.call-to-action .btn-primary {
  background-color: #fff;
  color: #86C440;
  border: none;
  font-weight: 700;
}
.call-to-action .btn-primary:hover {
  background-color: #f2f2f2;
}

/* ---------- Footer ---------- */
.footer {
  background-color: #f8f9fa;
  padding: 2.5rem 0;
  font-size: 0.9rem;
}

.footer a {
  color: #86C440;
  text-decoration: none;
}
.footer a:hover {
  color: #7ab72e;
  text-decoration: underline;
}

.footer .text-muted {
  color: #777 !important;
}

/* ---------- Responsives Verhalten ---------- */
@media (max-width: 992px) {
  header.masthead {
    padding: 6rem 1rem;
  }
  header.masthead h1 {
    font-size: 2rem;
  }
  header.masthead h3 {
    font-size: 1.1rem;
  }
  .showcase .showcase-text {
    padding: 2rem;
  }
}

/* =========================================
   Patch: Bilder kleiner + CTA-Button sichtbar
   ========================================= */

/* Showcase-Bilder flacher */
.showcase .showcase-img {
  min-height: 300px;          /* vorher 400px */
}
@media (max-width: 992px) {
  .showcase .showcase-img { min-height: 240px; }
}
@media (max-width: 576px) {
  .showcase .showcase-img { min-height: 180px; }
}

/* Team-Portraits etwas kleiner */
.testimonial-item img {
  width: 140px;               /* vorher durch Bootstrap img-fluid groß */
  height: 140px;
  object-fit: cover;
  border: 4px solid #86C440;  /* bleibt dein Lime-Green-Rand */
}
@media (max-width: 576px) {
  .testimonial-item img {
    width: 110px;
    height: 110px;
  }
}

/* CTA-Sektion: Button kontrastreich (weiß auf grünem Balken) */
.call-to-action .btn-cta {
  background: #ffffff;
  border: none;
  color: #86C440;
  font-weight: 800;
}
.call-to-action .btn-cta:hover,
.call-to-action .btn-cta:focus {
  background: #f2f2f2;
  color: #76B438;
  box-shadow: 0 0 0 .2rem rgba(255,255,255,.35);
}
