/* Allgemeine Stile */
body {
  font-family: "Cinzel", serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

.body-content {
  padding-top: 110px;
  /* Höhe des Headers + etwas extra Abstand */
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.7);
  /* Dunkler, transparenter Hintergrund */
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

}

/* Logo */
.navbar-brand img {
  height: 50px;
  /* Höhe beibehalten */
  max-height: 100%;
  /* Damit das Bild nicht zu groß wird */
  width: auto;
  /* Automatische Breite */
  object-fit: contain;
  /* Sorgt dafür, dass das Logo nicht verzerrt wird */
  transform: scale(2.3);
  /* Logo um 30% vergrößern */
  padding-left: 24px;
  /* Abstand vom linken Rand */
}

/* Navigationslinks */
.navbar-light .navbar-nav .nav-link {
  color: white !important;
  /* Textfarbe der Links */
  font-size: 1.1rem;
  transition: color 0.3s ease;
  /* Sanfter Farbübergang */
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #a29074 !important;
  /* Farbe beim Hover */
}

/* Telefonnummer mit Icon */
.phone-link {
  color: white !important;
  /* Textfarbe der Telefonnummer */
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  /* Sanfter Farbübergang */
}

.phone-link:hover {
  color: #a29074 !important;
  /* Farbe beim Hover */
}

/* Hamburger-Menü-Icon */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  /* Farbe des Hamburger-Menü-Icons */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero-Banner */
.hero-section {
  position: relative;
  height: 100vh;
  /* Volle Bildschirmhöhe */
  background-image: url("img/background.jpg");
  /* Pfad zu deinem Hintergrundbild */
  background-size: cover;
  /* Bild deckt den gesamten Bereich ab */
  background-position: center;
  /* Bild wird zentriert */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Overlay für bessere Lesbarkeit des Textes */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dunkles Overlay */
}

/* Inhalt des Hero-Banners */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Logo im Hero-Banner */
.hero-logo {
  max-width: 150px;
  /* Größe des Logos anpassen */
  margin-bottom: 20px;
  filter: invert(1);
}

/* Titel im Hero-Banner */
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: fadeInDown 1.5s ease-in-out;
  /* Animation für den Titel */
  color: #a29074;
}

/* Untertitel im Hero-Banner */
.hero-subtitle {
  font-size: 1.5rem;
  animation: fadeInUp 1.5s ease-in-out;
  /* Animation für den Untertitel */
}

/* Scroll-Pfeil */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
}

.bg-dark-transparent {
  background-color: rgba(0, 0, 0, 0.6) !important;
}


/* Animationen */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-20px);
  }

  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Hauptinhalt */
/* Über uns */
#about {
  background-color: #f8f8f8;
  padding: 60px 0;
}

#about h2 {
  color: #a29074;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

#about img {
  max-width: 100%;
  height: auto;
}
/* Stil für das Hauptbild */
.main-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  border-radius: 12px;
}

/* Thumbnail-Container */
.thumbnail-container {
  gap: 6px;
  max-width: 100%;
  overflow-x: auto;
  padding: 10px 0;
}

/* Thumbnails */
.thumbnail-img {
  width: 100px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, border 0.2s ease-in-out;
}

.thumbnail-img:hover {

  border: 2px solid #a29074;
}

/* Textbereich */
.list-unstyled li {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Hintergrund & Padding */
.bg-light {
  background-color: #f8f9fa;
  padding: 60px 0;
}


/* Services */
.service-btn {
  background-color: #a29074;
  border-color: #a29074;
  color: #ffffff;
}
.modal[aria-hidden="true"] {
  pointer-events: none;
}

#services {
  background-color: #fff;
  padding: 60px 0;
}

#services h2 {
  color: #a29074;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  color: #a29074;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #666;
}

/* Special Event mit Parallax-Effekt */
#special-event {
  position: relative;
  height: 600px;
  /* Höhe der Sektion */
  background-image: url("img/event-background.jpg");
  /* Hintergrundbild */
  background-size: cover;
  /* Bild deckt den gesamten Bereich ab */
  background-position: center;
  /* Bild wird zentriert */
  background-attachment: fixed;
  /* Hintergrundbild bleibt fixiert */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Horizontal zentrieren */
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Schatten für bessere Lesbarkeit */
}

/* Overlay für bessere Lesbarkeit des Textes */
#special-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dunkles Overlay */
}

/* Inhalt der Event-Sektion */
#special-event .container {
  position: relative;
  z-index: 1;
  height: 100%;
  /* Container nimmt die volle Höhe ein */
}

#special-event .row {
  height: 100%;
  /* Row nimmt die volle Höhe ein */
}

#special-event h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #a29074;
}

#special-event .lead {
  font-size: 1.2rem;
  line-height: 1.8;
}

#special-event img {
  max-width: 100%;
  height: auto;
  border: 5px solid white;
  /* Rahmen um das Party-Bild */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Schatten für das Bild */
}

.carousel-item img {
  height: 500px;
  /* Höhe für alle Bilder festlegen */
  object-fit: cover;
  /* Bilder werden beschnitten, aber behalten ihr Seitenverhältnis */
}

/* Hintergrundbild und Overlay */
#menu-reservation {
  background: url("img/restaurant-bg.jpg") no-repeat center center/cover;
  position: relative;
}

#menu-reservation .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Dunkler Overlay für bessere Lesbarkeit */
}

#menu-reservation .container {
  position: relative;
  z-index: 2;
}

/* PDF-Container */
.pdf-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Google Maps Container */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Social Media Icons */
.social-icon {
  display: inline-block;
  margin-right: 15px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #a29074;
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25d366;
  /* Offizielle WhatsApp-Farbe */
  color: white;
  font-weight: bold;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  color: white;
}

/* Footer */
footer {
  background-color: #111;
}

.footer-logo {
  width: 180px;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #a29074;
}

/* Social Media Icons */
.social-icon {
  display: inline-block;
  margin: 5px;
  color: #aaa;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #a29074;
}

/* Scroll-to-Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation.show {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Cookie-Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner .btn {
  padding: 8px 15px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    /* Kleinere Schriftgröße für mobile Geräte */
  }

  .hero-subtitle {
    font-size: 1.2rem;
    /* Kleinere Schriftgröße für mobile Geräte */
  }

  .navbar-nav {
    background-color: rgba(0,
        0,
        0,
        0.9);
    /* Dunkler Hintergrund für mobile Navbar */
    padding: 10px;
  }

  .navbar-nav .nav-link {
    text-align: center;
    /* Zentrierte Links für mobile Geräte */
  }
}