* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

/*Header*/

nav {
  background-color: #b9dfff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #707070;
}

nav a:hover {
  background-color: #8dcbff;
  color: white;
}

nav li:first-child {
  margin-right: auto;
}

.logo {
  max-height: 30px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(185, 223, 255, 0.5);
  backdrop-filter: blur(70px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

/*Main index.php*/
.banner {
  min-width: 100%;
  margin-top: 0;
}

.slogan {
  padding: 70px;
  padding-top: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.slogan h2 {
  font-size: 40px;
  color: #707070;
  padding-bottom: 30px;
  padding-top: 35px;
}

.slogan p {
  font-size: 18px;
  color: #707070;
  line-height: 30px;
}

.generator-col1 {
  width: 50%;
  height: 500px;
  float: left;
}

.generator-img {
  display: block;
  margin-left: 25%;
  height: 320px;
  min-width: 480px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
}

.generator-col2 {
  width: 50%;
  height: 500px;
  float: right;
}

.generator-titel {
  font-size: 20px;
  color: #707070;
  line-height: 30px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 40px;
  margin-left: -100px;
}

.generator-text {
  font-size: 18px;
  color: #707070;
  line-height: 30px;
  text-align: center;
  margin-left: -100px;
}

.generator-button {
  display: block;
  margin-left: 33%;
  background-color: #b9dfff;
  border: none;
  width: 200px;
  height: 50px;
  font-size: 18px;
  color: #707070;
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  margin-top: 30px;
}

.generator-button:hover {
  color: white;
  background-color: #8dcbff;
  cursor: pointer;
}

/*progress bar*/

.step-wizard {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-wizard-list {
  color: #707070;
  list-style-type: none;
  border-radius: 10px;
  display: flex;
  padding: 20px 10px;
  position: relative;
  z-index: 10;
}

.step-wizard-item {
  padding: 0 20px;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 170px;
  position: relative;
}

.step-wizard-item + .step-wizard-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  background: #b9dfff;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  z-index: -10;
}

.progress-count {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  color: transparent;
}

.progress-count:after {
  content: "";
  height: 40px;
  width: 40px;
  background: #b9dfff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -10;
}

.progress-count:before {
  content: "";
  height: 10px;
  width: 20px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
}

.progress-label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before {
  display: none;
}

.current-item ~ .step-wizard-item .progress-count:after {
  height: 10px;
  width: 10px;
}

.current-item ~ .step-wizard-item .progress-label {
  opacity: 0.5;
}

.current-item .progress-count:after {
  background: white;
  border: 2px solid #b9dfff;
}

.current-item .progress-count {
  color: #b9dfff;
}

/*Main step-3.php*/
.kontaktdaten {
  text-align: center;
  margin: 20px 0;
}

.kontaktdaten h2 {
  font-size: 24px;
  color: #333;
}

form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 10px 0;
}

label {
  font-size: 16px;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 5px;
}

input[type="radio"] {
  margin-right: 10px;
}

.error-text {
  color: red;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}

.back-button {
  background-color: #ccc;
  color: #333;
}

.back-button:hover {
  background-color: #999;
}

.calendar-container {
  width: 300px;
  margin: 100px auto auto auto;
  text-align: center;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#calendar {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

#calendar th,
#calendar td {
  border: 1px solid #6e6e6e;
  padding: 10px;
  text-align: center;
}

#calendar th {
  background-color: #f2f2f2;
}

#calendar td.workday {
  background-color: #b9dfff;
  cursor: pointer;
}

#calendar td.weekend {
  background-color: #f9f9f9;
}

#calendar td.selected {
  background-color: #8dcbff;
}

button {
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
}

.both-buttons {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px;
}

button:hover {
  color: #8dcbff;
}

.time-selection {
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  gap: 20px; /* Abstand zwischen den Buttons */
}

.button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.back-button {
  background-color: #e0e0e0;
  color: #555;
}

.next-button {
  background-color: #888;
  color: white;
}

.back-button:hover,
.next-button:hover {
  opacity: 0.8;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  padding: 20px 0;
}

h1 {
  font-size: 24px;
  margin: 0;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.customization-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
  display: block;
}

