/* ============================================
   GLOBALE EINSTELLUNGEN
   Hier kannst du Farben und Schriften ändern
   ============================================ */

   :root {
    --orange: #FF6600;
    --orange-hell: #FF8C00;
    --schwarz: #1A1A1A;
    --weiss: #FFFFFF;
    --grau: #333333;
    --hintergrund: #F5F5F5;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--grau);
    background-color: var(--hintergrund);
  }
  
  /* ============================================
     NAVIGATION
     ============================================ */
  
  nav {
    background-color: var(--schwarz);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-logos {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  /* ============================================
     LOGO GRÖSSE IN NAVIGATION
     Hier kannst du die Logogroesse anpassen
     ============================================ */
  
  .nav-logos img {
    height: 45px;
    width: auto;
    object-fit: contain;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    color: var(--weiss);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--orange);
  }
  
  /* ============================================
     HERO BEREICH
     ============================================ */
  
  .hero {
    position: relative;
    color: var(--weiss);
    text-align: center;
    padding: 150px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
  }
  
  .hero h1 {
    position: relative;
    z-index: 2;
    font-size: 52px;
    color: var(--weiss);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  }
  
  .hero p {
    position: relative;
    z-index: 2;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }
  
  .hero .btn-orange {
    position: relative;
    z-index: 2;
  }
  
  /* ============================================
     BUTTONS
     ============================================ */
  
  .btn-orange {
    background-color: var(--orange);
    color: var(--weiss);
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
  }
  
  .btn-orange:hover {
    background-color: var(--orange-hell);
  }
  
  /* ============================================
     SEKTIONEN
     ============================================ */
  
  .sektion {
    padding: 70px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .sektion h2 {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
  }
  
  .sektion p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  /* ============================================
     KARTEN
     ============================================ */
  
  .karten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .karte {
    background-color: var(--weiss);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--orange);
  }
  
  .karte h3 {
    font-size: 22px;
    color: var(--schwarz);
    margin-bottom: 15px;
  }
  
  .karte p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  /* ============================================
     ANGEBOTS-KARTEN MIT BILD
     ============================================ */
  
  .karte-bild {
    background-color: var(--weiss);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--orange);
  }
  
  .karte-bild img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  
  .karte-bild-inhalt {
    padding: 25px;
  }
  
  .karte-bild-inhalt h3 {
    font-size: 22px;
    color: var(--schwarz);
    margin-bottom: 12px;
  }
  
  .karte-bild-inhalt p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  
  footer {
    background-color: var(--schwarz);
    color: var(--weiss);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  footer p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  footer a {
    color: var(--orange);
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* ============================================
     RESPONSIVE (Mobil-Ansicht)
     ============================================ */
  
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      gap: 15px;
      padding: 15px 20px;
    }
  
    .nav-links {
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero h1 {
      font-size: 32px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .sektion {
      padding: 40px 20px;
    }
  
    .sektion h2 {
      font-size: 26px;
    }
    .werte-block {
      background-color: #1A1A1A !important;
      color: var(--weiss) !important;
      padding: 70px 40px;
      max-width: 100%;
    }
    
    .werte-block h2 {
      color: var(--orange) !important;
    }
    
    .werte-block p {
      color: var(--weiss) !important;
    }
    
    .werte-block .karte {
      background-color: #262626 !important;
      border-top: 4px solid var(--orange) !important;
    }
    
    .werte-block .karte h3 {
      color: var(--orange) !important;
    }
    
    .werte-block .karte p {
      color: var(--weiss) !important;
    }
    /* Zentrierung & gleichmäßige Kartenbreite */
.karten-grid{
  justify-content: center;
}

.karte{
  width: 100%;
}
.karten-grid{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/* Überschriften in Kontakt zentrieren */
#klaerwerk > h2,
#choice > h2{
  text-align: center;
}

/* Grid selbst zentrieren */
#klaerwerk .karten-grid,
#choice .karten-grid{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.page-title-band{
  position: relative;
  overflow: hidden;
}

.page-title-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-title-inner h1,
.page-title-inner h2{
  flex: 1;
  text-align: center;
}

.header-logo{
  height: 60px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px){
  .page-title-inner{
    flex-direction: row;
    gap: 12px;
  }
  .header-logo{
    height: 40px;
  }
  .page-title-inner h1,
  .page-title-inner h2{
    font-size: 28px;
  }
}
.page-title-inner{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
}

.header-logo{
  flex: 0 0 auto !important;
  height: 52px !important;
  width: auto !important;
}

.page-title-inner h1{
  flex: 1 1 auto !important;
  text-align: center !important;
}
/* ==== ZWINGEND: Logos in Seitenüberschrift nebeneinander ==== */
.page-title-band .page-title-inner{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.page-title-band .header-logo{
  flex: 0 0 auto !important;
  display: block !important;
}

.page-title-band .page-title-inner h1{
  flex: 1 1 auto !important;
  text-align: center !important;
}

@media (max-width: 768px){
  .page-title-band .page-title-inner{
    flex-direction: row !important;
  }
  .page-title-band .header-logo{
    height: 40px !important;
  }
}
.page-title-band .page-title-inner{
  min-height: 70px;
}
.hero.page-title-band > .page-title-inner{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}
.hero.page-title-band > .page-title-inner .header-logo{
  display: block !important;
  flex: 0 0 auto !important;
}
.hero.page-title-band > .page-title-inner h1{
  flex: 1 1 auto !important;
  text-align: center !important;
}
/* 3-Bild Hintergrundstreifen im Hero */
.hero.page-title-band{
  position: relative;
  overflow: hidden;
}

.hero-bg-strip{
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}

.hero-bg-cell{
  flex: 1 1 33.33%;
  background-size: cover;
  background-position: center;
}

.hero::before{
  /* etwas Abdunkelung wie auf Startseite (nur damit Text lesbar bleibt) */
  background-color: rgba(0,0,0,0.15) !important;
  z-index: 1;
}

/* damit Text klar über dem Hintergrund liegt */
.hero > h1,
.hero > p{
  z-index: 2;
  position: relative;
}