* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }
    body {
      line-height: 1.6;
      color: #333;
    }
    header {
      background: url('../images/finca.jpg') center/cover no-repeat;
      height: 100vh;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 1rem;
    }
    header h1 {
      font-size: 2rem;
    }
    header p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    span {
      font-size: 0.5rem;
    }
    header a.button {
      background: #e63946;
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

/* MENÜ */

/* MENU BAR */
#menu-bar {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0.75rem 1rem;
    z-index: 100;
}

/* CHECKBOX VERSTECKEN */
#menu-toggle {
    display: none;
}

/* BURGER */
.burger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    height: 3px;
    width: 100%;
    background: #333;
    display: block;
}

/* MENU (MOBILE FIRST) */
.menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    background: #fff;
}

/* TOGGLE */
#menu-toggle:checked + .burger + .menu {
    display: flex;
}

/* LINKS */
.menu a {
    text-decoration: none;
    color: #333;
}

/* LANGUAGES */
.languages {
    display: flex;
    gap: 0.5rem;
}

.languages img {
    height: 18px;
    width: auto;
    display: block;
}

/* DESKTOP */
@media (min-width: 768px) {

    .burger {
        display: none;
    }

    .menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        margin-top: 0;
    }

    #menu-bar {
        display: flex;
        justify-content: center;
    }
}



    section {
      padding: 2rem 1rem;
      max-width: 1100px;
      margin: auto;
    }

    p {
      padding: 0.2rem;
      text-align: justify;
    }
     ul {
      padding-left: 1em;
     }
    /* Social Media */
     .share-buttons {
      display: flex;
      gap: 1em;
      margin-top: 1em;
    }

    .share-button {
      padding: 1px 1px;
      border-radius: 1px;
      text-decoration: none;
      color: white;
      font-weight: bold;
    }

    .facebook { background-color: #3b5998; }
    .telegram { background-color: #0088cc; }
    .whatsapp { background-color: #25D366; }

    /* Galerie */

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
}

.thumbnail {
  position: relative;
  flex: 1 0 100%;
  margin-bottom: 10px;
  cursor: pointer;
}

.thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.thumbnail:hover .overlay {
  opacity: 1;
}

@media (min-width: 768px) {
  .thumbnail {
    flex: 0 0 calc(100% / 3 - 10px);
  }
}

@media (min-width: 1024px) {
  .thumbnail {
    flex: 0 0 calc(100% / 6 - 10px);
  }
}

/* Lightbox */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox-caption {
  color: #fff;
  margin-top: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}

.nav.left {
  left: 10px;
}

.nav.right {
  right: 10px;
}




    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }
    th, td {
      padding: 0.75rem;
      border: 1px solid #ccc;
      text-align: left;
      font-size: 0.9rem;
    }
     * {
      box-sizing: border-box;
    }






    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .calendar-controls {
      display: flex;
      justify-content: center;
      margin-bottom: 10px;
      gap: 10px;
    }
    .calendar-controls select {
      width: auto;
      padding: 4px;
      max-width: 140px;
    }
    .calendars {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 20px;
    }
    .calendar {
      border: 1px solid #ccc;
      margin: 10px;
      width: 280px;
    }
    .calendar-header {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      background-color: #f5f5f5;
    }
    .calendar-days, .calendar-dates {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
    }
    .calendar-dates div {
      padding: 5px;
      cursor: pointer;
    }
    .disabled {
      background-color: #eee;
      color: #aaa;
      pointer-events: none;
    }
    .selected {
      background-color: #d0f0d0;
    }
    .start, .end {
      background-color: #4CAF50;
      color: white;
    }
    form {
      max-width: 450px;
      width: 100%;
      margin: 0 auto;
    }
    label {
      display: block;
      margin-top: 10px;
    }
    input, select, textarea {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
    }
.agb-label {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

    button {
      padding: 8px;
      margin-top: 5px;
      background: #DDBA82;
    }
    .form-row {
      margin-bottom: 1px;
    }
    .buchung_tabelle {
      border: 0;
      padding: 1em;
      margin: 1em;
    }

    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 2rem 1rem;
    }
    footer a {
      color: #f4a261;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      header h1 {
        font-size: 3rem;
      }
      header p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
      }
      nav a {
        font-size: 1rem;
      }
    }

    .warnung {
      color: red;
      font-weight: bold;
    }