body {
  font-family: 'Franklin Gothic Medium';
  color: blue;
  font-size: 30;
  text-align: center; /* Zentriere den Text */
  letter-spacing: 2px; /* Füge Platz zwischen den Wörtern hinzu */
  margin: 0;
}
.allgemein {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}


.image-container {
  background-image: url('../pictures/akro.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px; /* Platz für Text */
}
/* Das Bild nimmt den gesamten Hintergrund ein */
.full-width-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Bild im Hintergrund */
}

.home-button {
  margin-right: 20px;
  transition: 0.2s;
}

.home-button:hover {
  cursor: pointer;
  transform: scaleY(1.1) scaleX(1.1);
  background-color: transparent;
}
.home-button-link:hover {
  cursor: pointer;
  background-color: transparent;
}

.innerNavbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  position: fixed; /* Fixiere die Navigationsleiste */
  background-color: rgba(255, 255, 255, 0.15);
  width: 100%;
  height: 50px;
  margin-top: 38px;
}

.centered-image {
  width: 50%; /* Behalte die gewünschte Breite bei */
  position: absolute; /* Positioniere das Bild absolut */
  top: 50%; /* Positioniere es vertikal in der Mitte */
  left: 50%; /* Positioniere es horizontal in der Mitte */
  transform: translate(-50%, -50%); /* Zentriere das Bild */
  z-index: 5; /* Setze einen höheren z-index für den Vordergrund */
}

.navbar a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
  color: rgb(24, 24, 24);
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  width: 100%;
  transition: 0.15s;
}
.navbar a:hover {
  color: rgb(1, 1, 1);
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}


/* Zentrierter Inhalt auf dem Bild */
.centered-content {
  position: absolute;
  top: 40%; /* Stelle sicher, dass die gesamte Sektion höher ist */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Inhalt im Vordergrund */
  color: white; /* Textfarbe für bessere Lesbarkeit */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Schatten für besseren Kontrast */
}

