/* ──────────────────────────────────────────────────────────────
   RESET & GLOBAL
────────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;

  padding-top: 120px; /* for fixed header */
}



h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* ──────────────────────────────────────────────────────────────
   HEADER & SIDEBAR
────────────────────────────────────────────────────────────── */
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

.header-content {
    /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo img {
  height: 70px;
  width: auto;
}

.hamburger {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1003;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.sidebar {
  position: fixed;
  top: 0;
  width: 200px;
  right: -250px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar.active {
  right: 0;
}
.sidebar ul {
  list-style: none;
  text-align: left;
  padding: 20px;
}
.sidebar li {
  margin: 1rem 0;
}
.sidebar a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}
.sidebar a:hover {
  color: #666;
}

/* ──────────────────────────────────────────────────────────────
   GENERAL CARDS LAYOUT
────────────────────────────────────────────────────────────── */
.cards-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* top row: title, times, buttons */
.card-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.card-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
}

.card-actions {
  display: flex;
  gap: 10px;
}
.card-actions button {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 2px;
}
.card-actions .info-button {
  background-color: #f5f5f5;
  border: 1px solid #999;
}
.card-actions .info-button:hover {
  background-color: #e0e0e0;
}
.card-actions .book-button {
  background-color: #000;
  color: #fff;
  border: none;
}
.card-actions .book-button:hover {
  background-color: #333;
}

.welcome-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  box-sizing: unset;
  text-align: center;
}


.agb-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  box-sizing: unset;
  text-align: left;
}

.why-button {
  background: none;
  border: none;
  color: #c74e59;
  font-style: italic;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
/* Modal-Grundstruktur */
.modal {
  display: none; /* versteckt initial */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 1000;
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}
.modal-content p {
  margin: 0 0 1rem;
}
.modal-close {
  position: absolute;
  top: 0.5rem; right: 0.75rem;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
/* Responsiv */
@media (max-width: 600px) {
  .modal-content {
    padding: 1rem;
  }
}

 /* ───── BASISPREISE ───── */
 .basic-prices {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
}
.basic-prices h3 {
  color: #c74e59;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.basic-prices ul {
  list-style: none;
}
.basic-prices li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.basic-prices li:last-child {
  margin-bottom: 0;
}

/* ───── ZUSATZLEISTUNGEN / DESIGNS ───── */
.additional-prices {
  margin-top: 1.5rem;
  padding: 1rem;
}
.additional-prices h3 {
  color: #c74e59;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.additional-prices ul {
  list-style: none;
}
.additional-prices li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.additional-prices li:last-child {
  border-bottom: none;
}

/* ───── AUSFALLGEBÜHR ───── */
.fee {
  margin-top: 1.5rem;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
}
.fee .price {
  color: #c74e59;
}



/* hidden sliding panel */
.card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.0s ease, padding 0.0s ease;
  background-color: #fafafa;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  padding: 0 20px;
}
.card.open .card-details {
  max-height: 500px;     /* adjust if your text is longer */
  padding: 15px 20px;
}

/* special section header */
.special-header {
  font-size: 20px;
  font-weight: bold;
  color: #c74e59;
  margin: 40px 0 20px;
  text-align: center;
}


/* Footer */
.site-footer {
  margin-left: -20px;
  margin-right: -20px;
  margin-top: auto;
  align-self: stretch; 
  bottom: 0;
  left: 0;
  width: calc(100% + 40px);
  background-color: #f1f1f1;
  font-size: 0.8rem;
  padding: 1vh;
  box-shadow: 0 -1px 4px rgba(0,0,0,0.1);
  z-index: 100;
}
.footer-inner {
  display: flex;
  flex-direction: unset;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-left,
.footer-right {
  flex: 1 1 150px;
  margin: 0.25rem;
}
.footer-left p,
.footer-right p {
  margin: 0.15em 0;
  line-height: 1.3;
}
.footer-name {
  font-weight: bold;
  margin-bottom: 0.2em;
}
.footer-left a {
  color: inherit;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.3em;
}
.footer-nav a {
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.7rem;
  color: #888;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: unset;
    align-items: flex-start;
  }
  .footer-right {
    margin-top: 0.5rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0.25rem;
  }
}



/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .card-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-actions {
    margin-top: 10px;
    align-self: flex-end;
  }
}


    /* LOGO + NAME */
    .logoz {
      text-align: center;
      margin-top: 8px;
    }
    .logoz img {
      width: 32px;
      height: auto;
    }
    .logoz h1 {
      margin-top: 6px;
      font-size: 1rem;
      color: #c74e59;
      font-weight: normal;
    }

    /* AVATAR */
    .avatar {
      display: block;
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin: 20px auto;
    }

    /* CONTACT INFO */
    .contact-info {
      text-align: center;
      font-size: 0.9rem;
      line-height: 1.4;
      color: #333;
      padding: 2rem;
    }
    .contact-info .name {
      font-weight: bold;
      margin-bottom: 4px;
    }
    .contact-info .email a {
      color: #333;
      text-decoration: underline;
    }
    .contact-info .location {
      font-weight: bold;
      margin-top: 4px;

    }
    .contact-info p {
      margin: 12px 0;
      font-style: italic;
    }

    /* CARD CONTAINER */
    .profile-card {
      position: relative;
      width: 100%;
      max-width: 360px;
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* Buttons auf der Startseite unten zentriert */
.button-container {
  margin: 2rem auto;
  text-align: center;
  padding-bottom: 2rem; /* damit es nicht ganz an den Rand stößt */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
}

.btn .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}


