*,
*::before,
*::after {box-sizing: border-box;}

* {margin: 0; padding: 0;}


@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


body {
  font-family: 'Montserrat', sans-serif;
}

.Montserrat {font-family: "Montserrat", sans-serif;}
.Montserrat-thin {font-weight: 100;}
.Montserrat-light {font-weight: 300;}
.Montserrat-regular {font-weight: 400;}
.Montserrat-medium {font-weight: 500;}
.Montserrat-bold {font-weight: 700;}
.Montserrat-black {font-weight: 900;}
.Montserrat-italic {font-style: italic;}
.Montserrat-thin-italic {font-style: italic; font-weight: 100;}
.Montserrat-light-italic {font-style: italic; font-weight: 300;}
.Montserrat-regular-italic {font-style: italic; font-weight: 400;}
.Montserrat-medium-italic {font-style: italic; font-weight: 500;}
.Montserrat-bold-italic {font-style: italic; font-weight: 700;}
.Montserrat-black-italic {font-style: italic; font-weight: 900;}

h1 {color:white; font-size: 2.0em; font-weight: 300; text-align: center;}
h2 {color: black; font-size: 1.25em; font-weight: 300; text-align: center;}
h3 {color: black; font-size: 1.25em; font-weight: 300; text-align: center;}
h4 {color: white; font-size: 1em; font-weight: 300; text-align: center;}
h5, h6 {color: black; font-size: 1em; font-weight: 500; text-align: center;}

p {color: black; font-size: 1em; font-weight: 300;}
li {color:white; font-size: 1em; font-weight: 200; list-style-type: none;}
em {font-style: normal; font-size: 1.0em; font-weight: 300; color: white;}
blockquote {font-style: normal; font-size: 1.0em; font-weight: 300; color: rgb(255, 255, 255);}
cite {font-style:italic; font-size: 1.0em; font-weight: 300; color: white;}



/* wenn ich die textformatierung im jeweiligen container zusätzlich eintrage, dann werden die Eintragungen hier
 für den entsprechenden container trotzdem berücksichtig! Die Eintragungen im Container haben dann keinen Effekt. 
 siehe https://www.w3schools.com/css/css_howto.asp*/

body {
      

    align-items: center;
    background-color: white;
    font-family: "Montserrat", "Roboto", sans-serif; 
    justify-content: center;
    margin: 0;
    text-align: center;  /*die eintragungen im body gelten generell, werden ober überschrieben, wenn ich in den 
    container entsprechende Eintragungen mache. Der eintrag im body gilt dann für den container nicht mehr */
    
  }    

    svg {
      height: 100vh;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: -1;
  }



.banderole {
  color: white;
  font-size: 16px;
  background-color: rgba(19, 3, 51, 0.561);
  padding: 0px;
  opacity: 0.5;
  
}
@media (max-width: 700px) {
  .banderole {
    color: white;
    font-size: 0px;
  }
 }

 /* Mobile Container */
.mobile-container {
  display: flex; 
  justify-content: space-between;
  left: 0;
  padding-left: 60px;
  padding-right: 60px;
  position: absolute;
  right: 0; 
  top: 40px; 
}

