/* Grundstil */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  margin: 0;
  padding: 0;
}

/* Bild soll full-width ohne Rand sein */
.hero-image {
  width: 100vw;
  margin: 0;
  padding: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
@media (min-width: 992px) {
  .hero-image {
    max-height: 600px;
    overflow: hidden;
  }

  .hero-image img {
    height: auto;
    max-height: 600px;
    object-position: middle center; /* Alternativ: center center, wenn besser aussieht */
  }
}

/* Hero Bild Index */
.hero-image2 {
  width: 100vw;
  margin: 0;
  padding: 0;
}

.hero-image2 img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
@media (min-width: 992px) {
  .hero-image2 {
    max-height: 600px;
    overflow: hidden;
  }

  .hero-image2 img {
    height: auto;
    max-height: 600px;
    object-position: center center; /* Alternativ: center center, wenn besser aussieht */
  }
}


/* Inhalt unter dem Bild */
.hero-content {
  background-color: #fafafa;
  color: #111;
  padding: 2rem;
  text-align: center;
}

/* Überschrift und Subline */
.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-content .highlight-red {
  color: #cc4400; /* Orange wie Info-Boxen vorher */
}

.subline {
  font-size: 1.1rem;
  color: #333;
}

/* Buttons */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background-color: #000;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 260px;
  text-align: center;
}

.hero-btn:hover {
  background-color: #333;
}

/* Öffnungszeiten & Anfahrt Info-Blöcke */
.hero-text-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-text-info-box {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
  color: #000;
  background: transparent;
  width: 100%;
  max-width: 300px;
}

.hero-text-info-box p {
  margin: 0.2rem 0;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .subline {
    font-size: 1rem;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.4rem;
  }
}

/* Desktop-Fixes */
@media (min-width: 768px) {
  /* Bildhöhe auf Desktop reduzieren */
  .hero-image img {
    max-height: 480px;
    object-fit: cover;
  }

  /* Buttons horizontal nebeneinander und gleich breit */
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-btn {
    max-width: none;
    width: 260px;
  }

  /* Info-Boxen nebeneinander */
  .hero-text-info-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .hero-text-info-box {
    width: 260px;
  }
}


/* Trust Section - dark style */
.trust {
  background-color: #222;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.trust-content .highlight-red {
  color: #cc4400; /* Orange wie Info-Boxen vorher */
}

.trust h2 {
  color: #fff !important;
}

.trust-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #cc4400;
}

.trust-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-box {
  background-color: #cc4400; /* kräftiges orange */
  padding: 1.5rem;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
}

.trust-box:hover {
  transform: translateY(-5px);
}

.trust-box h3 {
  font-size: 2rem;
  margin: 0.2rem 0;
  color: #fff;
}

