/* ============================= */
/* Farbvariablen */
/* ============================= */
:root {
  --farbe-primaer: #0f766e;
  --farbe-primaer-dunkel: #134e4a;
  --farbe-akzent: #14b8a6;
  --farbe-whatsapp: #25d366;

  --farbe-hintergrund: #f4f8f7;
  --farbe-flaeche: #ffffff;
  --farbe-text: #172321;
  --farbe-text-hell: #64748b;
  --farbe-linie: #d9e6e3;

  --schatten-weich: 0 18px 45px rgba(15, 118, 110, 0.14);
  --radius-klein: 10px;
  --radius-mittel: 18px;
  --radius-gross: 28px;
}

/* ============================= */
/* Grundeinstellungen */
/* ============================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--farbe-text);
  background: var(--farbe-hintergrund);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1150px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============================= */
/* Kopfbereich */
/* ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--farbe-linie);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--farbe-primaer-dunkel);
}

.logo-icon img {
  width: 250px;
  object-fit: cover;
}

.website-title  {
  font-size: 1.4rem;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--farbe-text-hell);
  font-weight: 700;
}

.nav a:hover {
  color: var(--farbe-primaer);
}

.header-call {
  background: var(--farbe-primaer);
  color: white;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
}

/* ============================= */
/* Hero-Bereich */
/* ============================= */
.hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.22), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f4f8f7 48%, #ddf4f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 54px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-block;
  color: var(--farbe-primaer-dunkel);
  background: rgba(20, 184, 166, 0.14);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  margin: 24px 0;
  font-size: clamp(2.0rem, 6vw, 4.0rem);
  color: var(--farbe-primaer-dunkel);
}

h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--farbe-primaer-dunkel);
  text-align: center;
  border-bottom: 1px solid var(--farbe-primaer-dunkel);
  padding-bottom: 12px;
}

.hero-text {
  max-width: 640px;
  font-size: 1.2rem;
  color: var(--farbe-text-hell);
}

/* ============================= */
/* CTA Buttons */
/* ============================= */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: var(--radius-klein);
  padding: 15px 24px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--farbe-primaer);
  color: white;
}

.btn-whatsapp {
  background: var(--farbe-whatsapp);
  color: white;
}

/* ============================= */
/* Vertrauenselemente */
/* ============================= */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.trust-row span {
  background: white;
  border: 1px solid var(--farbe-linie);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--farbe-text-hell);
  font-weight: 700;
}

/* ============================= */
/* Notdienst-Karte */
/* ============================= */
.emergency-card {
  background: var(--farbe-flaeche);
  border: 1px solid var(--farbe-linie);
  border-radius: var(--radius-gross);
  padding: 36px;
  box-shadow: var(--schatten-weich);
}

.status {
  display:block;
  text-align: center;
  background: var(--farbe-primaer);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin: 0 auto;
  margin-bottom: 18px;
}

.emergency-card ul {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.emergency-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--farbe-linie);
  font-weight: 700;
}

.big-phone {
  display: block;
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--farbe-primaer);
  text-align: center;
}

/* ============================= */
/* Allgemeine Sektionen */
/* ============================= */
.section {
  padding:45px 0;
}

.section-head {
  margin-bottom: 36px;
}

/* ============================= */
/* Leistungskarten */
/* ============================= */
.service-grid {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.service-card {
  background: var(--farbe-flaeche);
  border: 1px solid var(--farbe-linie);
  border-radius: var(--radius-mittel);
  padding: 28px;
  box-shadow: 0 10px 25px rgba(15, 78, 74, 0.07);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.12);
  font-size: 1.6rem;
}

.service-image {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--farbe-primaer-dunkel);
}

.service-card p {
  color: var(--farbe-text-hell);
}

/* ============================= */
/* Über-uns-Bereich */
/* ============================= */
.about-section {
  padding: 90px 0;
  background: var(--farbe-primaer-dunkel);
  color: white;
}

.about-section h2,
.about-section .eyebrow {
  color: white;
}

.about-section .eyebrow {
  background: rgba(255, 255, 255, 0.12);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.facts-box {
  display: grid;
  gap: 16px;
}

.facts-box div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-mittel);
  padding: 24px;
}

.facts-box strong {
  display: block;
  font-size: 2rem;
}

.facts-box span {
  color: var(--farbe-linie);
  text-align: center;
}

/* ============================= */
/* Einsatzgebiet */
/* ============================= */
.areas-section {
  text-align: center;
}

.areas-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--farbe-text-hell);
}

/* ============================= */
/* Kontaktbereich */
/* ============================= */
.contact-section {
  padding: 90px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.contact-info,
.contact-form {
  border: 1px solid var(--farbe-linie);
  border-radius: var(--radius-gross);
  padding: 34px;
  box-shadow: var(--schatten-weich);
}

.contact-info a {
  color: var(--farbe-primaer);
  font-weight: 800;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  margin-top: 0;
  font-size: 1.8rem;
  color: var(--farbe-primaer-dunkel);
}

.contact-form label {
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--farbe-linie);
  border-radius: var(--radius-klein);
  font: inherit;
  background: #fbfdfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(20, 184, 166, 0.35);
  border-color: var(--farbe-akzent);
}

.contact-form button {
  margin-top: 24px;
}

/* ============================= */
/* Footer */
/* ============================= */
.footer {
  background: var(--farbe-primaer-dunkel);
  color: white;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

/* ============================*/
/* Impressum */
/*=============================*/
.impressum-body {
  padding: 90px 70px;
}

.impressum-body h1 {
  max-width: 100%;
  text-align: center;
  font-size: 1.6rem;
}

.impressum-body h2 {
  text-align: left;
  font-size: 1.3rem;
}

/* ============================= */
/* Tablet-Ansicht */
/* ============================= */
@media (max-width: 950px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }
}

/* ============================= */
/* Mobile Ansicht */
/* ============================= */
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1150px);
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .logo {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 25px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .big-phone {
    font-size: 1.45rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}