/* Header Image */
.header-Bild {
  display: flex;
  justify-content: center;
  filter: brightness(0.9);
  height: 64vh;
  object-fit: cover;
  width: 100%; 
  opacity: 1; /* Anfangs ist das Bild unsichtbar */
  animation: fadeIn 2s ease-in; /* Animation: fadeIn, Dauer 1 Sekunde, sanfter Übergang */
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header-video{
  width: 100vw;
  
  z-index: -1;
}

/* Responsive Logo Image*/
.responsive-img {                
  width:200px;
  z-index: 999;
}

@media (max-width: 480px) {
 .responsive-img {
  width: 150px;
 }
}

/* Hamburger Icon */
.hamburger-icon {
  color: white;
  cursor: pointer;
  font-size: 50px;
  position: fixed;
  right: 50px;
  top: 30px;
  z-index: 1;  
}
/* Side Navigation */
.sidenav {
  background-color: #111;
  height: 55%;
  opacity: 0.9;
  overflow-x: hidden;
  padding-top: 40px;
  position: fixed;
  right: 0;
  top: 0;
  transition: width 0.5s;
  width: 0;
  z-index: 1;
  }
.sidenav a {
  color: #ffffff;
  display: block;
  font-size: 1em;
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  transition: color 0.3s;
}
.sidenav a:hover {
  color: #8de8f0;
}
.sidenav .closebtn {
  font-size: 2em;
  margin-right: 10px;
  position: absolute;
  right: 2px;
  top: 0;
}


.container-wrapper {
  align-items: center;    /* Zentriert die Container horizontal */
  display: flex;
  flex-direction: column; /* Stapelt die Container vertikal */
  justify-content: center; /* Zentriert die Container vertikal */
  left: 50%;              /* Positioniert den Container in der horizontalen Mitte */
  position: absolute;     /* Absolute Positionierung */
  text-align: center;     /* Zentriert den Textinhalt */
  top: 120%;              /* Position des Containers */
  transform: translateX(-50%); /* Nur horizontale Verschiebung */
  width: 100%;            /* Nimmt die volle Breite des Bildschirms ein */
  
}

.headertext-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
  margin-top: 30px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  z-index: 1; 
}

/*------------SPRACHCONTAINER ANFANG----------------------------------------------*/

.sprach-container {
  align-items: center; /* Zentriert den Button auch vertikal */
  display: flex;
  font-size: 14px;
  justify-content: center;
  margin-top: 40px; /* Mehr Abstand zwischen dem Header-Text und dem Button */
  padding-left: 40px;
  padding-right: 40px;
  text-align: center; /* Stellt sicher, dass Text im Button zentriert wird */
  width: 100%; /* Stellt sicher, dass der Container die ganze Breite einnimmt */
}
@media (max-width: 768px) {
  .headertext-container {
    margin-top: 10px;
    max-width: 100%; /* Stellt sicher, dass der Text auf mobilen Geräten nicht zu breit wird */
    padding-left: 20px;
    padding-right: 20px;
  }
  .sprach-container {
    font-size: 16px; /* Etwas größere Schrift auf mobilen Geräten */
    margin-top: 40px; /* Erhöhter Abstand zum Header-Text auf mobilen Geräten */
    max-width: 100%; /* Der Container bleibt innerhalb des Bildschirms */
    padding-left: 20px;
    padding-right: 20px;
  }
  .sprach-container .lang-btn {
    font-size: 12px;
    margin-top: 20px; /* Abstand zum Text */
    max-width: 140px; /* Maximalbreite für den Button */
    padding: 10px 20px; /* Polsterung im Button */
    width: auto; /* Verhindert, dass der Button die volle Breite einnimmt */
  }
}
/* Sprachumschalter-Stile */
.language-switcher {
  display: inline-block;
  position: absolute;
  }
.lang-btn {
  border: 1px solid #0073e6;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  background-color: #0073e6;
  font-size: 1.22em;
  padding: 10px 20px;
  position: relative;
  transition: background-color 0.3s, opacity 0.3s; /* Übergang für Hover-Effekt */
  }