.options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-box {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.babyblue {
  background-color: #8dcbff;
}

.black {
  background-color: black;
}

.white {
  background-color: white;
  border: 1px solid lightgray;
}

.blue {
  background-color: blue;
}

.red {
  background-color: red;
}

.gold {
  background-color: gold;
}

.silver {
  background-color: silver;
}

.generieren {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #b9dfff;
  color: #707070;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.generieren:hover {
  background-color: #8dcbff;
  color: white;
}

.buchung {
  margin: 50px;
}

.buchung h2 {
  text-align: center;
}

.buchung p {
  text-align: center;
  margin-top: 20px;
}

.zumStart {
  color: #8dcbff;
}

.button-container {
  display: flex; /* Verwendet Flexbox */
  justify-content: center; /* Zentriert die Elemente horizontal */
  margin-bottom: 100px;
}

.weiter__btn,
.back__btn {
  display: inline-block; /* Ändert die Anzeige auf Inline-Block */
  margin-right: 10px; /* Optional: Fügt einen Abstand zwischen den Buttons hinzu */
}

.back__btn {
  margin-top: 47px;
  text-align: center;
}
.back__btn a {
  background-color: #ccc;
  border-radius: 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  height: 45px;
  line-height: 41px;
  padding: 0 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.back__btn a:hover {
  background-color: #7b7b7b;
}

.weiter__btn {
  margin-top: 47px;
  text-align: center;
}
.weiter__btn a {
  background-color: #999;
  border-radius: 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  height: 45px;
  line-height: 41px;
  padding: 0 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.weiter__btn a:hover {
  background-color: #333;
}

h3 {
  text-align: center;
}

.radio-button-group {
  display: flex;
  align-items: center;
}

.radio-button-group input[type="radio"] {
  margin-right: 5px;
  position: relative;
  top: -6px;
}

.radio-button-group label {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.centered {
  text-align: center;
  margin-top: 50px; /* Hier kannst du den Abstand nach Bedarf anpassen */
}
.zusammenfassung {
  display: inline-block;
  padding: 20px;
}

.customization-image-container {
  text-align: center;
}

.customization-image {
  display: inline-block;
  max-width: 100%; /* Optional: Begrenzt die Bildbreite auf den verfügbaren Platz */
}

/*Footer*/

footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  background-color: #b9dfff;
  padding: 60px 10%;
}

footer ul {
  list-style: none;
}

.footer-col {
  width: 25%;
}

.footer-col h4 {
  position: relative;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #707070;
  text-transform: capitalize;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #8dcbff;
  height: 2px;
  width: 40px;
}

footer ul li:not(:last-child) {
  margin-bottom: 8px;
}

footer ul li a {
  display: block;
  font-size: 14px;
  text-transform: capitalize;
  color: #707070;
  text-decoration: none;
  transition: 0.2s;
}

footer ul li a:hover {
  color: white;
  padding-left: 2px;
}

.links a {
  display: inline;
  padding-right: 10px;
  height: 60px;
  width: 60px;
  color: #707070;
  transition: 0.2s;
}

.links a:hover {
  color: white;
}

/* Phone */

@media screen and (max-width: 850px) {
  /*Header*/

  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }

  /*Main step-1.php*/

  .step-wizard-list {
    padding: 10px 5px;
  }

  .step-wizard-item {
    min-width: 120px;
  }

  .progress-label {
    font-size: 12px;
  }

  /*Footer*/

  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-col h4::before {
    all: unset;
  }
}

@media screen and (max-width: 600px) {
  /*Header*/

  .sidebar {
    width: 100%;
  }

  /*Main step-1.php*/

  .step-wizard {
    flex-direction: column;
    height: auto;
  }

  .step-wizard-list {
    flex-direction: column;
    padding: 0;
  }

  .step-wizard-item {
    min-width: 0;
    width: 100%;
    padding: 10px 0;
  }

  .step-wizard-item + .step-wizard-item:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #b9dfff;
    transform: translate(-50%, -110%);
    z-index: -10;
  }

  .progress-label {
    font-size: 10px;
    background: white;
    padding: 0 10px;
  }

  .generator-img {
    min-width: 320px;
  }

  /*Footer*/

  .footer-col {
    width: 100%;
  }

  .generator-row {
    display: grid;
  }

  .generator-col1 {
    width: 100%;
    height: 220px;
  }

  .generator-col2 {
    width: 100%;
    height: 500px;
  }

  .generator-img {
    display: block;
    margin-left: 70px;
    height: 240px;
    width: 360px;
  }

  .generator-titel {
    display: block;
    margin-left: 60px;
    margin-right: 60px;
  }

  .generator-text {
    display: block;
    margin-left: 60px;
    margin-right: 60px;
  }

  .generator-button {
    display: block;
    margin-left: 150px;
  }
}

.selection-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
}

select {
  width: 200px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

img {
  display: block;
  margin-top: 10px;
  max-width: 200px;
  height: auto;
}

button {
  display: block;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

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