/*Styling von Preisen und Verfügbarkeiten*/

/*Fontface von Kalenderschrift*/
@font-face {
  font-family: 'calendar';
  src: url('/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}



/*Preisiste*/
.booking-zeiten{
	display: flex;
	justify-content: space-between;
}

.booking-zeiten div{
	display: flex;
	flex-direction: column;
}

.booking-zeiten div span{
	margin-top: 30px;
}

/*Auswahl der Daten*/
.categories{
	display: flex;
  flex-direction: row;
	gap: 25px;
	margin-top: 35px;
	align-items: center;
}

/*Inputs und Selects stylen*/
input, select{
  padding: 10px 14px;
  border-radius: 12px;
  background-color: white;
  color: #333;
  cursor: pointer;
  border: 1px solid grey;
} 

input:focus, select:focus, #notizen:focus{
  outline: none;
  border-color: #6f97c4;
  box-shadow: 0 0 0 3px rgba(111, 151, 196, 0.25);
}

#buchungsdaten, #zeitfenster{
  margin-top: 60px;
}

#notizen{
  width: 100%;
  min-height: 120px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 17px;
  border-radius: 12px;
  border: 1px solid #ccc;
  resize: vertical;
}



/*Buchungskalender einbinden*/
/*Kalender Wrapper*/
.calendar-wrapper {
  display: flex;
  gap: 30px;
  font-family: 'calendar', sans-serif;
	border-radius: 12px;
	margin-top: 30px;
}

/*Kalender Flexbox*/
.calendar{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}


/*Header des Ganzen mit Dates und Co*/
.header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 10px 0px;
}

/*Monat mit Jahr Aufgabe*/
.monthYear {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  transition: 0.2s ease;
}

.header button:first-child {
  margin-right: auto;
}

.header button:last-child {
  margin-left: auto;
}

/*Vor und zurück Buttons*/
.header button{
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/*Einzelne Wochentage Mo-FR*/
.days{
  display: grid;
  grid-template-columns: repeat(7,1fr);
}

/*Montag bis Freitag*/
.day {
  text-align: center;
  padding: 5px;
  color: #999fa6;
  font-weight: 500;
}



/*Grid mit allen Days*/
.dates-right, .dates-left{
  display: grid;
  grid-template-columns: repeat(7,1fr);
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/*Date Kategorie*/
.date {
  text-align: center;
  padding: 6px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: 0.2s;
}

.date:hover, .date.active{
  background-color: #ff5869;
  color: #fff;
}

/*Vormonat Klasse*/
.prev-month, .next-month{
  color: #aaa;
  opacity: 0.6s;
}

/*Reset Time*/
.reset-time{
  display: flex;
  align-items: center;
  gap: 30px;
}

.reset-time button{
  font-family: inherit;
  background-color: #6f97c4;
  color: white;
  border: none;
  padding: 8px 30px;
  border-radius: 12px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.reset-time button:hover{
  background-color: white;
  color: #6f97c4;
  transform: scale(1.05);
}

/*Events in Kalendern*/
.belegt {
  text-decoration: line-through;
  color: rgb(180, 180, 180);
}

.belegt:hover{
  background-color: none;
}

.heute {
  border: 2px solid black;
}

.selected{
  background-color: #75b0e0;
}

/*Datumscontainer*/
.date-container{
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 15px 55px 15px 15px;
  border-radius: 12px;

}

#checkinout{
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-size: 15px;
}

#rechnungsbox{
  background-color: white;
  border-radius: 12px;
  
}

#gesamtpreis, #einzelheitenpreis{
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 15px 15px;
}

#einzelheitenpreis{
  border-bottom: solid 1px #333;
}

#gesamtpreis{
  font-weight: bold;
}


/*Eingabe Container*/
.inputformcontainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#bookingform{
  display: flex;
  gap: 50px;
  max-width: 100%;
}

#rightside{
  display: flex;
  flex-direction: column;
  gap: 30px;
}



/*Button absenden*/
#anfrage-button{
	margin-top: 50px;
}

#anfrage-button button{
	background-color: #6f97c4;
	color: white;
	font-weight: bold;
	border: none;
	border-radius: 12px;
	padding: 8px;
	font-size: 18px;
	cursor: pointer;
}


