/* Globale Einstellungen */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f4b400;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header & Navigation */
  header {
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: inline-block;
    margin: 0 10px;
  }
  
  .nav-links li a {
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
  }
  
  /* Hero-Bereich */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 400px;
    background: #f4b400;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2em;
  }
  
  /* Services-Bereich */
  .services {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }
  
  .services h2 {
    margin-bottom: 20px;
  }
  
  .service-item {
    margin: 20px auto;
    max-width: 800px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
  }
  
  /* Buchungsbereich */
  .booking {
    padding: 40px 20px;
    background: #f9f9f9;
  }
  
  .booking h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .booking form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Über mich */
  .about {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }
  
  .about h2 {
    margin-bottom: 20px;
  }
  
  .about p {
    max-width: 800px;
    margin: 10px auto;
  }
  
  /* FAQ-Bereich */
  .faq {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .faq h2 {
    margin-bottom: 20px;
  }
  
  .faq-item {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    border-bottom: 1px solid #ccc;
  }
  
  .faq-item h3 {
    margin-top: 0;
  }
  
  /* Kontaktbereich */
  .contact {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }
  
  .contact h2 {
    margin-bottom: 20px;
  }
  
  .contact form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Formulare */
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .error-message {
    color: red;
    font-size: 0.9em;
  }
  
  /* Footer / Rechtliche Seiten */
  footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .legal-links {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
  }
  
  .legal-links li {
    display: inline;
    margin: 0 10px;
  }
  
  .legal-links li a {
    color: #fff;
    font-size: 0.9em;
  }

    /* Termin-Kalender */
  .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }

  .schedule-table th,
  .schedule-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
  }

  .schedule-table td.selected {
    background-color: #ccc;
  }

  /* Kalender-Ansicht (Wochenkalender) */
  .calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }

  .calendar-table th,
  .calendar-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
  }

  .bookable-slot {
    background-color: #fff;
  }

  .disabled-slot {
    background-color: #e0e0e0;
    color: #aaa;
  }

  .selected-slot {
    background-color: #ccc;
  }
  
  /* Navigation für den Kalender */
  .calendar-nav {
    margin-bottom: 10px;
    text-align: center;
  }

  .calendar-nav button {
    margin: 0 5px;
    padding: 5px 10px;
  }

  /* Service Cards Layout */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.service-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
}

.service-card ul li {
  margin-bottom: 5px;
  padding-left: 1.2em;
  position: relative;
}

.service-card ul li::before {
  content: "\f00c"; /* Font Awesome Check Icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
}

.service-price {
  font-size: 1.2em;
  font-weight: bold;
  color: #f4b400;
}

/* Über mich – Zwei-Spalten-Layout */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #fff;
}

