:root {
  --accent-color: rgb(0, 191, 255);
  --blockquote-font-size: clamp(1em, 2.5vw, 1.5em);
  --content-max-width: 1200px;
  --content-padding: 1.5em;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Helvetica, sans-serif, Arial;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--content-padding);
  box-sizing: border-box;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 1em;
  text-align: center;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  margin-left: 1em;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-banner button:hover {
  background-color: #007bb5;
}

#dali {
  color: var(--accent-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1em var(--content-padding);
  transition: top 0.3s ease-in-out;
}

.navbar-links {
  display: flex;
  gap: 1em;
}

.hamburger {
  display: none;
  /* Standardmäßig für Desktop ausblenden */
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

/* Hamburger-Menü für Mobilgeräte */
.navbar-menu {
  display: none;
  /* Standardmäßig ausgeblendet */
  flex-direction: column;
  position: absolute;
  top: 100%;
  /* Direkt unter der Navbar */
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1em;
  gap: 1em;
  z-index: 100;
}

.navbar-menu.open {
  display: flex;
  /* Zeigt das Menü an, wenn es geöffnet ist */
}


.navbar img {
  max-height: 50px;
}

.navbar a {
  color: black;
  text-decoration: none;
  font-size: 1.2em;
  padding: 0.5em 1em;
}

.navbar a:hover {
  color: var(--accent-color);
}

.navbar a.active {
  background-color: var(--accent-color);
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

h1 {
  text-align: center;
  font-size: 2.5em;
}
h1::before {
  content: ""; /* Leerer Inhalt */
  display: block;
  height: 120px; /* Höhe der Sticky-Navigation */
  margin-top: -120px; /* Gleicher Wert wie height */
  visibility: hidden; /* Unsichtbar für das Auge */
}


.content {
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
  margin: 2em 0;
  flex-wrap: wrap;
}

.content img {
  max-width: 350px;
  height: auto;
  object-fit: cover;
}

.content blockquote {
  flex: 1;
  max-width: 400px;
  font-size: var(--blockquote-font-size);
  padding: 1.5em;
  border-left: 4px solid var(--accent-color);
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.preise-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}

.preis {
  flex: 1 1 calc(50% - 2em);
  max-width: 400px;
  padding: 2em;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.preis:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.preis h2 {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.preis label {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}

.preis ul {
  list-style: none;
  padding: 0;
}

.preis ul li {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

.preis ul li::before {
  content: "✔";
  color: var(--accent-color);
  margin-right: 0.5em;
}

.details-section {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 2em auto;
}

details {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1em;
}

details summary {
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
}

details:hover {
  background-color: #eaeaea;
}

.container {
  padding: 0 1.5em;
  box-sizing: border-box;
  text-align: center;
}

.container p {
  text-align: justify;
  margin: 0 auto 1.5em auto;
  line-height: 1.6;
}

.btn-warteliste {
  display: block;
  padding: 0.8em 1.5em;
  text-align: center;
  background-color: var(--accent-color);
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: max-content;
  margin-bottom: 4em;
}

.btn-warteliste:hover {
  background-color: #007bb5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.impressionen-instagram,
.impressionen-tiktok {
  margin-top: 2em;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.impressionen-instagram h2,
.impressionen-tiktok h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.5em;
  z-index: 0;
}

.instagram-posts,
.tiktok-posts {
  display: flex;
  flex-wrap: wrap;
  /* Posts umbrechen, wenn nicht genug Platz */
  gap: 1.5em;
  /* Abstand zwischen den Posts */
  justify-content: space-between;
  /* Zentriert die Inhalte */
  width: 100%;
  /* Breite anpassen */
  z-index: 0;
}

.instagram-posts blockquote,
.tiktok-posts blockquote {
  flex: 1 1 calc(33.33% - 1em);
  /* Posts nehmen 1/3 der Breite minus Abstand */
  max-width: 300px;
  /* Maximale Breite */
  box-sizing: border-box;
  /* Berücksichtigt Padding und Margin */
  z-index: 0;
}

.gallery {
  max-width: 600px;
  margin: 0 auto; /* Zentriert die Galerie */
  text-align: center;
  position: relative;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin: 2em auto;
  max-width: 800px;
}

.review-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.review-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.review-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1em;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author {
  font-size: 1em;
  font-weight: bold;
  color: #555;
}

.review-stars {
  font-size: 1.5em;
  color: gold;
}



.kontakt-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
}

.kontakt-info {
  flex: 1  40%;
  font-size: 1em;
}

.kontakt-form {
  flex: 1 1 50%;
  max-width: 500px;
}

.kontakt-form h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

.kontakt-form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.kontakt-form .checkbox-group label {
  display: block;
  margin-bottom: 0.5em;
}

.kontakt-form button {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: var(--accent-color);
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 5em;
}

.kontakt-form button:hover {
  background-color: #007bb5;
}

.kontakt-info p {
  line-height: 1.6;
  font-size: 1.2em;
}

.kontakt-info a {
  color: inherit;
  text-decoration: none;
}

.kontakt-info a:hover {
  text-decoration: underline;
}

/* Modal-Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #f8f8f8;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1), 2px -2px 5px rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9em;
  color: #333;
}

.footer p {
  margin: 0;
  font-size: 1em;
}

.footer a {
  color: #007bff;
  /* Linkfarbe */
  text-decoration: none;
  margin: 0 0.5em;
}

.footer a:hover {
  text-decoration: underline;
  /* Hover-Effekt */
}

.footer p,
.footer a {
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer p {
    margin-bottom: 0.5em;
  }
}


@media (max-width: 768px) {
  .navbar-links {
    display: none;
    /* Versteckt Desktop-Menü */
  }

  .hamburger {
    display: block;
    /* Zeigt Hamburger-Button */
  }

  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .preise-container {
    flex-direction: column;
  }

  .preis {
    flex: 1 1 100%;
  }

  .instagram-posts,
  .tiktok-posts {
    flex-wrap: wrap;
    /* Bei kleinen Bildschirmen dürfen Zeilenumbrüche entstehen */
  }

  .instagram-posts blockquote,
  .tiktok-posts blockquote {
    flex: 1 1 100%;
    /* Bei kleinen Bildschirmen 100% Breite */
  }

  .kontakt-container {
    flex-direction: column;
  }

  .kontakt-info,
  .kontakt-form {
    flex: 1 1 100%;
  }
}