* {
  padding: 0px;
  margin: 0;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
html {
  overflow-y: scroll;
}
body {
    overflow-x: hidden;
}
.main {
  padding: 15px;
	overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: rgb(61, 61, 61);
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
nav li {
  height: 50px;
}
nav a {
  color: rgb(61, 61, 61);
  height: 100%;
  padding: 0 30px;
  text-align: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  display: flex;
}
nav a:hover {
  color: grey;
}
nav img {
  display: block; /* Entfernt Inline-Space */
  margin: 0; /* Entfernt zusätzlichen Margin */
  height: auto; /* Skaliert proportional */
  width: 150px;
}
.searchbar {
  font-size: 20px;
  width: 150px;
  border-radius: 20px;
  padding: 5px;
  padding-left: 10px;
  border: 1px solid black; /* Border explizit angeben */
  background: white; /* Setze den Hintergrund */
  box-shadow: none; /* Entferne jeglichen Schatten */
  appearance: none; /* Browser-spezifische Stile deaktivieren */
  border-color: grey;
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  box-shadow: -10px 0 10px rgb(218, 218, 218);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  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;
}
.gallerie {
  /**display: grid;
  place-items: center;
  padding-bottom: 20px;**/

  width: 100%; /* oder eine feste Breite */
  height: 300px; /* feste Höhe */
  background-size: cover; /* Bild füllt den Container aus */
  background-position: center; /* zentriert das Bild */
  background-repeat: no-repeat; /* Wiederholung deaktivieren */
  overflow: hidden; /* Überlauf abschneiden */
  min-height: 1000px;
}
.copyright {
  position: fixed; /* Fixiert den Footer am unteren Rand */
  bottom: 0; /* Plaziert ihn am unteren Rand des Viewports */
  left: 0;
  width: 100%;
  background-color: rgba(236, 236, 236, 0.50); /* Deine gewünschte Hintergrundfarbe */
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  font-size: 10px;
  color: rgb(124, 124, 124);
}

.titlepage {
  display: grid;
  place-items: center;
}
.title {
  font-size: 36px;
  margin-bottom: 40px;
}
.standort iframe {
  width: 80vw;
  height: 80vw;
  max-width: 700px;
  max-height: 400px;
  padding: 20px;
}
.container {
  display: grid;
  gap: 20px; /* Abstand zwischen den beiden Containern */
}
.left {
  flex: 1; /* Erstellt gleichmäßigen Anteil auf der linken Seite */
}
.right {
  flex: 1; /* Erstellt größeren Anteil auf der rechten Seite */
}
.image {
  width: 100%; /* Bildgröße anpassen */
  height: auto; /* hält das Bild proportional */
}
.yachtsHeader {
  font-size: 30px;
  font-weight: 500;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.table th {
  background-color: #f2f2f2;
}
.text-container {
	font-size: 20px;
    width: 60%;
    margin: 0 auto; /* Zentriert innerhalb des Containers */
    word-wrap: break-word;
    text-align: center; /* Text zentrieren */
}
.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
	margin: 0;
  width: 80%;
}
.image{
	grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.grid-content {
	grid-column: 2 / -1;
  grid-row: 1 / 2;
  padding-left: 30px;
}
.booking {
width: 80vw;
max-width: 1000px;
padding-top: 20px;
}
@media(max-width: 904px) {
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
	.text-container {
		width: 90%;
		font-size: 16px;
	}
  .image {
    grid-row: 1 / 2;
    grid-column: 1 / -1;
  }
  .grid-content {
    grid-row: 2 / -1;
    grid-column: 1 / -1;
    padding: 0px;
    padding-top: 15px;
  }
}

/**footer {
  position: relative;
  padding: 10px;
}**/

.footer {
  background-color: #f3f3f3;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
}

.footer-content {
  margin-bottom: 10px;
}

.footer-link {
  color: #979797;
  text-decoration: none;
  margin: 0 10px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 0.9em;
  margin-top: 10px;
  color: #ccc;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Stellt sicher, dass der Wrapper die volle Höhe des Viewports einnimmt */
}

.content {
  flex: 1; /* Füllt den verfügbaren Platz zwischen Header und Footer */
}

.pricing {
  color: rgb(61, 61, 61);
  display: block;
  padding-bottom: 10px;
}

.imageWithText {
  position: relative;
  text-align: center;
  color: white;
}
/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered p {
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Schatteneffekt */
  letter-spacing: -2px;
  line-height: 0.9;
}

.input-group-text {
  width: 160px; /* Passe die Breite nach Bedarf an */
  text-align: center; /* Zentriert den Text */
  display: inline-block;
}