:root {
  --orange: #fc9900;
  --weiß: #ffffff;
  --grau: #f7f9fb;
}

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background-color: var(--weiß);
  color: #222;
  line-height: 1.6;
}

/* HERO */
.hero {
  margin-top: 100px;
  background: linear-gradient(135deg, #014672, #036ea5);
  color: var(--weiß);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero-overlay {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.sht-hero__line {
  width: 0;
  height: 4px;
  background-color: #ff8200;
  margin: 20px auto; /* zentriert horizontal */
  animation: expandLine 1.7s ease-out forwards;
  display: block;
}

@keyframes expandLine {
  to {
    width: 400px;
  }
}

.hero p {
  font-size: 1.2rem;
}

/* CONTENT */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* INTRO */
.section-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.intro-text {
  flex: 1 1 50%;
}

.intro-text h2 {
  color: #014672;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.intro-img {
  flex: 1 1 40%;
}

.intro-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
/* ===================== */
/* ====== DEKO: HEXAGONS & LINIE ====== */
/* ===================== */

.sht-hero__hexagon {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.075);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  z-index: 3;
}

.sht-hero__hexagon--small {
  width: 21.875rem;
  height: 21.875rem;
  bottom: -18.6rem;
  right: -25rem;
}

.sht-hero__hexagon--small2 {
  width: 21.875rem;
  height: 21.875rem;
  top: -17rem;
  left: -25rem;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -8px) rotate(1deg);
  }

  50% {
    transform: translate(-10px, -4px) rotate(-1deg);
  }

  75% {
    transform: translate(8px, 6px) rotate(0.5deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.sht-hero__hexagon--small {
  animation: floatAround 12s ease-in-out infinite;
}

.sht-hero__hexagon--small2 {
  animation: floatAround 14s ease-in-out infinite;
  animation-delay: 1.5s;
}
@media (max-width: 64rem) {
  .sht-hero__hexagon--small,
  .sht-hero__hexagon--small2 {
    display: none;
  }
}

/* KONTAKT */

.section-contact {
  background-color: var(--weiß); /* Weißer Hintergrund */
  padding: 2rem 1.5rem; /* Weniger Padding */
  border: 1px solid #e0e0e0; /* Dezenter Rahmen */
  margin-bottom: 3rem;
  border-radius: 8px; /* Weniger Rundung */
}

.section-contact h2 {
  color: #014672;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-align: center; /* Optional mittig */
}

.contact-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* Weniger Abstand */
  margin-bottom: 1rem;
}

.contact-card {
  background-color: var(--weiß);
  padding: 1rem 1.2rem; /* Weniger Innenabstand */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); /* Sehr dezent */
  flex: 1 1 280px;
}

.kontaktlink {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.kontaktlink a {
  color: #014672;
  font-weight: 600;
  text-decoration: none;
}

.kontaktlink a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.reparatur-uebersicht {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reparatur-uebersicht h2 {
  text-align: center;
  font-size: 2rem;
  color: #014672;
  margin-bottom: 2rem;
}

.reparaturgruppe {
  margin-bottom: 2.5rem;
}

.reparaturgruppe h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #014672;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.4rem;
}

ul.mehrspaltig {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  column-gap: 2rem;
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
}

ul.mehrspaltig li {
  break-inside: avoid;
  margin-bottom: 0.3em;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  ul.mehrspaltig {
    columns: 2;
  }
}

@media (max-width: 600px) {
  ul.mehrspaltig {
    columns: 1;
  }
}
.contact-card a {
  color: #014672;
  text-decoration: none;
}
.contact-card a:hover {
  color: #fc9900;
  text-decoration: underline;
}
/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 {
  transition-delay: 0.2s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.4s;
}

.fade-in-up.delay-3 {
  transition-delay: 0.6s;
}

.fade-in-up.delay-4 {
  transition-delay: 0.8s;
}

.fade-in-up.delay-5 {
  transition-delay: 1s;
}

.fade-in-up.delay-6 {
  transition-delay: 1.2s;
}