.lang-btn:hover {
  background-color: #f09813;
  border-color: transparent; /* Entfernt den Rand im Hover */
  overflow-x: hidden;
  transition: height 0.5s;
}
.dropdown {
  border-radius: 20px 20px 20px 20px;
  margin-top: 0px;
  min-width: 160px;
  opacity: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .dropdown {
    min-width: 127px;
  }
}
.language-switcher:hover .dropdown {
  background-color: #111;
  display: block;
  opacity: 0.9; 
  transition: background-color 1.9s ease, opacity 0.9s ease;
}
.dropdown a {
  color: #818181;
  display: block;
  font-size: 1em;  
  padding: 10px;
  text-decoration: none;
  transition: color 0.3s;
}
.dropdown a:hover {
  color: #f1f1f1;
}
.textbox{
  color: white;
  display: flex;
  font-size: 1em;
  font-weight:100; 
  justify-content: center;
  line-height: 2;
  margin: 20px 20px 80px 20px;
  text-align:center;
}
.headertext-container{
  font-size: 14px;
}
/* Schriftattribute der einzelnen Sprachen */
.dropdown a {
  font-size: 0.8em;
  margin: 0px;
  padding: 10px;
  text-align: center;
  
}
/* Hintergrundattribute Fläche hinter den Sprachen */
.dropdown {
  border-radius: 20px;
}
/*------------------------------SPRACHCONTAINER ENDE--------------------------------*/

/*----------------------------------------Kalender ANFANG------------------------------*/

/* Verblasst die nicht auswählbaren Tage im Date Picker */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
}
/*----------------------------------------Kalender ENDE--------------------------------*/



/*----------------------------------------CARDS ANFANG------------------------------*/
/* Hauptcontainer der Karte */
.card {
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 10px auto;
  max-width: 1000px;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
}
.card:hover {
  transform: translateY(-5px);
}
.card-image img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
  border-radius:10px 10px 0px 0px;
}
.card-content {
  background-color: #fff;
  padding: 16px;
  text-align: center;
   
}
.card-title {
  color: #333;
  font-size: 1.25rem;
  margin: 0;  
}
.card-description {
  color: #666;
  font-size: 1rem;
  margin: 10px 0 20px;
}
/* Schaltfläche */
.card-btn {
  background-color: #0073e6;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.card-btn:hover {
  background-color: #005bb5;
}
/* Hauptcontainer für die Karten */
.card-container {
  display: grid;
  gap: 10px;
  margin-top: 80px;
  
  
}
@media (max-width: 767px) {
  .card-container {
    grid-template-columns: 1fr;
    margin-left: 4px;
    margin-right: 4px;
  }
    .card{
    width: 95%;
  }
}
@media (min-width: 768px) {
  .card-container {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-left: 17%;
    margin-right: 17%;
  } 
}
/* viespaltig bei größeren Bildschirmen */
@media (min-width: 1180px) {
  .card-container {
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: 17%;
    margin-right: 17%;
  } 
}
/*---------------------------------CARDS ENDE-----------------------------------*/

/* Entfernt die Aufzählungspunkte aus den Listen */
.text-container ul {
  margin: 0; /* Entfernt den äußeren Abstand */
  list-style-type: none; /* Entfernt die Aufzählungspunkte */
  padding-left: 0; /* Entfernt den linken Abstand */  
}
.text-container li {
  margin-bottom: 10px; /* Optional: Fügt Abstand zwischen den Listenelementen hinzu */
}

/* Zoom-In Animation*/
@keyframes zoomIn {
  from {
    opacity: 0;  
    transform: scale(0.5);
  }
  to {
    opacity: 1;  
    transform: scale(1);
  }
} 

/* Einmalige Animation auf die Textelemente*/
.headertext-container h1, .headertext-container p {
  animation: zoomIn 2.0s ease-out;
}

.textshadowbox {
  background-color: #374477d4;
  color: white;
  border-radius: 10px;
  max-width: 1000px;
  padding: 20px;
  text-align: center;
  
  
}


/*----------------------------- Anfang grid Bootstypen-------------------------------*/

.grid-container {
  display: grid;
  gap: 4px;
  grid-template-columns:repeat(2, 50%); /* Jedes Item nimmt die volle Breite in einer Zeile */
  list-style-type: none; /* Entfernt die Aufzählungspunkte */
  margin: 0 auto;
  margin-left: 25%;
  margin-right: 25%;
  width: 50%;
 
}
.grid-item {
  background-color: #374477d4;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center; /* Stellt sicher, dass alles im Item linksbündig ist */
}
.grid-item h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
}
.grid-item ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
  }
