/* Allgemein */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

/* Navigation */
nav {
  background-color: #000000;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  padding: 0px 40px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  flex: 1;
  display: flex;
  align-items: center;
}

.menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
}

.menu a:hover {
  color: rgb(134, 134, 134);
}

.nav-right {
  flex: 1;
}

/* Slider */
.container {
  padding: 2rem;
}

.slider-wrapper {
  position: relative;
  max-width: 50%;
  max-height: 500%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
}

.slider {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: hidden;
  border-radius: 10px;
}

.slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex: 0 0 100%;
}

/* Navigationspunkte als Overlay */
.slider-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #aaa;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.slider-nav button:hover {
  background-color: #000000;
  transform: scale(1.5);
}

/* Inhalte */
/* Home Bereich Layout */
.home-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.home-opening-hours {
  flex: 1;
  min-width: 400px;
}
.home-opening-hours h3 {
  text-align: center;
}



.home-opening-hours ul {
  list-style: none;
   align-items:center;
   text-align: center;

}

.home-opening-hours li {
  font-size: 25px;
  margin-bottom: 10px;
  ;
}

.home-description {
  flex: 2;
  min-width: 550px;
}

.home-description p {
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;

}

  
 


.section {
  
  padding: 40px 20px;
  background-color: #fff;
  align-items: center;
   gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 60px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-bottom: 10px;
  padding: 40px 60px;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

/* Bild-Text-Container im About-Bereich */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px; /* Abstand zwischen Bild und Text */
}

/* Bild */
.about-image {
  width: 35%;
  height: auto;
  position: relative;
}

/* Bild */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Bildunterschrift */
.about-image span {
  position: absolute;
  bottom: 10px; /* Unterschrift näher am Bild */
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.6); /* Hintergrund für bessere Lesbarkeit */
  padding: 5px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease; /* Weicher Übergang */
}

.about-image:hover span {
  opacity: 1; /* Zeigt die Unterschrift bei Hover an */
}

/* Textbereich */
.about-text {
  flex: 1;
  max-width: 650px;
  padding-left: 20px;
  position:relative;
}


  
  


/* Footer allgemeines Layout */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer h1 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: left;
}

/* Grid für Impressumseinträge */
.impressum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px 50px;
  justify-items: start;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.impressum-grid div {
  font-size: 16px;
  line-height: 1.6;
}
.haftung {
  margin-top: 40px;
  max-width: 9000px;
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  color: #dddddd;
  line-height: 1.6;
  text-align: left;
}
.signature {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.signature img {
  width: 200px; /* oder kleiner, je nach Bedarf */
  height: auto;
  opacity: 0.9;
  position: relative;
  z-index: 0;
  pointer-events: none; /* Bild ist nicht interaktiv */
  margin-top: 0px;
}

h3 {
  font-size: 30px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-bottom: 10px;
  
}
.vertical-line {
  width: 20px;
  background-color: #000;
  height: 80%;
  align-self: center;
}
