/* ========= Grundlayout ========= */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfcf8;
  color: #333;
  line-height: 1.6;
}

/* ========= Moderner Header ========= */
header {
  background: linear-gradient(90deg, #ffb300, #ff9800);
  color: #fff;
  padding: 0.8rem 0;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo links – Navigation rechts */
}

/* Logo + Name */
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-logo {
  width: clamp(55px, 9vw, 95px); /* Automatisch responsiv */
  height: auto;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.1;
}

.brand-text span {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff176; /* Gelb */
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.25);
}

/* ========= Hamburger-Menü mobil ========= */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile */
@media (max-width: 750px) {

  .header-container {
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
    display: none;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .nav-toggle-label {
    display: block;
  }

  .nav-toggle:checked ~ nav {
    display: block; /* Menü ausklappen */
  }
}

/* ========= Footer ========= */

footer {
  background: linear-gradient(90deg, #ffb300, #ff9800);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
}

/* ========= Hauptbereich ========= */
main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #e65100; /* kräftiges Orange */
}

h2 {
  color: #f57c00; /* sonniges Orange */
  margin-top: 0;
}

/* ========= Karten-Design ========= */
section {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

section ul {
  list-style: none;
  padding: 0;
}
section ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  position: relative;
}
section ul li::before {
  content: "☀";
  position: absolute;
  left: 0;
  color: #ff9800;
  font-weight: bold;
}

/* --- zweite Ebene --- */
section ul ul {
  margin-top: 0.4rem;
}

section ul ul li {
  font-size: 0.9rem; /* kleinere Schrift */
  padding-left: 1.3rem; /* etwas enger */
}

section ul ul li::before {
  content: "•";      /* anderes Symbol */
  color: #ffa726;    /* etwas helleres Orange, optional */
  font-weight: normal;
}

/* ========= Call to Action ========= */
.cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #fff8e1;
  border: 2px solid #ffe082;
  border-radius: 12px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e65100;
}

.button {
  display: inline-block;
  background-color: #ff9800;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.button:hover {
  background-color: #e65100;
}

/* ========= Grid für Leistungsseite ========= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========= Header mit Navigation ========= */
.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