.grid-item ul li {
  color: white;
  font-size: 1em;
  list-style-type: none;
  margin-bottom: 8px;
  padding: 5px;
}
@media (max-width: 1080px) {
  .grid-container {
    grid-template-columns: 1fr;
    margin: 0 auto;
    width: 95%;
    
  }
  .textbox{
    margin-left: 12px;
    margin-right: 12px;
  }
  .grid-item ul{
    margin-left: 1px;
    margin-right: 1px;
  }
  .textshadowbox{
    margin-left: 2px;
    margin-right: 2px; 
  }
  .grid-item{
    width: 99%;
    margin: 0 auto;
  }
}


/*-----------------------------Ende grid bootstypen------------------------------ */

html {
  scroll-behavior: smooth;
}

.links {
  bottom: 20px;
  font-size: 18px;
  position: fixed;
  right: 20px;
}

a {
  color: black;
  margin-left: 1em;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a img.icon {
  display: inline-block;
  height: 1em;
  margin: 0 0 -0.1em 0.3em;
}

/*--------------------------CARDS BOOTE ANFANG-------------------------------------------*/

/* Hauptcontainer der Karte */
.card-boats {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 8px 8px 8px 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  }

.card:hover {
  transform: translateY(-5px);
}
.card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.card-content {
  padding: 16px;
  text-align: center;
  background-color: #fff;
}
.card-title {
  font-size: 1.25rem;
  margin: 0;
  color: #333;
}
.card-description {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 20px;
}
/* Schaltfläche */
.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.card-btn:hover {
  background-color: #f09813;;
}
/* Hauptcontainer für die Karten */
.card-container-boats {
  display: grid;
  gap: 20px;
}
@media (max-width: 980px) {
  .card-container-boats {
    grid-template-columns: 1fr;
    margin-left: 4px;
    margin-right: 4px;
  }
}

.card{
    width: 95%;
  }
  
  
/* zweipaltig bei größeren Bildschirmen */
  @media (min-width: 981px) {
    .card-container-boats {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-left: 17%;
      margin-right: 17%;
    } 
  }
  
  /*----------------------------CARDS BOOTE ENDE-----------------------------------*/

  .back-btn {
    color: black;
    background-color: white;
    border: 1px solid black;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  .back-btn:hover {
    color: black;
    border: 1px solid red;
  }

/* zum einfaden aller Bootskarten */
.fade-in {
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 2s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/*whatapp button zentrierung*/
.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 80px; 
}


.video-container {
  display: flex;
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  height: 56%; /* Container nimmt die volle Höhe des Viewports ein */
  width: 100%;
  margin: 0; /* Entfernt alle Ränder des Containers */
  left:0%; /* Entfernt alle Innenabstände des Containers */
  right:0%;
  position: relative;
  overflow: hidden; /* Verhindert, dass das Video über den Container hinaus geht */
  border-radius: 0px;
}

/* Video Styling */
#my-video {
  width: 70%;
  height: 70%;
  object-fit: cover; /* Das Video füllt den Container aus, ohne das Seitenverhältnis zu verändern */
  margin: 0; /* Entfernt Ränder des Videos */
  padding: 0; /* Entfernt Innenabstände des Videos */
  border-radius: 10px;
}

@media screen and (max-width: 500px) {
  .video-container{ 
    height: 100%; /* Container nimmt die volle Höhe des Viewports ein */
    width: 100%;
    left:0%; /* Entfernt alle Innenabstände des Containers */
  right: 0%;
  }
}


/*-----------------Schaltflächen auf den kacheln------------------------*/

.more-info-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073e6;
  border-color: #0073e3;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s;
  cursor: pointer;
}
.more-info-btn:hover {
  background-color: #f09813;;
}

