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

/* ========= Header & Footer ========= */
header, footer {
  background: linear-gradient(90deg, #ffb300, #ff9800);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}

header {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

footer {
  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;
}

/* ========= 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;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.logo span {
  color: #fff176; /* sonniges Gelb für Namen */
}

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

nav ul li {
  margin: 0;
}

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

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

/* Mobile Ansicht */
@media (max-width: 600px) {
  .header-container {
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
