/* === Body & Grundlayout === */
body {
    background: linear-gradient(135deg, 
        #89CFF0,
        #D8BFD8,
        #F8BBD0,
        #FFE4B5,
        #BFEFFF,
        #E6E6FA
    );
    background-size: 400% 400%;
    animation: gradientAnimation 60s ease infinite;
    font-family: Helvetica, Arial, sans-serif;
    color: #333;
    text-align: center;
    line-height: 1.3em;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cookie-overlay {
    display: none; /* standardmäßig ausgeblendet */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Weiß mit 80% Transparenz */
    color: #000;
    text-align: center;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.cookie-overlay p {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-overlay button {
    margin: 10px 5px 0;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-overlay button:hover {
    background-color: #0056b3;
}

#declineCookies {
    background: none;
    color: #000;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 0.75rem; /* entspricht ca. 14px */
    text-decoration: underline;
    cursor: pointer;
}


h1, h2, h3 {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.2em;
    margin: 0 0 10px;
}

h1 { font-size: 2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.4em; }

a:link, a:visited {
    text-decoration: none;
}

.social-icons a {
    font-size: 2em;
}

.space { height: 40px; }
.space-small { height: 20px; }

/* === Navigation === */
.menu-space { height: 60px; }


/* === Burger-Menü Leiste (oben fixiert) === */
.burger-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1001;
}

/* === Burger-Icon === */
.burger-menu {
    font-size: 30px;
    cursor: pointer;
    color: #000;
    margin-right: 20px;
}

/* === Overlay für das Burger-Menü === */
.fullscreen-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1000;
    overflow-y: auto;
}

/* === Navigation im Overlay === */
.fullscreen-overlay > ul.burger-nav {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* === Hauptmenüpunkte === */
.fullscreen-overlay li.burger-item {
    margin: 20px 0;
    position: relative;
}

.fullscreen-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

/* === Toggle-Button (+ / −) neben Hauptlink === */
.submenu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    margin-left: 8px;
    cursor: pointer;
    vertical-align: middle;
}

/* === Submenü (sichtbar) === */
.burger-submenu {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
    max-height: 1000px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* === Submenü-Einträge === */
.burger-submenu li {
    margin: 10px 0;
}

.burger-submenu a {
    color: #ccc;
    font-size: 20px;
    text-decoration: none;
}

/* === Submenü (versteckt) === */
.burger-submenu.hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav li {
    position: relative;
    margin: 0 15px;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.nav-item {
    position: relative;
}

.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    min-width: 200px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.submenu li {
    margin: 10px 0;
}

.nav-item:hover > .submenu {
    display: block !important;
  }

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav li {
        width: 100%;
        margin: 0;
    }

    .main-nav li > a {
        padding: 10px 20px;
    }

    .nav-item.open > .submenu {
        display: block;
    }
}

/* Sichtbarkeiten */
@media (min-width: 860px) {
    .burger-container,
    .menu-space {
        display: none;
    }

    .nav-container {
        display: flex;
    }
}

@media (max-width: 860px) {
    .nav-container {
        display: none;
    }
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.logo-container img {
    max-height: 250px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* === Container für die Navigation === */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

@media (max-width: 860px) {
  .nav-container {
    display: none;
  }
}

/* === Navigation selbst === */
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* === Links === */
nav a {
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}


/* Basis-Styles for all Modules */
.container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/*  3 Spalten Responsive Layout */

/* Basis-Styles */
.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.box {
    flex: 1;
    min-width: 30%;
    margin: 10px;
    box-sizing: border-box;
    padding: 30px;
    border: 0px solid #ccc;
    background: rgba(255, 255, 255, 0.4); /* Weiß mit 80% Deckkraft */
}

.box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}


/* Responsive Design für < 860px */
@media (max-width: 860px) {
.box-container {
    width: 100%;
    max-width: 860px; /* Maximale Breite von 860px */
    margin: 40px auto; /* Zentriert mit automatischen Seitenabständen */
    padding: 0px;
    box-sizing: border-box;
    display: block; /* Spalten untereinander anordnen */
    text-align: center;
}

.box {
    width: 100%; /* Boxen nehmen die volle Breite ein */
    margin: 20px 0; /* Vertikaler Abstand zwischen Boxen */
    padding: 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0); /* Weiß mit 40% Deckkraft */
}

/* Datum und Ort */
.box .date,
.box .location {
    font-weight: bold;
}

}


/* Grundlegendes Styling für den Vollbreiten-Bereich */
.fullwidth-box {
    width: 100%;
    max-width: 860px; /* Maximale Breite auf 680px begrenzen */
    box-sizing: border-box;
    margin: 20px auto; /* Zentriert mit automatischen Seitenabständen */
    padding: 0px;
    border: 0px solid #ccc;
    background: rgba(255, 255, 255, 0); /* Weiß mit 40% Deckkraft */
}

/* Überschrift */
.fullwidth-box h3 {
}

/* Allgemeine Absätze */
.fullwidth-box p {
    margin: 10px 10px;
}

/* Bild Styling */
.fullwidth-box img {
    width: 100%;
    max-height: 860px;
    object-fit: cover;
    display: block;
    margin: 0;
}

.cta {
    padding: 20px;
    background: rgba(255, 255, 255, 0.4); /* Weiß mit 40% Deckkraft */
}

/* Grundlegendes Styling für den Vollbreiten-TextBereich */
.fullwidth-textbox {
    width: 100%;
    max-width: 860px; /* Maximale Breite auf 680px begrenzen */
    box-sizing: border-box;
    margin: 20px auto; /* Zentriert mit automatischen Seitenabständen */
    padding: 20px;
    border: 0px solid #ccc;
    background: rgba(255, 255, 255, 0); /* Weiß mit 40% Deckkraft */
    text-align: left;
}

/* Überschrift */
.fullwidth-textbox h3 {
}

/* Allgemeine Absätze */
.fullwidth-textbox p {
    margin: 10px 10px;
}

/* Bild Styling */
.fullwidth-textbox img {
    width: 100%;
    max-height: 860px;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Grundlegendes Styling für den Vollbreiten-Bereich */
.slideshow-header-box {
    width: calc(100% - 20px); /* 10px Abstand links + 10px rechts */
    box-sizing: border-box;
    margin: 40px 10px; /* 10px Abstand links und rechts */
    overflow: hidden;
    padding: 0;
    border: 0 solid #ccc;
    background: rgba(255, 255, 255, 0.4); /* Weiß mit 40% Deckkraft */
}

/* Bild Styling */
.slideshow-header-box img {
    width: 100%;
    max-height: 860px;
    object-fit: cover; /* Bild passt sich an, ohne verzerrt zu werden */
    display: block;
    margin: 0;
}

/* Responsive Design für < 860px */
@media (max-width: 860px) {
    .slideshow-header-box {
        width: 100%; /* Nimmt die gesamte Breite ein */
        max-width: 860px; /* Begrenzung auf 680px */
        margin: 20px auto; /* Zentriert mit automatischem Seitenabstand */
        padding: 0px; /* Innenabstand */
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.4); /* Konsistenter transparenter Hintergrund */
    }

    .slideshow-header-box img {
        width: 100%; /* Volle Breite */
        object-fit: contain; /* Seitenverhältnis bleibt erhalten */
        margin: 0 auto; /* Zentriert das Bild innerhalb de */
    }
}

/* Formular Styles */

.outer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.form-container {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 0px;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    text-align: left;
}
.form-table {
    width: 100%;
}

select {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #fff;
}

table.form-table select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100% !important;
    padding: 10px !important;
    margin: 10px 0 !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    background: url('pfad/zum/arrow-icon.png') no-repeat right center;
    background-size: 12px;
}

.form-table input, .form-table textarea, .form-table button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-table textarea {
    height: 120px;
}

.form-table button {
    background: #5400CF;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}
.form-table button:hover {
    background: #360089;
}

.form-response {
    margin: 80px;
    font-size: 1.2em;
    line-height: 1.4em;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    font-size: 0.8em;
    line-height: 1.2em;
}

.checkbox-inline input[type="checkbox"] {
    margin: 0; /* Entfernt jegliche Margin */
    margin-right: 10px;
    padding: 0; /* Entfernt jegliches Padding */
    width: auto; /* Stellt sicher, dass die Standardbreite verwendet wird */
    height: auto; /* Stellt sicher, dass die Standardhöhe verwendet wird */
}

/*Boxen inline für die Camp-Buchungen*/

.camp-box {
    max-width: 860px; /* Maximale Breite auf 680px begrenzen */
    margin: 0px auto; /* Zentriert mit automatischen Seitenabständen */
    padding: 20px;
    padding: 1em;
}

.camp-content {
    display: flex;
    align-items: flex-start; /* Standard für mobile Ansicht */
    gap: 1em;
}

.camp-icon {
    font-size: 10em;
    line-height: 0.8;
    flex-shrink: 0;
}

.camp-right {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    flex: 1;
}

.camp-info {
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em; /* kleiner Abstand zwischen den Zeilen */
}

.camp-button {
    flex-shrink: 0;
}

.book-button {
  /* Button-Defaults ausknipsen: */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-family: inherit;     /* sorgt für dieselbe Schrift */
  font-size: inherit;       /* falls du irgendwo die Basis-größe anpasst */
  line-height: 1;           /* vermeidet zusätzliche Höhe */
  box-sizing: border-box;   /* Padding + Border konsistent rechnen */
  background-color: #007bff;
  color: white;
  padding: 0.6em 1.2em;
  text-decoration: none;
  border-radius: 0.3em;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.book-button.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #ccc;
  color: #666;
}


@media (max-width: 859px) {
    .camp-button {
        align-self: flex-start; /* Links ausrichten */
        margin-top: 10px;
    }
}

@media (min-width: 860px) {
    .camp-content {
        align-items: center; /* vertikale Zentrierung aller drei Elemente */
    }

    .camp-right {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .camp-info {
        margin-right: 2em;
    }
}

/* Google Maps Plugin */
.map-address-container {
  display: flex;
  flex-wrap: nowrap;
  margin: 1rem 0;
  height: 400px; /* gewünschte Höhe */
}

/* Linke Spalte: Map = 2/3 Breite */
.map-address-container .map {
  flex: 0 0 66.666%;
}

/* Rechte Spalte: Adresse = 1/3 Breite */
.map-address-container .address {
  flex: 0 0 33.333%;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: auto;
  background: #f9f9f9;
}

/* Responsive: unter 860px werden die Blöcke untereinander */
@media (max-width: 860px) {
  .map-address-container {
    flex-direction: column;
    height: auto; /* Höhe passt sich Inhalt an */
  }
  .map-address-container .map,
  .map-address-container .address {
    flex: 1 0 100%;
    height: 300px; /* ggf. Anpassung */
  }
}

/* === Allgemeines Kontakt Formular Layout ===================================== */

#mehrseitiges-formular {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4); /* Weiß mit 80% Deckkraft */
  padding: 2rem;
  box-sizing: border-box;
  margin-top: 40px;
  margin-bottom: 40px;
}

.alert-success h1 {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* === Fieldsets als Schritte ================================= */

#mehrseitiges-formular fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}

#mehrseitiges-formular fieldset:first-of-type {
  display: block;
}

#mehrseitiges-formular legend {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

#mehrseitiges-formular p {
  text-align: left;
}

#mehrseitiges-formular .formgroup {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* === Formularfelder ======================================== */

#mehrseitiges-formular label {
  display: block;
  margin-bottom: 1.25rem;
  text-align: left;
  font-weight: 800;
}

