body {
  margin: 0;
  width: 100vw;
  box-sizing: content-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  text-align: center;
}

.Headercontainer {
  width: 100vw;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #ff6b1a;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

.Menu-Container {
  display: flex;
  align-items: center;
  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 {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 12px;
}

.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;
}

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

.dropdown-content a:hover {
  background: #e65a00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.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; }
}



.carousel-item {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.sliderIMG {
  position: absolute;
  inset: 0;
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  filter: brightness(40%);
  z-index: 0;
}

.hero-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.SliderBTN,
.info-BTN {
  border-radius: 20px;
  border: solid 2px white;
  background-color: #ff6b1a;
  padding: 10px;
  color: white;
  font-weight: bold;
}

.SliderBTN:hover { background-color: transparent; }
.info-BTN:hover   { background-color: #334155; }

/* Hintergrund der gesamten Section */
.info-section {
  width: 100%;
  padding: 60px 20px;
  background-color: whitesmoke; /* anpassbare Hintergrundfarbe */
}

/* Card innerhalb der Section */
.info-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
  background: #fff; /* separat anpassbar */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.info-card h2 {
  color: #ff6b1a;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 16px;
}

.info-card p {
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.info-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Service-container {
  background-color: #ff6b1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.Service-container h2 {
  margin: 30px;
  font-size: 3rem;
  color: #fff;
}

.Service-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  width: min(1100px, 92vw);
  margin: 0 auto 40px;
  align-items: start;
}

.Card {
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: border-color .2s ease;
  align-self: start;
  padding: 16px;
}

.Card-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 28px;
  background: transparent;
}

.accordion-heading {
  width: 100%;
  background: transparent;
  border: solid 4px white;
  cursor: pointer;
  color: white;
  padding: .6rem 2rem .6rem 1rem;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.accordion-heading[aria-expanded="true"] .caret {
  transform: translateY(-50%) rotate(180deg);
}

.panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .9s ease;
  text-align: left;
  background: transparent;
  border: solid 4px white;
  border-top: none;            /* obere Border entfernen */
  border-radius: 0 0 12px 12px;
  padding: 0 12px;
}


.panel > p {
  margin: 12px 0;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.Card.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px #ff6b1a inset;
}

.Card button.accordion-heading {
  border-radius: 12px;
}

.Card button.accordion-heading[aria-expanded="true"] {
  border-radius: 12px 12px 0 0;
}

.Partner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 48px 20px;
}

.Partner-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  z-index: 0;
}

.Partner-title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  margin: 12px 0 24px;
  color: #fff;
}

.img-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
}

.grid-item {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  will-change: transform;
}

.grid-item:hover,
.grid-item:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  opacity: 0.96;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .grid-item { transition: none; }
}

@media (max-width: 560px) {
  .img-grid { grid-template-columns: 1fr; }
  .grid-item { aspect-ratio: 16 / 9; }
}

/*-------Ansprechpartner-------*/

.Ansprechpartner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: whitesmoke;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 40px 0 20px 0;
}

.Profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Profile-card {
  width: 40vw;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.Ansprechpartner-title {
  font-size: 3rem;
  color: #ff6b1a;
  font-weight: bold;
}

.text-section p {
  font-size: 1.5rem;
  text-align: center;
}

.Profile-img {
  width: 100%;
  margin: 25px;
  border-radius: 20px;
}

.Profile-info h2 {
  color: #ff6b1a;
}

/* Bewertung / Testimonials */

.Bewertung-container {
  position: relative;
  padding: 60px 16px;
  display: grid;
  place-items: center;
  background: url("./img/Unfallszene - Beschädigte Autos.png") center/cover no-repeat;
}

.Bewertung-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.bewertung-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.bewertung-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 40px 0;
}

.t-slider {
  width: 100%;
  position: relative;
  color: #354052;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  backdrop-filter: blur(4px);
}

.t-slider > input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.t-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .45s cubic-bezier(.2, .6, .2, 1);
}

.t-item {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 6vw, 40px);
  place-items: center;
  text-align: center;
  min-height: 180px;
}

.t-stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 0;
}

.t-item blockquote {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

#t-s1:checked ~ .t-track { transform: translateX(0%); }
#t-s2:checked ~ .t-track { transform: translateX(-100%); }
#t-s3:checked ~ .t-track { transform: translateX(-200%); }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 20px;
}