/*-----------------Schaltflächen auf den Kacheln---- ENDE---------------*/


/*------------ANFANG-----------Gesamtformular css-------------------------------------------*/


#boatInquiryForm {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 100%;
  max-width: 500px;  /* Maximal breite */
  max-height: 98vh;  /* Maximale Höhe */
  overflow-y: auto;  /* Ermöglicht das Scrollen, wenn der Inhalt zu groß ist */
}
@media screen and (max-width: 780px) {
  #boatInquiryForm {
    font-size: 14px;
    max-height:96vh; /* Höhe auf 100% der Viewport-Höhe */
    width: 100%;
    overflow-y: auto; /* Ermöglicht das Scrollen, wenn der Inhalt zu groß wird */
  }
}
#overlay {
  display: none; /* Standardmäßig ausgeblendet */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.close-form-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  z-index: 1010; /* Damit es immer über dem Formular sichtbar bleibt */
}
.close-form-btn:hover {
  color: rgb(217, 187, 34); /* Farbe beim Hover */
}
/* Open Form Button Styling */
/*quick iquiri button*/
.open-quick-form-btn {
  width: 200px;
  padding: 20px 20px;
  background-color: #f09813;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.open-quick-form-btn:hover {
  background-color: #0073e6;
}
/* Quick Inquiry Popup Styling */
/* Popup Formular CSS */
.popup-quick-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 100%;
  max-width: 500px;  /* Maximal breite */
  max-height: 98vh;  /* Maximale Höhe */
  overflow-y: auto;  /* Ermöglicht das Scrollen, wenn der Inhalt zu groß ist */
}
/* Form Styling */
/*Überschrift*/
.popup-quick-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}
/*Überschrift der  Felder*/
.popup-quick-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
/*Rahmenfarbe Kalender, emial, message*/
.popup-quick-form input, 
.popup-quick-form select, 
.popup-quick-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
/*Höhe des message-Eingabefeldes*/
.popup-quick-form textarea {
  height: 200px;
}

/* Select Option Buttons */
.popup-quick-form button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  background-color: rgb(21, 144, 226);
  color:white;
}
.popup-quick-form button:hover {
  background-color: #f09813;
}
  /*Hintergrundfarbe der Dropdownliste, wenn aufgeklappt*/
.dropdown-content {
  display: none;
  position: absolute;
  width: 92%;
  background-color: rgb(255, 255, 255);
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}
/*Schriftgrösse Optionen in dropdownliste)*/
.dropdown-item {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}
/*hooverbalkenfarbe im dropdownfeld*/
.dropdown-item:hover {
  background-color: #f0f0f0;
}
.dropdown-btn.active + .dropdown-content {
  display: block;
}
.popup-quick-form button[type="submit"] {
  background-color: rgb(21, 144, 226);
  color: white;
  border: none;
}
.popup-quick-form button[type="submit"]:hover {
  background-color: #f09813;
}
.popup-quick-form button[type="button"] {
  background-color: #f44336;
  color: white;
  border: none;
}
.popup-quick-form button[type="button"]:hover {
  background-color: #f09813;
}

/*--------------------ENDE------------Gesamtformular--------------------------*/

/*--------------------ANFANG------------AKKORDION--------------------------*/

.accordion {
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 50%;
  font-size: 15px;
  transition: 0.4s;
  margin-left:25%;
  margin-right:25%;
  background-color: #374477d4;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left; /* Stellt sicher, dass alles im Item linksbündig ist */
}

.active, .accordion:hover {
  background-color: lightblue; 
  color: white;
}

.panel {
  padding: 10px 18px;
  display: none;
  background-color: white;
  overflow: hidden;
  text-align: left;
  width: 50%;
  margin-left:25%;
  margin-right:25%;
  font-size: 15px;
  
}

@media (max-width: 1080px){
.accordion {
  margin-left: 1px;
  margin-right: 1px;
  width: 95%;
}
}

