

/* =======================================
   BASE / GLOBAL
======================================= */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  letter-spacing: 0.2px;
  font-family: "Courier Prime", monospace;
  font-weight: 800;
  color: #393232;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding: 80px 20px;
  background: #393232;
;

 
}

h2,
button {
  font-family: "Courier Prime", monospace;
  font-weight: 900;
}

h3,
button {
font-family: "adelle", serif;
font-weight: 700;
font-style: normal;
}


/* =======================================
   LAYOUT / PAGE
======================================= */

.page {
  width: 100%;
  max-width: 720px;
  background: #fff6d4;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
  padding-bottom: 0;

  opacity: 0;
  transform: translateY(10px);
  animation: pageReveal 0.6s ease forwards;
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page.page-out {
  opacity: 0;
  transform: scale(0.98) translateY(-10px);
  transition: all .9s ease;
}

.booking {
  width: 100%;
  margin: 0;
}


/* =======================================
   LOGO
======================================= */

.logo-global {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
}

.logo-global img {
  width: 170px;
  height: auto;
  display: block;

  opacity: 0;
  animation: fadeInLogo 0.7s ease forwards;
  animation-delay: 0.1s;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}


/* =======================================
   HERO IMAGE
======================================= */

.booking-image {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.booking-image img {
  width: 100%;
  display: block;

  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;


  filter: contrast(0.95);
  opacity: 0;

  animation: fadeInImage 0.7s ease forwards;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.booking-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(to bottom, transparent, #fff6d4);
}


/* =======================================
   CONTAINER
======================================= */

.booking-container {
  padding: 50px 40px 0 40px;
  box-sizing: border-box;
}


/* =======================================
   TYPOGRAPHY
======================================= */

h2 {
  font-size: 25px;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  color: #111;
  transform: translateY(-20px);
}

h3 {
  font-family: "adelle", serif;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  color: #111;
  transform: translateY(-20px);
}

label {
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
  display: block;
  color: #111;
}

.hint {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #393232;
  opacity: 0.3;
}

.thankyou-text {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;

  color: rgba(17,17,17,0.8);
}

.back-link {
  display: inline-block;
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}


/* =======================================
   PLACEHOLDERS
======================================= */

input::placeholder,
textarea::placeholder,
input[name="date"]::placeholder,
input[name="time"]::placeholder,
input[name="phone"]::placeholder {
  font-family: "Courier Prime", monospace;
  color: rgba(57, 50, 50, 0.55);
  opacity: 1;
}


/* =======================================
   FORM LAYOUT
======================================= */

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

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.required label::after {
  content: " *";
  color: #111;
}

.field.full {
  grid-column: 1 / -1;
}


/* =======================================
   INPUTS
======================================= */

input,
textarea {

  font-size: 15px;
  letter-spacing: 0.3px;
  font-family: "Courier Prime", monospace;
  border: none;
  border-bottom: 1px solid rgba(17,17,17,0.35);
  background: transparent;
  padding: 10px 0;
  outline: none;
  color: #111;
}

textarea {
  min-height: 120px;
}

input:focus,
textarea:focus {
  border-bottom: 1px solid #000;
}

input:focus:invalid {
  border-bottom: 1px solid #c00;
}



/* =======================================
   TIME DROPDOWN
======================================= */

.select-wrapper {
  position: relative;
}

select {
  width: 100%;
  padding: 10px 10px;
  border: none;
  border-bottom: 1.4px solid  rgba(0,0,0,0.4);
  border-radius: 0.1px;
  outline: none;
  box-shadow: none;
  background-color:#fff6d4 ;
  color:  #393232;
  font-family: "Courier Prime", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  opacity: 0.7;

  appearance: none; /* entfernt Standard-Pfeil */
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* eigener Pfeil */

.select-wrapper {
  position: relative;

}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 20px;
  transform: translateY(-50%);
  
  width: 15px;
  height: 15px;
  
  background-image: url("img/unfold.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: contrast(0.6);
  pointer-events: none;
}








/* =======================================
   BUTTON
======================================= */

button {
  width: calc(100% + 80px);
  margin-left: -40px;

  font-family: "Courier Prime", monospace;
  font-size: 16px;
  letter-spacing: 2px;

  margin-top: 20px;
  padding: 16px 0;

  background: transparent;
  border: none;

  border-top: 1px solid rgba(17,17,17,0.2);
  color: #111;;

  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

button:hover {
  color: #F0725C;
}

button:active {
  transform: translateY(2px);
}


/* =======================================
   BACK LINK
======================================= */

.back-link {
  display: inline-block;
  margin-top: 20px;

  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: rgba(17, 17, 17, 0.6);
  text-decoration: none;
}

.back-link:hover {
  opacity: 1;
  color: #F0725C;
}

/* =======================================
   MOBILE
======================================= */

@media (max-width: 768px) {

  button {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    margin: 0;
    padding: 16px 0;

    border-radius: 0;
    z-index: 999;
  }
  
.booking {
  display: flex;
  flex-direction: column;
}
  
  
  .booking-container {
    display: block;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 120px; /* wichtig wegen fixed button */
   
}
 
  


  .row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
   h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  input,
  textarea {
    font-size: 15px;
    padding: 8px 0;
  }

  label {
    font-size: 10px;
  }

}

 /* =======================================
  FLATOPICKER STYLE CALENDER
======================================= */

.flatpickr-calendar {
  background: #393232 !important;
  border: 0.7px solid #111 !important;
  box-shadow: none !important;
}

.flatpickr-month,
.flatpickr-day {
  color: #fff6d4 !important;
}

.flatpickr-weekday {
color: #F0725C !important;
}

.flatpickr-day {
 color: #fff6d4 !important;
}


.flatpickr-day:hover {
  background: rgba(240, 114, 92, 0.6) !important;
}

.flatpickr-day.selected {
  background: #F0725C !important;
  color: #fff6d4 !important;
}

.flatpickr-monthDropdown-months option,
.flatpickr-yearDropdown-years option {
  background: #fff6d4;
  color: #111;
}

.flatpickr-current-month {
  color: #fff6d4 !important;
}


.flatpickr-input {
  color: #393232 !important;
  font-weight: 700;
  opacity: 0.9;
}


 /* =======================================
  FLATOPICKER STYLE PHONE
======================================= */

.iti {
  width: 100%;
}

/* Input selbst */
.iti input {

  border: none !important;
  border-bottom: 1px solid rgba(17,17,17,0.35) !important;
  background: transparent !important;
}


/* Dropdown Container */
.iti__country-list {
  font-family: "Courier Prime", monospace;
  font-weight: 200;
  font-size: 13px;
  background: #393232 !important;
  border: 0.7px solid rgba(17, 17, 17, 0.15) !important;
  box-shadow: none !important;
}


/* Einzelne Länder */
.iti__country {
  color: #fff6d4;
  font-family: "Courier Prime", monospace;
}

.iti__country:hover {
  color: #F0725C;
  font-family: "Courier Prime", monospace;
  font-size: 13px;

}


/* Hover im Dropdown */
.iti__country:hover {
  background: #111 !important;
}

/* Aktives Land */
.iti__country.iti__active {
  background: #F0725C !important;
  color: #fff6d4 !important;
}

/* Flag Dropdown Button */
.iti__selected-flag {
  background: transparent !important;
  border: none !important;
}

.iti__selected-dial-code {
 color: rgba(17,17,17,0.6);
}


input[type="time"] {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  opacity: 0.6;

  border: none;
  border-bottom: 1px solid #1119;
  background: transparent;
  color: rgba(17,17,17,0.8);

  padding: 10px 0;
}

input[type="time"]:focus {
  border-bottom: 1px solid #111;
  outline: none;
}


input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-clear-button {
  display: none;
}


 /* =======================================
   GLOBAL / INTERACTION LOCK (optional)
======================================= */

img {
  -webkit-user-drag: none;
  user-select: none;
}

