/* Desktop-Layout: Navigation rechts */
@media (min-width: 769px) {
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-nav {
    margin-left: auto;
  }

  .header-nav .nav {
    flex-direction: row;
    align-items: center;
  }
}

/* Navigationslinks */
.header-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
  color: #1f1f1f;
  background-color: #f0f0f0;
}

/* Galerie */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Buttons */
button, .btn {
  background-color: #2f2f2f;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

button:hover, .btn:hover {
  background-color: #1f1f1f;
  transform: scale(1.02);
}

/* Formulare */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #444;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  background-color: #fafafa;
  transition: border-color 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #999;
  outline: none;
  background-color: #fff;
}

form .form-check {
  margin-top: 1rem;
}

form .form-check input {
  margin-right: 0.5rem;
}

/* Logo auf sehr kleinen Geräten noch kleiner */
@media (max-width: 480px) {
  .header-logo img {
    max-height: 48px;
  }
}

.route-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.route-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.route-description p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.region-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.region-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.region-description h3 {
  font-size: 1.2rem;
  margin-top: 20px;
}

.region-description p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.kontakt-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.kontakt-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.tag-frei {
  background-color: #d7f7dc; /* blasses Grün */
}
.tag-belegt {
  background-color: #f7d7d7; /* blasses Rot */
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}
.content-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Open Sans', sans-serif;
}

.kalender-wrapper input {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
/* Stil für belegte Kalendertage */
.belegt-tag {
  background-color: #f8d7da !important;  /* blasses Rot */
  color: #842029 !important;
  text-decoration: line-through;
  border-radius: 50%;
  font-weight: bold;
  opacity: 0.9;
}
.litepicker-day-item.belegt-tag {
  background-color: #f6cfcf !important; /* Blassrot */
  color: #999 !important;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* FAQ – Box-Container im Stil von kontakt.php */
.faq-container-box {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 2rem auto;
}

/* Accordion-Logik */
.faq-wrapper {
  padding: 0;
}

.faq-box {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  transition: border-color 0.3s ease;
}

.faq-box:hover {
  border-color: #b9a9cf;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: bold; /* ← Jetzt fett */
  margin: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #2e2e2e;
}

.faq-box:hover .faq-question {
  color: #6b5b95;
}

.faq-answer {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-box:hover .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 0.5rem;
}

.faq-answer a {
  color: #6b5b95;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 1.15rem;
  }

.faq-answer{
  font-size: 0.95rem;
}
}
.agb-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.agb-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #2e2e2e;
}
.agb-text a {
  color: #6b5b95;
  text-decoration: underline;
}

/* ===== Tweaks: FAQ + Startseite Layout (dezente Anpassungen) ===== */
.headline{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  color: #222;
}

/* Startseite: Abstand zwischen Textblock und Galerie reduzieren */
#about{
  margin-bottom: 1.5rem !important; /* statt Bootstrap mb-5 (~3rem) */
}