#mehrseitiges-formular input,
#mehrseitiges-formular select,
#mehrseitiges-formular textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-top: 0.3rem;
}

/* Datepicker */
#mehrseitiges-formular input.js-datepicker {
  background-color: #fff;
}

/* === Checkbox-Gruppen: links Checkbox, rechts Text – zeilenweise === */

#mehrseitiges-formular .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

#mehrseitiges-formular .checkbox-wrapper input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

#mehrseitiges-formular .checkbox-wrapper label {
  margin: 0;
  padding-top: 3px;
  cursor: pointer;
  flex: 1;
  font-weight: 400;
}

/* === Buttons =============================================== */

#mehrseitiges-formular .d-flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

#mehrseitiges-formular button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-width: 140px;
  margin-top: 20px;
}

/* Weiter-Button */
#mehrseitiges-formular .next-step {
  background-color: #007bff;
  color: #fff;
}
#mehrseitiges-formular .next-step:hover {
  background-color: #0056b3;
}

/* Zurück-Button */
#mehrseitiges-formular .prev-step {
  background-color: #6c757d;
  color: #fff;
}
#mehrseitiges-formular .prev-step:hover {
  background-color: #5a6268;
}

/* Absenden */
#mehrseitiges-formular button[type="submit"] {
  background-color: #28a745;
  color: #fff;
}
#mehrseitiges-formular button[type="submit"]:hover {
  background-color: #218838;
}

/* === Fehlermeldungen ======================================= */

#mehrseitiges-formular .form-error {
  color: #d9534f;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* === Responsive Anpassungen ================================ */

@media (max-width: 600px) {
  #mehrseitiges-formular {
    padding: 1rem;
  }
  #mehrseitiges-formular .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  #mehrseitiges-formular button {
    width: 100%;
  }
}

/* Ausgabe der Datentabelle */

/* Container zentriert */
.table-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  font-family: system-ui, sans-serif;
}

/* Tabelle */
.table-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.table-container th,
.table-container td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}