body {
  margin: 0;
  box-sizing: content-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.Headercontainer {
  width: 100vw;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 107, 26, 1); /* Orange mit Transparenz */
  gap: 20px;
  position: sticky;   /* sticky machen */
  top: 0;             /* am oberen Bildschirmrand */
  z-index: 1000;      /* bleibt über anderen Elementen */
  backdrop-filter: blur(6px); /* leichter Blur-Effekt für modernen Look */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* dezenter Schatten */
}

.Logo {
  height: 50px;
  margin-left: 100px;
}

.Menu-Container {
    display: flex;
    align-items: center;   /* sorgt dafür, dass alles mittig ausgerichtet bleibt */
    gap: 45px;
    margin: 0 auto;
}

.Menu-item {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3rem;
}

.Menu-item:hover {
  color: #333333;
  transform: scale(1.05);
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Service-Button wie die anderen Menu-Items */
.dropbtn {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 12px;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ff6b1a;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  font-size: 1.3rem;
}

/* Links im Dropdown */
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: white;
  text-decoration: none;
  font-weight: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover für Dropdown Links */
.dropdown-content a:hover {
  background: #e65a00;
}

/* Dropdown sichtbar beim Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hover Effekt wie bei deinen normalen Menu-Items */
.dropbtn:hover {
  color: #333333;
  transform: scale(1.05);
}

/* Optional: rechts im Header ausrichten */
.nav-cta { margin-left: auto; /* falls Container Flex ist */ }

/* Transparenter CTA ohne Farbakzent */
.btn-call{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.55rem .95rem; border-radius:12px; text-decoration:none;
  color:#fff;                                 /* Text weiß */
  background:rgba(255,255,255,.16);           /* halbtransparent */
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(4px);
  transition:background .2s ease, transform .15s ease;
  margin-left: auto;
  white-space: nowrap;                         /* kein Umbruch */
  max-width: 40vw;                             /* ragt nicht aus der Navbar */
  font-size: clamp(.9rem, 1.4vw, 1rem);        /* skaliert leicht mit */
}

.btn-call:hover{ background:rgba(255,255,255,.26); transform:translateY(-1px); }
.btn-call:focus-visible{ outline:2px solid #fff; outline-offset:2px; }

/* Stufenweise kompakter */
@media (max-width: 1024px){
  .btn-call{ padding:.5rem .85rem; }
}
@media (max-width: 768px){
  .btn-call{ padding:.45rem .75rem; font-size:.9rem; max-width: 36vw; }
}

/* Smartphone: Button ausblenden */
@media (max-width: 600px){
  .btn-call{ display:none; }
}

.site-footer{
  background:#1f2937; /* slate-800 */
  color:#e5e7eb;      /* slate-200 */
  padding:48px 16px 20px;
}
.footer-inner{
  max-width:1200px; margin:0 auto;
  display:grid; gap:24px;
  grid-template-columns: repeat(3, minmax(220px,1fr));
  align-items:start;
}
.site-footer a{ color:#e5e7eb; text-decoration:none; }
.site-footer a:hover{ color:#ff6b1a; }

.brand img{ height:40px; display:block; }
.tagline{ margin:10px 0 16px; color:#cbd5e1; }

.socials{ display:flex; gap:10px; }
.soc{
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  background:#111827; border:1px solid #374151; border-radius:10px; transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.soc:hover{ transform:scale(1.08); background:#0b1220; border-color:#ff6b1a; }
.soc svg{ width:18px; height:18px; fill:#e5e7eb; }

.f-col h3{ margin:0 0 10px; font-size:1.05rem; color:#fff; }
.f-links{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.f-links a{ color:#cbd5e1; }
.f-links a:hover{ color:#ff6b1a; }

.addr{ font-style:normal; color:#cbd5e1; margin:0 0 6px; }
.contact a{ display:inline-block; margin:0 0 2px; }
.hours{ color:#cbd5e1; margin:8px 0 10px; }

.quick{ display:flex; flex-wrap:wrap; gap:10px; }
.quick a{
  padding:.4rem .7rem; border:1px solid #374151; border-radius:10px;
  background:#111827; font-weight:600; font-size:.95rem;
}
.quick a:hover{ border-color:#ff6b1a; background:#0b1220; }

.footer-bottom{
  max-width:1200px; margin:24px auto 0; padding-top:16px;
  border-top:1px solid #374151; text-align:center; color:#9ca3af;
}

/* Responsiv */
@media (max-width: 900px){
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px){
  .footer-inner{ grid-template-columns:1fr; text-align:center; }
  .socials, .quick{ justify-content:center; }
}

/* Impressum – Layout */
.ImpressumSection{
  padding:48px 16px;
  background:#ffffff;
}
.impressum-container{
  max-width:1100px;
  margin:0 auto;
}
.impressum-header h1{
  margin:0;
  font-size:clamp(1.8rem,3.2vw,2.4rem);
  color:#ff6b1a;
  font-weight:800;
}
.impressum-sub{
  margin:6px 0 22px;
  color:#64748b;
  font-size:.95rem;
}

/* Grid */
.impressum-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
}

/* Karten */
.imp-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:18px 20px;
  box-shadow:0 4px 14px rgba(2,6,23,.05);
}
.imp-card h2{
  margin:0 0 10px;
  font-size:clamp(1.15rem,2.2vw,1.35rem);
  color:#0f172a;
}
.imp-card p,
.imp-card li,
.imp-card address{
  color:#334155;
  line-height:1.65;
  font-size:1rem;
}
.imp-card a{
  color:#2563eb;
  text-decoration:none;
}
.imp-card a:hover{ text-decoration:underline; }

.imp-address{ font-style:normal; margin-bottom:10px; }
.imp-meta{ margin:0; padding-left:18px; }

/* Responsiv */
@media (max-width: 960px){
  .impressum-grid{ grid-template-columns:1fr; }
}

html, body { overflow-x: hidden; }

/* ========= Tablet & kleiner (≤ 768px) ========= */
@media (max-width: 768px) {
  .Headercontainer {
    height: 64px;
    gap: 12px;
  }

  .Logo {
    height: 40px;
    margin-left: 16px;          /* statt 100px auf Mobile */
  }

  .Menu-Container {
    flex-wrap: wrap;            /* bricht in die nächste Zeile */
    gap: 20px;
    margin: 0 12px;
    justify-content: center;
  }

  .Menu-item,
  .dropbtn {
    font-size: 1rem;
    padding: 6px 10px;
  }

  /* Dropdown auf Mobile „inline“ unter dem Button anzeigen – touch-freundlich */
  .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 1rem;
  }

  .bewertung-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ========= Sehr kleine Geräte (≤ 400px) ========= */
@media (max-width: 400px) {
  .Headercontainer { height: 58px; }
  .Logo { height: 32px; margin-left: 12px; }

  .Menu-item,
  .dropbtn { font-size: .95rem; }

  .bewertung-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Logo: keine fixe Linksmarge auf Mobile */
@media (max-width: 768px) {
  .Logo { margin-left: 0; height: 40px; }
}

/* Menü: Kein auto-Margin, kontrollierte Breite, sauber umbrechen */
@media (max-width: 900px) {
  .Menu-Container {
    margin: 0;                 /* entfernt zentrierenden auto-Margin */
    flex-wrap: wrap;           /* erlaubt Umbruch statt Überlappen */
    gap: 12px;
    justify-content: flex-end; /* Menu rechts neben dem Logo */
    max-width: 100%;
  }

  .Menu-item, .dropbtn {
    font-size: 1rem;
    padding: 6px 8px;
    line-height: 1.2;
    white-space: nowrap;       /* Labels bleiben einzeilig */
  }

  /* Dropdown verhält sich auf Mobile wie ein Block unter dem Trigger */
  .dropdown-content {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 4px;
    font-size: 1rem;
  }

  .bewertung-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Sehr kleine Geräte: etwas kompakter */
@media (max-width: 560px) {
  .Headercontainer { height: 60px; }
  .Logo { height: 32px; }
  .Menu-item, .dropbtn { font-size: .95rem; padding: 6px 6px; }
}









/* ===== Basis ===== */
html, body { overflow-x: hidden; }

/* Dropdown – Desktop/Tablet Standard */
.dropdown         { position: relative; }
.dropbtn          { cursor: pointer; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ff6b1a;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  z-index: 700;
}
.dropdown-content a {
  display: block;
  padding: 10px;
  margin: 0;
  text-decoration: none;
  color: #333;
  border: 0;
  border-radius: 0;
}
.dropdown-content a:hover { background: #f0f0f0; }
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content { display: block; }

/* ========= ≤ 900px ========= */
@media (max-width: 900px) {
  .Menu-Container {
    margin: 0;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }
  .Menu-item, .dropbtn {
    font-size: 1rem;
    padding: 6px 8px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* ========= ≤ 768px ========= */
@media (max-width: 768px) {
  .Headercontainer { height: 64px; gap: 12px; }
  .Logo { height: 40px; margin-left: 0; }

  .Menu-Container {
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 12px;
    justify-content: center;
  }

  .Menu-item, .dropbtn { font-size: 1rem; padding: 6px 10px; }

  .carousel-item { height: 48vh; min-height: 280px; }
  .sliderIMG { max-height: none; }
  .hero-caption { top: auto; transform: none; padding: 16px; }

  .info-container { max-width: 92vw; padding: 20px; margin: 24px auto; text-align: center; }
  .info-container h2 { font-size: 1.6rem; }
  .info-container p  { font-size: 1rem; }
  .info-text-container { padding: 0 6px; }

  .Service-container h2 { margin: 20px; font-size: 2rem; }
  .Service-card { grid-template-columns: 1fr; width: min(720px, 94vw); gap: 16px; margin-bottom: 28px; }
  .Card { padding: 12px; }
  .accordion-heading { font-size: 1rem; }

  .Partner-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .img-grid { grid-template-columns: 1fr; gap: 16px; padding: 10px; }

  .Ansprechpartner-title { font-size: 2rem; }
  .text-section p { font-size: 1.1rem; }
  .Profile-card { width: 92vw; }
  .Profile-img  { margin: 16px; }

  .bewertung-title { font-size: 2rem; }
  .t-item { min-height: auto; padding: 20px; }

  .KontaktSection { padding: 36px 14px; }
  .kontakt-grid  { grid-template-columns: 1fr; gap: 20px; }
  .form-row      { grid-template-columns: 1fr; gap: 12px; }

  .btn-primary, .btn-icon { width: 100%; }
  .site-footer { padding: 36px 16px 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ========= ≤ 600px ========= */
@media (max-width: 600px) {
  body, .Headercontainer { width: 100%; }
  .Headercontainer { height: 56px; padding: 0 10px; justify-content: space-between; gap: 12px; }
  .Logo { height: 32px; }
  .Menu-Container { margin: 0; max-width: 100%; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
  .Menu-item, .dropbtn { font-size: .95rem; padding: 6px; line-height: 1.2; }
}

/* ========= ≤ 560px ========= */
@media (max-width: 560px) {
  .Logo { height: 36px; }
  .Menu-Container { gap: 14px; }

  .SliderBTN, .info-BTN { padding: 8px 10px; font-size: .95rem; }
  .bewertung-title { font-size: 1.6rem; }

  .quick a { padding: .35rem .6rem; font-size: .9rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .socials, .quick { justify-content: center; }
}

/* ========= ≤ 480px ========= */
@media (max-width: 480px) {
  .bewertung-title { font-size: 1.5rem; }
  .t-item blockquote { font-size: .95rem; }
}

/* ========= ≤ 400px ========= */
@media (max-width: 400px) {
  .Headercontainer { height: 58px; }
  .Logo { height: 32px; margin-left: 12px; }

  .Menu-item, .dropbtn { font-size: .95rem; }

  .Service-container h2 { font-size: 1.6rem; }
  .bewertung-title     { font-size: 1.4rem; }
  .Partner-title       { font-size: 1.3rem; }

  .info-text h3 { font-size: 1rem; }
  .info-text p  { font-size: .9rem; }
}

/* ===== Testimonials ===== */
.t-slider { max-width: 92vw; margin: 0 auto; }
.t-item   { word-break: break-word; }

@media (max-width: 768px) {
  .Bewertung-container { padding: 40px 12px; }
  .bewertung-title     { font-size: 1.8rem; margin-bottom: 16px; }
  .t-item { min-height: auto; padding: 20px; }
  .t-item blockquote { font-size: 1rem; line-height: 1.55; }
  .t-stars { font-size: 18px; letter-spacing: 1px; }
  .t-dots { gap: 8px; padding: 12px 0 16px; }
}

/* ===== Mobile Dropdown (Checkbox-Toggle, ohne JS) =====
   HTML vor .dropbtn einfügen:
   <input type="checkbox" class="dd-toggle" hidden> */
@media (max-width: 768px) {
  .dropdown { position: relative; }
  .dd-toggle { position: absolute; opacity: 0; pointer-events: none; }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
    width: max-content;
    background: #ff6b1a;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    z-index: 1100;
    overflow: hidden;
  }

  .dd-toggle:checked + .dropbtn + .dropdown-content { display: block; }

  .dropdown-content a {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .dropdown-content a:last-child { border-bottom: none; }
  .dropdown-content a:hover { background: rgba(0,0,0,.1); }
}

/* ===== iPhone-Breite: Menüpunkte in einer Zeile ===== */
@media (max-width: 420px) {
  .Headercontainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 8px;
    gap: 8px;
  }
  .Logo{ height: 28px; margin: 0; flex: 0 0 auto; }
  .Menu-Container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .Menu-Container > *{ flex: 0 0 auto; }
  .Menu-item, .dropbtn{
    font-size: .9rem;
    padding: 6px 6px;
    line-height: 1;
    white-space: nowrap;
  }
}

/* Basis: Inhalte linksbündig */
.site-footer,
.footer-inner,
.footer-bottom { text-align: left; }

/* Smartphone & kleine Tablets: NICHT zentrieren */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;  /* eine Spalte */
    text-align: left;            /* statt center */
  }
  .socials,
  .quick { justify-content: flex-start; } /* statt center */
  .footer-bottom { text-align: left; }
}

@media (max-width: 560px) {
  .footer-inner { text-align: left; }
  .socials,
  .quick { justify-content: flex-start; }
}
