/* body */
body {
  font-family: "indivisible", "Helvetica Neue", Arial, sans-serif;
  font-size: 13pt;
  background-color: rgba(227, 222, 211, 0.5);
  margin: 0;
}

/* Typografie */
h1 {
  font-family: "ff-basic-gothic-pro", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 43pt;
  line-height: 1.2;
}

legend {
  font-family: "ff-basic-gothic-pro", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 20pt;
  font-weight: 600;
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: 400;
  margin-bottom: -8px;
}

/* Optional */
.optional {
  font-size: 11pt;
  color: rgba(240, 81, 74, 1);
}

/* Fehlermeldungen */
.error {
  color: rgba(240, 81, 74, 1);
  font-size: 12pt;
  font-weight: 600;
  margin: 12px;
}

/* Header */
header {
  position: relative;
  overflow: hidden;
}
header .header-image {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  overflow: hidden;
}
/* Header Bild */
header .header-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header .logo {
  position: absolute;
  top: 2vw;
  left: 50%;
  transform: translateX(-50%);
  width: 12vw;
  min-width: 120px;
} /* Zeile 67 - 70 wurde mithilfe von Micorsoft Pilot erstellt */

/* Header Titel */
header h1 {
  position: absolute;
  top: 32vw;
  left: 10vw;
  transform: translateY(-50%);
}

/* Formular */
#guest-number,
#checkin,
#checkout,
#checkin-time,
#notes,
#first-name,
#last-name,
#email,
#mobile,
#phone,
#card-number,
#card-expiry,
#cvc,
#card-name,
#first-name-address,
#last-name-address,
#country,
#street,
#city {
  font-family: "indivisible";
}

fieldset {
  margin-top: 40px;
}

/* Formular Box */
.formular-box {
  display: flex;
  justify-content: center;
  margin-top: 10vw;
  padding: 12px;
}

.formular-box form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
}

/* Formular Schriften, Aurichtung & Abstände */
.formular-box fieldset {
  display: flex;
  flex-direction: column;
  border: none;
  margin-bottom: 24px;
  margin-top: 46px;
}

#reservation-form input,
#reservation-form select,
#reservation-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 11pt;
  font-weight: 200;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid rgba(227, 222, 211, 1);
}

/* Radio Buttons Horizontal */
.radio-group label {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: flex-start; /* Zeile 148 - 150 wurde mithilfe von Micorsoft Pilot erstellt */
  gap: 12px;
  font-weight: 200;
  margin-right: 32px;
}

/* Felder Nebeneinander */
.row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.row div {
  flex: 1 1 0;
  margin-bottom: 40px;
}

.formular-box form div label {
  margin-bottom: 8px;
}

/* Button */
button {
  font-family: "indivisible";
  font-size: 13pt;
  color: rgba(240, 81, 74, 1);
  background-color: #ffffff;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 28px;
  border: 2px solid rgba(240, 81, 74, 1);
  cursor: pointer;
}

/* Hover */
button:hover {
  color: #ffffff;
  background-color: rgba(240, 81, 74, 1);
  border: 2px solid rgba(240, 81, 74, 1);
}

.form-actions {
  display: flex;
  margin-top: 46px;
  margin-left: 14px;
  margin-right: 14px;
}

#reservation-form input:focus,
#reservation-form select:focus,
#reservation-form textarea:focus {
  outline: none;
  border-color: rgba(240, 81, 74, 1);
}

/* Footer */
/* Footer Grundlayout */
footer {
  font-size: 11pt;
  padding: 200px 6vw 200px 6vw;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  position: relative;
}

/* Abstand nach © 2026 THE GEORGE */
.footer-spalte-links p:first-child {
  margin-bottom: 28px;
}

/* Rechte Spalte auf Höhe von "Leona Thürig" */
.footer-spalte-rechts {
  margin-top: 44px;
}

/* Links */
footer a {
  color: rgba(240, 81, 74, 1);
}

footer a:hover {
  color: rgb(1, 127, 103);
}

/* Schriftlogo */
.schriftlogo {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 18vw;
  min-width: 200px;
}

/* Abstand Text/Logo */
footer {
  padding-bottom: 200px;
}

.schriftlogo img {
  width: 100%;
  height: auto;
}

/* Kredikarte & Rechnungsadresse hidden */
.hidden {
  display: none !important;
} /* Zeile 257 - 258 wurde mithilfe von Microsoft Pilot erstellt (main.js) */

/* Responsive */

/* Handy */
@media (max-width: 767px) {
  /* Header Titel */
  header h1 {
    font-size: 22pt;
    margin-top: 80px;
    position: static;
    margin-left: 20px;
  }

  legend {
    font-size: 16pt;
    font-weight: 450;
  }

  /* Radio Buttons untereinander */
  .radio-group {
    margin-bottom: 12px;
  }

  .radio-group label {
    position: relative;
    display: block;
    line-height: 1.5;
  }

  .radio-group input[type="radio"] {
    position: absolute;
    left: 170px;
  }

  /* Felder untereinander */
  .row {
    flex-direction: column;
  }

  .row div {
    width: 100%;
    margin-bottom: 32px;
  }

  /* Footer untereinander */
  footer {
    flex-direction: column;
    gap: 12px;
    padding: 120px 28px 60px 28px;
  }

  .footer-spalte-rechts {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* Schriftlogo */
  .schriftlogo {
    position: static;
    transform: none;
    margin: 20px auto 0 auto;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Header Titel */
  h1 {
    font-size: 32pt;
  }
}
