/* Globale Einstellungen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

:root {
  --primary-color: #e67e22; /* Orange */
  --primary-blue: #007bff; /* Blau */
  --secondary-color: #2c3e50; /* Dunkelgrau */
  --light-bg: #f4f4f4;
  --white: #ffffff;
  --text-color: #333;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Layout Klassen */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: var(--light-bg);
}

.mb-20 {
  margin-bottom: 20px;
}

/* --- HEADER & NAVIGATION (ANGEPASST: WEISS) --- */
header {
  background-color: var(--white); /* ÄNDERUNG: Hintergrund Weiß */
  color: var(--secondary-color); /* ÄNDERUNG: Textfarbe Dunkel */
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo a {
  display: block;
  color: var(
    --secondary-color
  ); /* Sicherstellen, dass Text-Logos dunkel sind */
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--secondary-color); /* ÄNDERUNG: Links dunkelgrau */
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.highlight-link {
  border: 1px solid var(--primary-color);
  padding: 8px 15px;
  border-radius: 4px;
  background-color: rgba(230, 126, 34, 0.1);
}

/* Burger Menu Icon */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color); /* ÄNDERUNG: Striche dunkelgrau */
  margin: 5px;
  transition: all 0.3s ease;
}

/* --- HERO SECTIONS --- */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
    url('public/hero_bg.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.school-hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 50, 100, 0.7), rgba(0, 50, 100, 0.7)),
    url('public/school-people.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.hero-content h2,
.school-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  transition: background 0.3s ease;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.btn-primary:hover {
  background-color: #d35400;
}

.whatsapp-btn {
  background-color: #25d366;
}
.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* --- GRID & CARDS --- */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.text-block,
.card {
  flex: 1;
  min-width: 300px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.dept-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.service-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* --- TIMELINE --- */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.timeline-item {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid var(--primary-blue);
}

.step-number {
  background: var(--primary-blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  font-weight: bold;
}

/* --- FOOTER & STICKY BTN --- */
footer {
  background-color: #222;
  color: #ccc;
  padding: 20px 0;
  font-size: 0.9rem;
  margin-top: auto;
}

.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2000;
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: fixed;
    right: 0px;
    top: 70px;
    height: calc(100vh - 70px);
    background-color: var(--white); /* ÄNDERUNG: Mobile Hintergrund Weiß */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 50px;
  }

  .nav-links li {
    margin-bottom: 30px;
    opacity: 0;
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-content h2,
  .school-hero h1 {
    font-size: 1.8rem;
  }
}

/* --- FOOTER STYLES --- */
footer {
  background-color: #222;
  color: #f4f4f4;
  padding: 50px 0 20px 0;
  font-size: 0.95rem;
  margin-top: auto;
  border-top: 5px solid var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-column h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Links im Footer */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Kontakt Info */
.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.contact-row a {
  color: #fff;
  font-weight: bold;
}

/* KARTEN PLATZHALTER (Design Fix) */
.map-placeholder {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('public/hero_bg.jpeg'); /* Oder ein grauer Hintergrund: #333 */
  background-size: cover;
  background-position: center;
  height: 180px;
  border-radius: 8px;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-content i {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.map-content p {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

.route-btn {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.route-btn:hover {
  background-color: #d35400;
  color: #fff;
}

/* Copyright Zeile */
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}


<---Section 2 Start Page--->

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Karten Design */
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Dezenter Schatten */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

/* Hover Effekt für Motivation/Interaktion */
.service-card:hover {
  transform: translateY(-5px); /* Schwebt nach oben */
  box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Stärkerer Schatten */
  border-color: var(--primary-color);
}

.service-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}