/* =====================
   GLOBAL STYLES
===================== */

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


body {
  margin: 0;
  font-family: 'Helvetica Neue ', Arial, sans-serif;
  text-align: center;
  color: #fff;

  background: url('../assets/images/background.jpg') no-repeat center center fixed;
  background-size: cover;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 1600px) {
  .container {
    width: 85%;
  }
}

/* =====================
   BUTTON STYLES
===================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #444;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}




.btn-new-res {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  background:  #f6b443;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-new-res:hover {
  background: #444;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn-new-res {
    padding: 10px 22px;
    font-size: 1rem;
  }
}







/* =====================
   SECTION HEADINGS
===================== */
h2 {
  font-size: 2.3rem;
  margin-bottom: 26px;
  font-weight: 600;
}
h3 {
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}
h4 {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 6px;
}

/* =====================
   GLOBAL IMAGE STYLES
===================== */
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =====================
   SOCIAL MEDIA ICONS
===================== */
.social-media {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0 40px;
}
.social-media a {
  font-size: 48px;
  color: #ebe5e5;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-media a:hover {
  color: #f6b443;
  transform: translateY(-6px) scale(1.2);
}
@media (max-width: 768px) {
  .social-media a {
    font-size: 28px;
  }
}

/* =====================
   RESPONSIVE GALLERY
===================== */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.gallery img {
  border-radius: 6px;
}

/* =====================
   VIDEO SECTION
===================== */
.video-section {
  text-align: center;
  margin: 50px auto;
}
.video-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ===== Video Wrapper ohne schwarze Balken ===== */


.video-wrapper video {
  width: 100%;
  max-width: 70%;
  height: auto;
  border-radius: 10px;
}








/* =====================
   MENU GRID
===================== */
.menu-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr); /* 3 Karten pro Zeile */
  justify-items: center;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 pro Zeile auf Tablets */
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr; /* 1 pro Zeile auf Mobil */
  }
}

/* =====================
   FLIP-CARD STYLES
===================== */
.menu-item {
  width: 100%;
  max-width: 320px;
  min-height: 400px; /* feste Höhe */
  perspective: 1200px;
  cursor: pointer;
}

.menu-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

/* Hover auf Desktop */
@media (hover: hover) {
  .menu-item:hover .menu-flip-inner {
    transform: rotateY(180deg);
  }
}

/* Click / Tap auf Mobile */
.menu-item.active .menu-flip-inner {
  transform: rotateY(180deg);
}

.menu-flip-front,
.menu-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.menu-flip-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}

.menu-flip-front img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-flip-back {
  background: #f9f9f9;
  color: #222;
  padding: 16px;
  transform: rotateY(180deg);
  text-align: left;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-flip-back h4 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 600;
}

.menu-flip-back p {
  margin: 6px 0;
  line-height: 1.4;
}

/* =====================
   CARD HOVER & SHADOW
===================== */
.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}





/* =====================
   HERO CAROUSEL
===================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 2.8rem;
}
.hero-content p {
  font-size: 1.3rem;
}

/* =====================
   ÜBER UNS CAROUSEL
===================== */
.carousel-about {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.carousel-item {
  opacity: 0.5;
  transform: scale(0.85);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.carousel-item img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.carousel-item.active {
  transform: scale(1);
  opacity: 1;
}
.carousel-btn {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }



/* =====================
   SITE FOOTER
===================== */
.site-footer {
  margin-top: 60px;
  padding: 18px 0;
  background: #111;
  color: #eee;
  text-align: center;
  font-size: 0.95rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #c39b6e;
}

.footer-nav {
  margin-bottom: 8px;
}








/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 18px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  text-align: center;
}
.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
}
.cookie-banner button {
  margin: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
}
#cookie-accept {
  background: #28a745;
  color: #fff;
}
#cookie-decline {
  background: #dc3545;
  color: #fff;
}



.map-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 60%;
  height: 400px; /* Höhe nach Wunsch anpassen */
  border: none;
}
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }
}



html {
  scroll-behavior: smooth;
}






/* =====================
   PDF VIEWER
===================== */
.pdf-wrapper {
  width: 100%;
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

.pdf-wrapper iframe {
  width: 100%;
  max-width: 900px;
  height: 600px;
  border: none;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .pdf-wrapper iframe {
    height: 400px;
  }
}


.opening-hours p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.opening-hours strong {
  display: block;
  font-size: 1.1rem;
}

.note {
  font-size: 0.9rem;
  opacity: 0.8;
}




h2 {
      text-align: center;
      margin-top: 40px;
      font-size: 2rem;
      font-weight: 600;
    }

 /* ===== Reservierung Box (Gold) ===== */
/* ===== Reservierung Container ===== */
.iframe-container {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;

  background: linear-gradient(135deg, #f6b443, #f6b443);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* iframe */
.iframe-container iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 10px;
  background: #fff;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .iframe-container {
    padding: 16px;
  }

  .iframe-container iframe {
    height: 600px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .iframe-container {
    margin: 20px auto;
    padding: 12px;
    border-radius: 10px;
  }

  .iframe-container iframe {
    height: 500px;
    border-radius: 8px;
  }

  h2 {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}

/* ===== Kleine Smartphones ===== */
@media (max-width: 480px) {
  .iframe-container iframe {
    height: 450px;
  }
}


.iframe-container iframe {
  overflow: auto;
}




 .pdf-container {
      width: 100%;
      max-width: 1000px;
      margin: 40px auto;
    }

    .pdf-container iframe {
      width: 100%;
      height: 700px;
      border: none;
      border-radius: 10px;
      background: #fff;
    }

    @media (max-width: 768px) {
      .pdf-container iframe {
        height: 500px;
      }
    }

    .pdf-actions {
      margin-top: 20px;
    }





    .iframe-consent {
  background: #111;
  color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.iframe-consent button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #c59d5f;
  border: none;
  cursor: pointer;
}




/* ===== MENU PDF ===== */
.menu-pdf iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 10px;
}

/* Mobile Button verstecken auf Desktop */
.menu-mobile {
  display: none;
  margin-top: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .pdf-container {
    display: none; /* PDF ausblenden */
  }

  .menu-mobile {
    display: block; /* Button anzeigen */
  }

  .menu-mobile .btn {
    display: inline-block;
    margin-top: 20px;
  }
}