@keyframes slideIn {
  0% {
    transform: translate(-50%, 0); /* Startposition */
    opacity: 0; /* Unsichtbar zu Beginn */
  }
  100% {
    transform: translate(-50%, -50%); /* Endposition */
    opacity: 1; /* Voll sichtbar */
  }
}
.datenschutz {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;

  max-width: 1200px;
  width: 90%;
  max-height: 70vh;
  overflow-y: scroll;

  /* Scrollbar verstecken */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.datenschutz::-webkit-scrollbar {
  display: none; /* Chrome, Safari und Opera */
}
/* Stil für die Überschrift */
.news-head {
  position: absolute;
  top: 10%; /* Stelle sicher, dass die gesamte Sektion höher ist */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Inhalt im Vordergrund */
  color: white; /* Textfarbe für bessere Lesbarkeit */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Schatten für besseren Kontrast */
  /* Animation hinzufügen */
  animation: slideIn 1s ease-out forwards; /* Dauer 1s, easing und forwards */
}
.news-head2 {
  position: absolute;
  top: 30%; /* Stelle sicher, dass die gesamte Sektion höher ist */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Inhalt im Vordergrund */
  color: white; /* Textfarbe für bessere Lesbarkeit */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Schatten für besseren Kontrast */
  /* Animation hinzufügen */
  animation: slideIn 1s ease-out forwards; /* Dauer 1s, easing und forwards */
}
.news-head2 p {
  margin-top: 20px; /* Abstand zwischen Titel und Text */
  font-size: 1em; /* Schriftgröße */
  color: white; /* Schriftfarbe */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Schatten für besseren Kontrast */
}
.news-head p {
  margin-top: 20px; /* Abstand zwischen Titel und Text */
  font-size: 1em; /* Schriftgröße */
  color: white; /* Schriftfarbe */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Schatten für besseren Kontrast */
}
.border {
  border: 2px solid rgba(255, 255, 255, 0.5); /* Weiße, halbtransparente Border */
  border-radius: 10px; /* Abgerundete Ecken */
  padding: 20px; /* Innenabstand, um den Text von der Border abzuhalten */
  background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund für den Text */
  width: 1000px;
  margin: 0 auto; /* Zentriert den Container horizontal */
  position: absolute; /* Damit der Container über dem Hintergrundbild positioniert werden kann */
  top: 170%; /* Vertikale Position */
  left: 50%; /* Horizontale Position */
  transform: translate(-50%, -50%); /* Zentriert den Container */
  z-index: 2; /* Stelle sicher, dass es im Vordergrund ist */
}

/* Stil für Überschrift */
h1 {
  font-size: 4em;
  margin-top: 40%; /* Optional: Reduziere den oberen Abstand */
}

/* Tabelle mit Öffnungszeiten */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 80%; /* Abstand vom oberen Rand */
    left: 50%;
    transform: translateX(-50%); /* nur horizontal zentrieren */
    margin-top: 70px;
    margin-bottom: 20px; /* Abstand nach unten schaffen */
}
.opening-hours .day {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.opening-hours .day strong {
  color: #2e3b4e; /* Farbe für den Wochentag */
}
.opening-hours .day a {
  color: #111111; /* Farbe für den Wochentag */
}
/* Container für die News */
.new-news {
    display: flex;
    flex-direction: column;
    width: 100%;            /* responsive Breite */
    max-width: 800px;      /* maximale Breite */
    z-index: 2;
}

/* Jede einzelne Box */
.new-news .day {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 20px 0;        /* vertikaler Abstand zwischen Boxen */
    padding: 20px;         /* Innenabstand */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1.6;
}

/* Textgestaltung */
.new-news .day strong {
    color: #2e3b4e;
}

.new-news .day a {
    color: #111111;
}
a {
  color: white;
}
p {
  margin-top: 30px; /* Abstand zwischen Tabelle und Text */
  font-size: 25px; /* Schriftgröße */
  color: white; /* Schriftfarbe */
  text-align: center; /* Text zentriert */
}
.paragraph {

  font-size: 20px; /* Schriftgröße */
  color: white; /* Schriftfarbe */
  text-align: center; /* Text zentriert */
}

.menu {
  position: absolute; /* Absolut positioniert */
  top: 50%; /* Setze auf die Mitte des Containers */
  left: 50%; /* Horizontale Zentrierung */
  transform: translate(-50%, -50%); /* Zentriere genau */
  z-index: 2; /* Setze den z-index niedriger als die Navbar */
  background-color: rgba(255, 255, 255, 0.9); /* Hintergrundfarbe für die Speisekarte */
  padding: 20px; /* Innenabstand */
  border-radius: 10px; /* Abgerundete Ecken */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Schatten für Tiefe */
  max-width: 800px; /* Maximale Breite für die Speisekarte */
  width: 90%; /* Breite der Speisekarte */
  max-height: 70vh; /* Maximale Höhe für die Speisekarte (größer gemacht) */
  overflow-y: auto; /* Vertikales Scrollen ermöglichen */
  animation: slideIn 1s ease-out forwards; /* Dauer 1s, easing und forwards */

  scrollbar-width: thin; /* Dünne Scrollleiste */
  scrollbar-color: transparent transparent; /* Farben der Scrollleiste */
}
/* Stil für die Scrollleiste - für WebKit-basierte Browser */
.menu::-webkit-scrollbar {
  width: 0; /* Breite der Scrollleiste auf 0 setzen */
  background: transparent; /* Hintergrund transparent */
}

/* Stil für die Scrollleiste - für Firefox */
.menu:hover::-webkit-scrollbar {
  background: transparent; /* Hintergrund der Scrollleiste transparent beim Hover */
}
.menu h2 {
  color: #444; /* Dunkelgraue Schriftfarbe für bessere Lesbarkeit */
  text-align: center; /* Zentriere die Überschrift */
  margin-top: auto;
  margin-bottom: 80px; /* Abstand nach unten */
  font-size: 80px;
}
.menu i {
  color: #000;
  font-size: 10px;
}
.menu h3 {
  color: #444; /* Etwas dunkler für den Kontrast */
  margin-top: 30px; /* Abstand nach oben */
  margin-bottom: 10px; /* Abstand nach unten */
  font-size: 1.5em; /* Schriftgröße für die Überschrift */
  text-align: center; /* Zentriert die Überschrift */
  border-bottom: 2px solid #ddd; /* Untere Linie für visuelle Trennung */
  padding-bottom: 5px; /* Abstand zwischen Text und Linie */
}


/* Tabelle Stil */
table {
  width: 100%; /* Tabelle nimmt die gesamte Breite des Containers ein */
  border-collapse: collapse; /* Entferne Abstände zwischen Zellen */
  margin-top: 10px; /* Abstand zum oberen Rand */
}

th, td {
  padding: 12px; /* Innenabstand in den Zellen */
  text-align: left; /* Text linksbündig */
  border-bottom: 1px solid #ddd; /* Trennlinie zwischen den Zeilen */
}

/* Feste Breiten für die Spalten */
th:nth-child(1),
td:nth-child(1) {
  width: 40%; /* Breite für die Gericht-Spalte */
}

th:nth-child(2),
td:nth-child(2) {
  width: 55%; /* Breite für die Beschreibung-Spalte */
}

th:nth-child(3),
td:nth-child(3) {
  width: 5%; /* Breite für die Preis-Spalte */
}

/* Stil für die Kopfzeile */
th {
  background-color: rgba(200, 200, 200, 0.8); /* Hintergrundfarbe für die Kopfzeile */
  color: #000; /* Schwarze Schriftfarbe */
}

/* Hover-Effekt für die Tabellenzeilen */
tbody tr:hover {
  background-color: rgba(240, 240, 240, 0.5); /* Hintergrundfarbe beim Hover */
}

/* Letzte Zeile ohne Unterteilung */
tbody tr:last-child td {
  border-bottom: none; /* Entferne die Trennlinie vom letzten Element */
}

/* Optional: Stil für den Preis */
td:last-child {
  font-weight: bold; /* Preis in fett */
  color: green; /* Preis in grün */
}

.impressum {
  /* align-content: flex-start;
  align-items: flex-start; */
      position:fixed;
      text-align: center;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      color: white; 
      z-index: 5;
      font-size: 1.5rem;
      text-shadow: 1px 1px 3px black;
}
.footer-links {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px; /* Abstand zwischen Impressum & Datenschutz */
  z-index: 10;
}
.footer-text-container {
  text-align: center;
  margin-top: auto;
}

.footer-text {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  display: block;
  margin-top: auto;
}
.footer2 {
  position: absolute;
  bottom: 1px;
  left: 10px;
  display: flex;
  z-index: 10;
  font-size: 5px;
  color: rgba(255, 255, 255, 0.8); /* leicht transparentes Weiß */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6); /* bessere Lesbarkeit auf Fotos */
}


.imprintlink {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.2s;
}

.imprintlink:hover {
  background-color: rgba(0, 0, 0, 0.7);
}