@media (max-width: 1080px){
  .panel {
    margin-left: 1px;
    margin-right: 1px;
    width: 95%;
  
  }
  }
/*--------------------ENDE------------AKKORDION--------------------------*/

/*---------------------cookierbanner---------------------*/

/* Grundlegende Stile für das Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: white;
}

.cookie-banner a {
  color: #4CAF50;
  text-decoration: underline;
  margin-left: 10px;
}

.cookie-actions button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.cookie-actions button:hover {
  background-color: #45a049;
}

/* Popup-Stile */
.cookie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 1100;
  display: none;
}

.popup-content {
  padding: 20px;
  text-align: left;
}

.popup-content h2 {
  margin-top: 0;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cookie-category h3 {
  font-size: 16px;
  margin: 10px 0;
}

.cookie-category p {
  font-size: 14px;
  margin: 5px 0;
}

.cookie-category label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 10px 0;
}

.popup-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.popup-actions button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.popup-actions button:hover {
  background-color: #45a049;
}

/* Hintergrundüberlagerung für das Popup */
.cookie-popup::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Medienanfragen für Responsivität */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions button {
    width: 100%;
    margin: 5px 0;
  }

  .cookie-popup {
    width: 95%;
  }
}


/*-------------Flaggen--------*/

.language-selector {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
  width: 200px; /* Einheitliche Breite für Button und Dropdown */
}

.dropdown-toggle {
  background: none;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #f9f9f9;
  width: 100%; /* Button füllt den Container vollständig aus */
  text-align: left;
  box-sizing: border-box; /* Padding wird in der Breite berücksichtigt */
  opacity: 0.8;
}

