* {
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    color: #fff;
    padding: 0px;
    text-align: center;
}

nav {
    background-color: #6b6b6b;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
}

section {
    padding: 20px;
    text-align: center;
}

#about, #contact {
    background-color: #cfcfcf;
}

footer {
    background-color: #cfcfcf;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    width: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

/* Beispielhöhe für Scroll-Effekt */
.section {
  height: 100vh; 
  padding: 20px;
  background-color: #f0f0f0;
  margin-bottom: 20px;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

/* Stil für die Links */
nav ul li a {
  text-decoration: none;
  padding: 10px;
  color: black;
  transition: all 0.3s ease; /* Sanfte Übergänge */
}

/* Hover-Effekt */
nav ul li a:hover {
  color: white;
  background-color: #007BFF; /* Blaues Hintergrund beim Hover */
  border-radius: 5px; /* Abgerundete Ecken */
  transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}

/* Abschnitte */
.section {
  height: 100vh;
  padding: 20px;
  background-color: #f0f0f0;
  margin-bottom: 20px;
}



.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-item {
    width: calc(25% - 20px);
    margin: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}


/* footer */
.container {
  overflow: hidden; /* Verhindert das Kollabieren von Container */
}
.column {
  width: 48%; /* Beide Spalten nehmen je 48% des Containers ein */
  float: left; /* Nebeneinander anordnen */
  padding: 10px;
  margin-right: 4%; /* Abstand zwischen den Spalten */
  border: 1px solid #6b6b6b;
}
.column:last-child {
  margin-right: 0; /* Kein Abstand bei der letzten Spalte */
}
.column.left {
  background-color: #6b6b6b;
}
.column.right {
  background-color: #6b6b6b;
}


/* Galerie*/


* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Container für den Slider */
.slider-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}

/* Einzelne Slider-Bilder */
.slide {
  display: none;
  position: relative;
}

/* Style für die Bilder */
.slide img {
  width: 100%;
  border-radius: 10px;
}

/* Vor- und Zurück-Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8);
}

/* Platzierung der Buttons */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

/* Punkt-Navigation */
.dots {
  text-align: center;
  padding: 10px;
  background-color: #f2f2f2;
  border-radius: 10px;
}

.dots span {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

.active, .dots span:hover {
  background-color: #ffffff;
}

/*buchungsformular*/
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
  }

  .booking-form {
    background-color: white;
    padding: 20px;
    max-width: 500px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .booking-form h2 {
    text-align: left;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .form-group input[type="date"] {
    cursor: pointer;
  }

  .form-group select {
    cursor: pointer;
  }

  .submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #5e5e5e;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  .submit-btn:hover {
    background-color: #7c7c7c9a;
  }

/* Standard-Styles für größere Bildschirme */
body {
  font-size: 18px;
  margin: 0;
  padding: 20px;
}

/* Für Bildschirme mit max. Breite von 600px */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  .container {
    flex-direction: column; /* Elemente untereinander anordnen */
  }

  .item {
    width: 100%; /* Elemente nehmen die volle Breite ein */
  }
}

img {
  max-width: 100%;
  height: auto;
}

button, a {
  padding: 10px;
  font-size: 16px;
}

/* Grid-basierter Layout */
.grid-container {
  display: grid;
  grid-template-columns: 1fr; /* Eine Spalte standardmäßig */
  gap: 20px;
}

@media (min-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr 1fr; /* Zwei Spalten auf größeren Bildschirmen */
  }
}
