@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/*Generelles*/
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-size: 15px;
}

:root{
  --base-color: #02417c;
}

input, select{
  font-family: 'Poppins', 'sans-serif';
  font-size: 15px;
}

/*Hübscher Container*/
.container{
	background-color: rgb(241, 241, 241);
	border-radius: 12px;
	box-shadow: 5px 5px 5px rgb(211, 211, 211);
	padding: 40px 60px;
  margin: 50px auto;
  max-width: 1500px;
}

/*Feedback Schrift*/
.feedback{
  font-style: italic;
}


/*Navbar Styling*/
#navbar{
	display: flex;
	align-items: center;
	background-color: var(--base-color);
	padding: 30px 50px;
	justify-content: space-between;
}

.bullauge-container{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.bullauge-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#navbar-links{
	display: flex;
	list-style: none;
}

.links{
  position: relative;
  cursor: pointer;
  font-size: 17px;
  color: currentColor;
  text-decoration: none;
	color: white;
}

.links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.links:hover::after {
  width: 100%;
}


.links.active::after {
  width: 100%;
}


/*Booking Button*/
.booking-btn {
  /*Button immer unten halten*/
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 1000;

  /*In Element ein FLexelement bauen*/
  display: flex;
  align-items: center;
  gap: 12px;

  height: 70px;
  width: 70px;
  padding: 0 16px;
  overflow: hidden;

  background-color: #01325f;
  color: white;
  text-decoration: none;
  border-radius: 50px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  transition: width 0.35s ease, background-color 0.3s ease;
}

/* Hover → fährt aus */
.booking-btn:hover {
  width: 220px;
  background-color: #014a8f;
}

/* Plus Icon */
.booking-btn .icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 25px;
}

/* Text versteckt */
.booking-btn .text {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Text erscheint */
.booking-btn:hover .text {
  opacity: 1;
  transform: translateX(0);
}


/*Footer*/
.footer{
  background-color: var(--base-color);
  color: white;
  padding: 0px 30px 10px 30px;
  margin-top: 70px;
}

.footer-mainbox{
  padding: 40px 0 0 0;
  display: flex;
  justify-content: space-around;
}

.footer-mainbox div{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer-impressum{
  text-decoration: none;
  color: currentColor;
}

#footer-copyright{
  text-align: center;
}

#instagram-logo, #instagram-logo:visited{
  height: 25px;
  width: 25px;
  filter: invert(1)
}

#quicklinks{
  display: flex;
  flex-direction: row;
}

#instagram-link{
  text-decoration: none;
  color: white;
}