.about-image {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-text {
  flex: 2;
  min-width: 280px;
  max-width: 600px;
  font-size: 1.1em;
  line-height: 1.8;
}

.about-text h2 {
  margin-top: 0;
  color: #333;
}

/* Optional: Sanfter Fade-In-Effekt beim Scrollen */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-container {
  animation: fadeIn 1s ease-out;
}

/* Kontaktbereich – Einspaltiges, zentriertes Layout */
.contact {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

/* Formular-Wrapper */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto 30px auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form-wrapper .form-group {
  margin-bottom: 15px;
}

.contact-form-wrapper label {
  display: block;
  margin-bottom: 5px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form-wrapper button {
  background: #f4b400;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form-wrapper button:hover {
  background: #e0a800;
}

/* Kontaktinfo-Bar */
.contact-info-bar {
  background: #f4b400;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-bar i {
  font-size: 1.8em;
}

.contact-info-bar p {
  margin: 0;
  font-size: 1.1em;
}

.contact-info-bar a {
  color: inherit;
  text-decoration: none;
}


.booking-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}


/* Services-Bereich */
.services {
  padding: 40px 20px;
  background: #f9f9f9; /* vorher: #fff */
  text-align: center;
}
/* Impressum-Bereich */
.impressum-section {
  padding: 40px 20px;
  background: #f9f9f9; /* leichter, neutraler Hintergrund */
}

.impressum-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.impressum-container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.impressum-container p {
  margin: 10px 0;
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}

.impressum-container a {
  color: #f4b400;
  text-decoration: none;
}

.impressum-container a:hover {
  text-decoration: underline;
}

/* Footer – angepasster, weniger dominanter Balken */
footer {
  background: #444; /* dunkelgrau statt reinem Schwarz */
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.legal-links li {
  display: inline;
  margin: 0 10px;
}

.legal-links li a {
  color: #fff;
  font-size: 0.9em;
}



.impressum-section {
  padding: 40px 20px;
  background: #f9f9f9; 
  /* Falls du einen anderen Ton willst: 
     background: #f5f5f5; oder #eee; */
}

.impressum-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.impressum-container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.impressum-container p {
  margin: 10px 0;
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}


/* -------------------------------- */
/* RESPONSIVE MEDIA QUERIES */
/* -------------------------------- */

/* 
   1) Bei Bildschirmen bis max. 768px Breite
      (typische Tablet- und Smartphone-Größe)
*/
@media (max-width: 768px) {

  /* NAVIGATION: Zeilenumbruch & zentrieren */
  .navbar {
    flex-wrap: wrap;
    padding: 10px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    display: block;
    margin: 5px 0;
  }

  /* HERO-BEREICH: Höhe & Schriftgrößen anpassen */
  .hero {
    height: auto; /* nicht fix 400px, sondern automatisch */
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2em; /* etwas kleiner für mobile */
  }

  .hero-content p {
    font-size: 1.1em; 
  }

  /* SERVICES-BEREICH: Karten untereinander statt nebeneinander */
  .service-cards {
    flex-direction: column; /* statt in einer Zeile */
    align-items: center;
  }

  .service-card {
    width: 90%; /* oder 100%, je nach Geschmack */
    margin-bottom: 20px;
  }

  /* ÜBER MICH: Bilder & Text untereinander */
  .about-container {
    flex-direction: column; /* Stack statt nebeneinander */
    align-items: center;
  }

  .about-image, .about-text {
    max-width: 100%;
  }

  /* KONTAKTFORMULAR: Breite anpassen */
  .contact-form-wrapper {
    width: 90%;
    margin: 0 auto 30px auto; 
  }
  
  /* FAQ-BEREICH: einfaches Stacken, 
     da du dort schon .faq-item etc. hast, 
     ist oft keine weitere Änderung nötig */
}

/* 
   2) Bei Bildschirmen bis max. 480px Breite
      (kleine Smartphones)
*/
@media (max-width: 480px) {
  
  /* Schrift nochmal leicht verkleinern */
  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 1em;
  }

  /* Buttons oder andere Elemente können
     nochmal angepasst werden, falls nötig */
}

/* -------------------------------------- */
/* 1) Basis-Styles für das Hamburger-Icon */
/* -------------------------------------- */
.hamburger {
  display: none;            /* Standard: ausblenden (auf Desktop) */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;                 /* etwas Abstand zwischen den 3 Linien */
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;         /* weiße Linien auf dunklem Header */
}

/* Weiche Übergänge für die Hamburger-Linien */
.hamburger span {
  transition: all 0.3s ease;
}

/* Wenn .hamburger die Klasse .active hat, formen wir die Linien zum X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* Mittlere Linie ausblenden */
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}


/* -------------------------------------- */
/* 2) Mobile-Styles via Media Query */
/* -------------------------------------- */
@media (max-width: 768px) {

  /* Hamburger-Icon sichtbar machen */
  .hamburger {
    display: flex;
  }

  /* Die normale Navigation ausblenden … */
  .nav-links {
    display: none;           /* unsichtbar auf schmalen Screens */
    flex-direction: column;  /* vertikale Liste */
    text-align: center;      /* Links mittig */
    gap: 10px;
    background: #333;        /* dunkler Hintergrund, optional */
    margin-top: 10px;        /* kleiner Abstand zum Hamburger-Icon */
    padding: 10px 0;
  }

  /* … und nur anzeigen, wenn die Klasse "show" aktiv ist */
  .nav-links.show {
    display: flex;
  }

  /* Optional: Links größer */
  .nav-links li a {
    padding: 10px 0;
    display: block;
  }

  /* Damit Logo und Hamburger-Icon in einer Zeile bleiben */
  .navbar {
    flex-wrap: wrap;  /* bricht Zeile, falls nötig */
    padding: 10px 20px;
  }
}


/* Rundere Ecken für Service-Karten und Kontaktformular */
.service-card,
.contact-form-wrapper {
  border-radius: 12px; /* kannst du auf 8px, 15px, etc. ändern */
}

/* Wenn das Menü ausgeklappt ist, können wir die unteren Ecken abrunden */
.nav-links.show {
  border-radius: 0 0 12px 12px;
}