/* 1) Generic reset for all images: */
img {
  display: block;      /* ensures block‐level layout */
  max-width: 100%;     /* never overflow its container */
  height: auto;        /* keep aspect ratio */
}

/* 2) Specific “icon” class for your SVG button: */
.icon {
  display: block;      /* or inline‐block if you need text next to it */
  width: 24px;         /* exact width you want */
  height: 24px;        /* exact height you want */
  object-fit: contain; /* scale nicely inside its box */
}


/* AGB – Allgemeine Geschäftsbedingungen */
.agb {
  max-width: 700px;
  margin: 0px auto;
  padding: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hauptüberschrift */
.agb h1 {
  font-size: 1.75rem;
  color: #c74e59;
  text-align: center;
  margin-bottom: 0.5em;
}

/* Untertitel direkt nach H1 */
.agb > p:first-of-type {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5em;
}

/* Nummerierte Liste */
.agb ol {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
}

.agb ol > li {
  counter-increment: section;
  margin-bottom: 1.5em;
  position: relative;
  padding-left: 2.5em;
}

/* Nummern-Style vor jedem Listeneintrag */
.agb ol > li::before {
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #c74e59;
}

/* Unterüberschriften in den Listeneinträgen */
.agb h2 {
  display: inline;
  font-size: 1.1rem;
  font-weight: bold;
  color: #c74e59;
}

/* Absätze */
.agb p {
  margin: 0.5em 0;
}

/* Ungeordnete Unterlisten */
.agb ul {
  margin: 0.5em 0 0.5em 1.5em;
  list-style: disc;
}

.agb ul li {
  margin-bottom: 0.5em;
}

/* Hervorhebungen */
.agb strong {
  color: #c74e59;
}


/* Datenschutzerklärung – gleiche Styles wie AGB */
.datenschutz {
  max-width: 700px;
  margin: 0px auto;
  padding: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.datenschutz h1 {
  font-size: 1.75rem;
  color: #c74e59;
  text-align: center;
  margin-bottom: 0.5em;
}

/* Kontakt-Info direkt nach H1 */
.datenschutz > p:first-of-type {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5em;
}

/* Nummerierte Liste */
.datenschutz ol {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
}

.datenschutz ol > li {
  counter-increment: section;
  margin-bottom: 1.5em;
  position: relative;
  padding-left: 2.5em;
}

.datenschutz ol > li::before {
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #c74e59;
}

.datenschutz h2 {
  display: inline;
  font-size: 1.1rem;
  font-weight: bold;
  color: #c74e59;
}

.datenschutz p {
  margin: 0.5em 0;
}

.datenschutz ul {
  margin: 0.5em 0 0.5em 1.5em;
  list-style: disc;
}

.datenschutz ul li {
  margin-bottom: 0.5em;
}

.datenschutz strong {
  color: #c74e59;
}