.dropdown-toggle:hover {
  background-color: #e9e9e9;
  opacity: 0.8;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 1000;
  border-radius: 4px;
  width: 100%; /* Dropdown passt sich an den Button an */
  opacity: 0.9;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.dropdown-menu li a .flag {
  margin-right: 10px;
  font-size: 18px;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

.language-selector:hover .dropdown-menu {
  display: block;
}

 /* anfang -----------------------------footer--------------------------------------------- */




/* Grundregel für Text- und Überschriftentags innerhalb von .footer-item */
.footer-item p,
.footer-item h1,
.footer-item h2,
.footer-item h3,
.footer-item h4,
.footer-item h5,
.footer-item h6,
.footer-contact p,
.footer-contact h1,
.footer-contact h2,
.footer-contact h3,
.footer-contact h4,
.footer-contact h5,
.footer-contact h6,
.footer-links p,
.footer-links h1,
.footer-links h2,
.footer-links h3,
.footer-links h4,
.footer-links h5,
.footer-links h6,
.footer-partner p,
.footer-partner h1,
.footer-partner h2,
.footer-partner h3,
.footer-partner h4,
.footer-partner h5,
.footer-partner h6 {
  color: #fff; /* Textfarbe auf Weiß setzen */
}


/* Footer Grundstil */
.footer {
  background-color: #93c2e3; /* Footer hintergrund */
 }
/* Footer Container mit CSS Grid */
.footer-container {
  display:grid;
  justify-content: space-between;
  align-content: center;
  grid-template-columns: 25% 20% 40% 15%;
  gap: 1px;
  max-width: 95%; /* Begrenzung der maximalen Breite */
  margin: 0 auto; /* Zentrierung des Containers */
}
/* Styling für die einzelnen Grid-Items im Footer */
.footer-item {
  background-color: #6b5151;
  color: #fff; /* Standardfarbe für Text innerhalb von .footer-item */
  border-radius: 5px;
  margin: 20px 0;
  padding: 10px;
}
.footer-contact {
  display: flex;
  gap: 1px;
  background-color: #6b5151;
  text-align: left;
  padding: 12px;
  box-sizing: border-box; /* Für korrektes Padding */
  width: 100%; /* Nimmt gesamte Breite des Grid-Items ein */  
}
.social-icons {
  display: flex; 
  justify-content: center; 
  gap: 1px; 
}
.social-icon {
  display: flex; 
  justify-content: center;
  padding-top: 40px; 
  gap: 1px; 
  font-size: 20px; /* Icon-Größe */
  color: #fff; /* Weißer Text (für die Icons) */
  text-decoration: none; /* Entfernt Unterstreichung */
  transition: color 0.3s ease; /* Sanfter Übergang für Hover-Effekte */
}
.social-icon:hover {
  color: #6b5151; /* Farbe ändern, wenn man mit der Maus über das Icon fährt */
}
.footer-partner {
  display: flex;
  justify-content: center; /* Zentriert die logos */
  flex-direction: row;
  gap: 1px; /* Abstand zwischen den logos */
  background-color: #6b5151;
  text-align: left;
  padding: 12px;
}
/* Spezifische Regel für Links innerhalb von .footer-links */
.footer-links {
  display: flex;
  flex-direction: column; /* Links untereinander anordnen */
  align-items: center; /* Links zentrieren */
  gap: 10px; /* Abstand zwischen den Links */
  background-color: #6b5151;
  padding: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
}
.footer-links a:hover {
  color: #6e6969; /* Farbe für Links im Hover-Zustand (optional) */
}
@media (max-width: 1200px) {
  .footer-container {
      grid-template-columns: 95vw; /* Alle Items untereinander bei kleinen Bildschirmen */
  }
}
@media (max-width: 1200px) {
  .footer-item {
    margin: 1px;
  }
}

/* ende footer */


.container-faq {
text-align: left;
width: 90%;
margin-left: 40px;
}

@media (max-width: 1200px) {
  .container-faq {
    margin: 10px;
    
  }
}

.parallax {
  /* Höhe des Containers */
  height: 500px;

  /* Hintergrundbild */
  background-image: url(/assets/paralax_ibizadaysailing.webp);
  
  /* Parallax-Effekt */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Optional: Stil drumherum */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.content {
  padding: 20px;
  background-color: white;
  text-align: center;
}






.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 15px;
  padding: 20px;
  align-items: center;
}

.gallery-item {
  
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  width: 90%;
  max-width: 1200px;
}

.video-item video {
 
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/*--------------------DESIGN FÜR DAS BOOT INQUIRI FORMULAR------------------*/
  /* Abstände zwischen Formularfeldern */
#boatInquiryForm label,
#boatInquiryForm input,
#boatInquiryForm select,
#boatInquiryForm textarea,
#boatInquiryForm button {
  display: block; /* Elemente untereinander anordnen */
  width: 100%; /* Gleiche Breite für Eingabefelder */
  margin-bottom: 20px; /* Abstand zwischen den Feldern */
}

/* Eingabefelder: größere Höhe */
#boatInquiryForm input,
#boatInquiryForm select,
#boatInquiryForm textarea {
  height: 40px; /* Erhöht die Höhe der Felder */
  padding: 10px; /* Fügt Innenabstand hinzu */
  font-size: 14px; /* Optional: größere Schrift für bessere Lesbarkeit */
  box-sizing: border-box; /* Innenabstände berücksichtigen */
}

/* Buttons: spezielle Ausrichtung */
#boatInquiryForm button {
  width: auto; /* Buttons nicht über die gesamte Breite */
  margin-top: 10px; /* Optionaler Abstand oberhalb */
  padding: 10px 20px; /* Größe der Buttons anpassen */
}

/*Höhe des message-Eingabefeldes*/
#boatInquiryForm textarea {
  height: 200px;
}


/*Rahmenfarbe Kalender, emial, message*/
#boatInquiryForm input, 
#boatInquiryForm select, 
#boatInquiryForm textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}


.hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* Honeypot-Feld unsichtbar machen */
#honeypot {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}