.trust-box p {
  font-size: 0.95rem;
  color: #eee;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}



/* Leistungsübersicht */
.leistungen {
  padding: 3rem 2rem;
  background-color: #fafafa;
  text-align: center;
}


.leistungen h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.leistung {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.leistung img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.leistung h3 {
  margin: 1rem;
  font-size: 1.3rem;
  color: #111;
}

.leistung p {
  margin: 0 1rem 1rem 1rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.btn-leistung {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background-color: #cc4400; /* kräftiges Rot */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-leistung:hover {
  background-color: #a30000; /* etwas heller beim Hover */
}

/* FAQ Section (dunkel + reduziert) */
.faq-section {
  background-color: #222;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.faq-subline {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #ccc;
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 0.2rem;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  margin-top: 0.5rem;
}
.faq-cta {
  margin-top: 3rem;
  text-align: center;
}

.faq-cta-subline {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.7rem;
}

.faq-cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 0.3rem;
}

.faq-cta-button:hover {
  background-color: #333;
}


/* Responsive Design */
@media (max-width: 600px) {
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-subline {
    font-size: 0.95rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* Compare Section */
.compare {
  background-color: #fafafa;
  color: #111;
  padding: 3rem 2rem;
  text-align: center;
}

.compare h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

.compare-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  display: table;
  table-layout: fixed;
}

.compare-row {
  display: table-row;
}

.compare-row.header {
  background-color: #fafafa;
  font-weight: bold;
  color: #111;
}

.compare-row > .col {
  display: table-cell;
  padding: 1rem;
  border-bottom: 1px solid #aaa;
  vertical-align: middle;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #111;
}

/* Abweichende Textausrichtung in Spalte 1 */
.compare-row .col-1 {
  text-align: left;
}

/* Farbliche Hervorhebung Spalte 2 */
.compare-row > .highlight {
  background-color: #cc4400;
  color: #fff;
  font-weight: bold;
}

/* Abgerundete Ecken */
.compare-row.header .highlight {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.compare-row:last-child .highlight {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Symbole */
.check {
  color: #fff; /* weiß auf orange */
  font-size: 1.5rem;
}

.cross {
  color: #111;
  font-size: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .compare-table {
    display: table;
    table-layout: fixed;
  }

  .compare-row {
    display: table-row;
  }

  .compare-row > .col {
    padding: 0.8rem;
    font-size: 0.95rem;
    word-break: break-word;
  }

  .compare-row.header {
    display: table-row;
  }

  .compare-row .col-1 {
    text-align: left;
  }

  .compare-row .col-2,
  .compare-row .col-3 {
    text-align: center;
  }
}

/* Kontaktformular */
.kontakt {
  background-color: #222;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.kontakt h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.kontakt p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #eee;
}

.kontakt-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #888;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

/* Checkbox-Opt-in Styling */
.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2rem;
  flex-wrap: wrap; /* Ermöglicht Umbruch auf kleineren Geräten */
  text-align: left;
  justify-content: flex-start;
}

.form-group.checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-group.checkbox label {
  flex: 1 1 90%;
  margin: 0;
  line-height: 1.4;
  color: #fff;
}

.form-group.checkbox a {
  color: #fff;
  text-decoration: underline;
  word-break: break-word;
}

/* Absende-Button */
.kontakt .btn {
  background-color: #000;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.kontakt .btn:hover {
  background-color: #444;
}

.kontakt .btn::before {
  content: "✉️ ";
}

/* Anfahrt und Öffnungszeiten */
.anfahrt { 
  background-color: #fafafa; /* mint/blau */
  padding: 3rem 0;
  color: #111; /* Grundfarbe der Section */
}

.anfahrt-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.anfahrt-info {
  flex: 1;
  font-size: 0.95rem;
  color: #111;
}

.anfahrt-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.anfahrt-block {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #111;
}

.anfahrt-map {
  flex: 1;
}

/* Optional: Google Maps Rahmen passend zur hellen Umgebung */
.anfahrt-map iframe {
  border: 1px solid #999;
}

@media (min-width: 768px) {
  .anfahrt-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .anfahrt-map iframe {
    height: 300px;
  }
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: red;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
}

.footer-info {
  color: white;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.footer-subline {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
  margin-bottom: 0.6rem;
  color: #ccc;
}


/* Navigationsleiste */
.navbar {
  background-color: #111;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.menu-icon {
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  position: absolute;
  left: 0.5rem;
}


/* Logo-Bild Standardgröße */
.logo img {
  height: 65px;
  transition: height 0.3s ease;
}

/* Wenn Navbar verkleinert wird */
.navbar.shrink .logo img {
  height: 50px;
}


.navbar {
  transition: padding 0.3s ease;
}

.navbar.shrink .menu-icon {
  font-size: 1.7rem;
}



/* Off-Canvas Menü */
.side-nav {
  height: 100%;
  width: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: width 0.3s ease;
  padding: 2rem 1.5rem;
  z-index: 1100;
  flex-direction: column;
  justify-content: flex-start;
}

.side-nav.open {
  display: flex;
  width: 30vw; /* 30% der Bildschirmbreite */
}

@media (max-width: 768px) {
  .side-nav.open {
    width: 40vw; /* auch auf Mobilgeräten nur 30% */
  }

  .side-nav a {
    font-size: 0.9rem; /* optional: Schrift kleiner auf Mobile */
  }
}

.side-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
  width: 100%;
}

.side-nav ul li {
  border-bottom: 1px solid #444;
  padding: 0.8rem 0;
}

.side-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
}

.side-nav ul li a:hover {
  color: #cc4400;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
  z-index: 1090;
}

.overlay.show {
  display: block;
}

 /* Trust Extras*/
.trust-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.footer-block {
  width: 100%;
  max-width: 300px;
  text-align: left;
}

.footer-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
}

.footer-toggle .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer-block.open .footer-toggle .arrow {
  transform: rotate(180deg);
}

.footer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.3rem;
}

.footer-block.open .footer-content {
  max-height: 500px; /* ausreichend für Inhalt */
}

.footer-content a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-content a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  padding: 0.5rem 0 0.1rem; /* Weniger Abstand oben und unten */
  background-color: #111;
}

/* Mobilanpassung */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block {
    max-width: 100%;
  }

  .footer-toggle {
    font-size: 1rem;
  }

  .footer-content a {
    font-size: 0.9rem;
  }
}

/* Cookie Banner*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  z-index: 2000;
}

.cookie-banner p {
  margin: 0 0 0.5rem 0;
}

.cookie-banner a {
  color: #cc4400;
  text-decoration: underline;
}

.cookie-buttons button {
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  background: #cc4400;
  color: #fff;
  border: none;
  cursor: pointer;
}

.cookie-buttons button:nth-child(2) {
  background: #555;
}

/*FAQ-Leistungen*/
.faq-reparatur {
  background-color: #fafafa;
  padding: 3rem 1rem;
  color: #111;
}

.faq-reparatur-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.faq-reparatur h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-reparatur .faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-reparatur .faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
}

.faq-reparatur .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  margin-top: 0.5rem;
  color: #333;
}

.faq-reparatur .faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-reparatur .arrow {
  transition: transform 0.3s ease;
}

.faq-reparatur .faq-item.open .arrow {
  transform: rotate(180deg);
}

/*Leistungen-Weitere-Links*/
.orange-link {
  color: #cc4400;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.orange-link:hover {
  color: #ff661a;
  text-decoration: underline;
}




