/* Preise */
#Preise {
  padding: 50px 30px;
  background-color: #f7ddb0;
}

.preise--gallery {
  margin: 30px auto;
  max-width: 1600px;
  position: relative;
}

.preise--content {
  display: flex;
  margin: 30px auto 30px 23vw;
  padding: 30px;
  max-width: 560px;
  background-color: #f1bf85;
   border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.preise--img {
  flex: 4;
  padding: 0px 45px 0px 0px;
}

.preise--img img {
  display: block;
  width: 100%;
}

.preise--text {
  flex: 5;
  padding: 0 0 0 45px;
  align-self: center;
}

@media screen and (max-width: 578px) {

  #Preise {
    padding: 0;
  }

  .preise--content {
    flex-direction: column;
    margin: 30px 10px;
    padding: 20px;
  }

  .preise--img {
    padding: 10px 0;
  }

  .preise--text {
    padding: 30px 0 0 0;
  }
}

@media screen and (min-width: 579px) and (max-width: 1070px) {


  .preise--content {
    margin: 80px auto;
    padding: 30px 30px;
  }


  .preise--text {
    padding: 0 0 0 20px;
  }
}


/* Buchung und Formular */

#Booking {
  background-image: url("../img/impressionen/impressionen-54.JPG");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.booking {
  margin: 0 auto;
  max-width: 1240px;
  align-content: center;
  display: flex;
}

.booking img {
  padding: 30px;
}

.booking h4 {
  padding-bottom: 30px;
}

.booking--block {
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  /* margin: 20px;
  padding: 50px 50px 100px 50px; */
  text-align: left;
}

.booking--block p,
ul {
  font-size: 15px;
  line-height: 21px;
}

/* Buchungsformular */
.booking--form {
  max-width: 700px;
  width: 100%;
  background-color: #f7ddb0;
  padding: 40px 0px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  align-content: center;
  /* margin: 0 auto; */
   margin: 30px auto;
}

@media screen and (max-width: 578px) {
#Booking {
  background-image: none;
}

.booking--form {
  border-radius: 0px;
  box-shadow: none;
}


}

@media screen and (min-width: 579px) and (max-width: 1070px) {
  
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form--group {
  display: flex;
  flex-direction: column;
}

label {
  /* font-size: 14px;
  font-weight: 700; */
  margin-top: 6px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="number"],
select,
textarea {
  /* width: 100%; */
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background-color: #fbeac0;
  box-shadow: inset 0 0 0 1px #fbeac0;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #000;
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Inter', sans-serif;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.form--submit input[type="submit"] {
  background-color: #fbeac0;
  border: none;
  border-radius: 20px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
  color: #000;
  font-weight: 200;
}

.form--submit input[type="submit"]:hover {
  background-color: #f4cfa0;
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
}