/* css/style.css */

/* Grundlegende Styles für den Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}
/* in deiner CSS */
.sr-only {
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  border:0!important;
  white-space:nowrap!important;
}

/* Header (Banner-Bereich) */
.header{
  width: 100%;
  height: 400px;
  position: relative;

  /* Bild explizit, ohne shorthand */
  background-image: url('/img/banner-placeholder.jpg') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  background-color: transparent !important;
color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}


.header-content {
    text-align: center;
    padding: 60px;
    width: 60%;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0px; /* Platz für die Navbar */
}

.container {
    width: 100%;
}

.header h1 {
    margin: 0;
    font-size: 3em;
}

.header p {
    font-size: 1.2em;
}

/* Navigationsleiste (Desktop-Ansicht) */
.navbar {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    display: flex;
    /* justify-content: space-between; */ /* <-- Richtig: Auskommentiert lassen! */
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; /* <-- Wichtig: Stelle sicher, dass "right: 0;" hier steht, um den Streifen zu fixen */
    z-index: 10;
}

.navbar .logo {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: auto; /* <-- DIESE ZEILE HINZUFÜGEN! Schiebt das Logo nach links und den Rest nach rechts */
}

.navbar .nav-links {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* <-- DIESE ZEILE KORRIGIEREN! Von 'margin: 0;' zu 'margin: 0 auto;' */
    display: flex; /* **Standard: Links nebeneinander auf Desktop** */
    /* justify-content: center; */ /* <-- DIESE ZEILE ENTFERNEN oder auskommentieren! */
}

.navbar .nav-links li {
    margin: 0 20px;
}
.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #016ff5;
}

/* **Burger-Menü-Icon (Standardmäßig auf größeren Bildschirmen versteckt)** */
.burger-menu {
    display: none; /* **Wichtig: Auf Desktop versteckt** */
    cursor: pointer;
    padding: 10px;
    z-index: 20;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Hauptinhaltsbereich */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.section-box {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.section-box h2 {
    color: #0056b3;
    margin-top: 0;
    font-size: 1.8em;
}

.section-box p {
    font-size: 1em;
    line-height: 1.6;
}


.section-box img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    max-width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.service-area{
  max-width:1200px;
  margin:40px auto 60px;
  padding:24px 24px 18px;
  border:1px solid #e9edf3;
  border-radius:14px;
  background:
    radial-gradient(1200px 1200px at 0% 0%, rgba(0,0,0,.02), transparent 60%),
    linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow:0 6px 20px rgba(0,0,0,.05);
}

.service-area__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

.service-area__icon{
  width:22px; height:22px;
  fill:#2d6cdf; /* dezentes Blau */
  opacity:.9;
}

.service-area__title{
  font-weight:700;
  font-size:1.2rem;
  letter-spacing:.2px;
}

.service-area__intro{
  margin:.25rem 0 1rem;
  opacity:.9;
}

.service-area__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0; margin:0;
}

.service-area__badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #e5e9f2;
  background:#f7f9ff;
  font-weight:600;
  font-size:.95rem;
  line-height:1;
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.service-area__badge:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,.06);
  background:#f0f5ff;
}

/* Mobile Feinschliff */
@media (max-width: 640px){
  .service-area{ padding:20px 16px; }
  .service-area__title{ font-size:1.1rem; }
  .service-area__badge{ font-size:.9rem; padding:7px 10px; }
}
/* zentriert Head (Icon + Titel), Intro-Text und Badges */
.service-area { text-align: center; }
.service-area__head { justify-content: center; }
.service-area__intro { max-width: 60ch; margin: .25rem auto 1rem; }
.service-area__badges { justify-content: center; }