.t-dots label {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

#t-s1:checked ~ .t-dots label[for="t-s1"],
#t-s2:checked ~ .t-dots label[for="t-s2"],
#t-s3:checked ~ .t-dots label[for="t-s3"] {
  background: #354052;
  transform: scale(1.1);
}

@media (max-width: 520px) {
  .bewertung-title { font-size: 1.5rem; }
  .t-item { padding: 20px; }
}

/* Kontakt */

.KontaktSection {
  padding: 48px 16px;
  background: whitesmoke;
}

.kontakt-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, .06);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.form-card h2 {
  margin: 0 0 4px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #ff6b1a;
}

.form-card .sub {
  margin: 0 0 20px;
  color: #64748b;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.field { display: grid; gap: 6px; }

label {
  font-weight: 600;
  color: #0f172a;
}

input,
textarea {
  width: 100%;
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

input:focus,
textarea:focus {
  outline: 2px solid #ff6b1a;
  outline-offset: 2px;
  background: #fff;
}

textarea { resize: vertical; }

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: #475569;
  margin: 6px 0 16px;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.btn-primary,
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  background: #ff6b1a;
  color: #fff;
  border: none;
}

.btn-primary:hover { background: #334155; }

.btn-primary:active,
.btn-icon:active { transform: translateY(1px); }

.btn-icon {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  margin-bottom: 10px;
}

.btn-icon:hover {
  transform: scale(1.08);
  background: #f1f5f9;
}

/* Bestehende Regeln minimal erweitert */
input,
textarea,
select {
  width: 100%;
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #ff6b1a;
  outline-offset: 2px;
  background: #fff;
}

#service {
  margin-bottom: 15px;
}

/* bestehend: input, textarea … – jetzt um file erweitert */
input,
textarea,
select,
input[type="file"] {
  width: 100%;
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

input[type="file"]:focus {
  outline: 2px solid #ff6b1a;
  outline-offset: 2px;
  background: #fff;
}

/* Info-Karte mit klickbaren Icons */

.info-col { display: block; }

.info-card.single {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: 0 4px 14px rgba(2, 6, 23, .05);
  text-align: left;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.info-sep {
  border: 0;
  height: 1px;
  background: #eaeef3;
  margin: 16px 0;
}

.info-icon-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: whitesmoke;
  border: 1px solid #e2e8f0;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}

.info-icon-link:hover {
  transform: scale(1.08);
  background: #f1f5f9;
  box-shadow: 0 4px 10px rgba(2, 6, 23, .08);
}

.info-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(44%) sepia(82%) saturate(1946%) hue-rotate(350deg) brightness(96%) contrast(92%);
}

.info-text h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 1.05rem;
}

.info-text p {
  margin: 0;
  color: #334155;
  font-size: .95rem;
}

.info-row a[aria-label*="WhatsApp"] .info-icon { filter: none; }
.info-row a[aria-label*="WhatsApp"] {
  border-color: #d1fae5;
  background: #f0fdf4;
}
.info-row a[aria-label*="WhatsApp"]:hover { background: #e7f9ee; }

/* Footer */

.site-footer {
  background: #1f2937;
  color: #e5e7eb;
  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;
}

.Ansprechpartner {
  text-align: center;
}

@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; }
}

.link-daten {
  text-decoration: none;
  color: #ff6b1a;
}

.link-daten:hover { color: #334155; }

/*-------responsive for smaller screens--------*/

/* ===== 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-weight: bold;
  font-size: 20px; }

  .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;
  }
  .KontaktSection {
  text-align: start;
  }

  .site-footer {
    text-align: left;
  }
}

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

/* ≤ 560px */
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;               /* statt center */
  }
  .socials, .quick {
    justify-content: flex-start;    /* statt center */
  }
}

/* optional: nur wenn die Copyright-Zeile auch linksbündig sein soll */
@media (max-width: 600px) {
  .footer-bottom { text-align: left; }
}








/* 404 Section */
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #ff6b1a, #ff914d);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.error-wrap {
  max-width: 600px;
}

.error-404 h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.error-404 h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin: 20px 0 10px;
  color: #fff;
}

.error-404 p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f8fafc;
}

.btn-home {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #ff6b1a;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-home:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

