@font-face {
  font-family: 'GT Walsheim';
  src: url('fonts/GT-Walsheim-Regular.woff2') format('woff2'),
       url('fonts/GT-Walsheim-Regular.woff') format('woff');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'GT Walsheim';
  src: url('fonts/GT-Walsheim-Regular-Oblique.woff2') format('woff2'),
       url('fonts/GT-Walsheim-Regular-Oblique.woff') format('woff');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
/* Allgemein */
body {
  font-family: 'GT Walsheim', sans-serif;
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
}

/* Navigation + Header */
.site-header {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Zwei gleich große Hälften */
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 1000;
}

.site-header .logo {
  display: flex;
  justify-content: center; /* Logo mittig in linker Hälfte */
}

.site-header .logo img {
  max-height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center; /* Navigation mittig in rechter Hälfte */
}

.nav-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a:hover {
  color: red;
}

/* Slider */
.slider {
  max-width: 100%;
  position: relative;
  margin: 20px auto;
}
.slider img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: none;
}

/* Sektionen mit mehr Abstand */
.section {
  padding: 100px 20px;
  text-align: center;
}

/* Menü */
.menu-preview {
  max-width: 90%;
  height: auto;
  margin-top: 1rem;
}
.download-link {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.download-link:hover {
  background-color: red;
  border-color: red;
}

/* Kontakt nebeneinander */
.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  
}
.contact-details {
  text-align: left;
}

/* Map */
.map-container iframe {
  width: 80%;
  max-width: 600px;
  height: 300px;
  border: 0;
  border-radius: 8px;
  margin-top: 40px;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 60px;
}
.footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}
.footer a:hover {
  color: red;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1rem;
  z-index: 999;
  text-align: center;
}
.cookie-banner button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    grid-template-columns: 1fr; /* Header spaltet sich untereinander auf */
  }
  .site-header .logo img {
    max-height: 60px;
  }
  .nav-links {
    margin-top: 10px;
    flex-wrap: wrap;
  }
}

/* Hero-Text (Willkommensbereich) */
.hero {
  text-align: center;
  margin: 60px 0 40px 0;
}

/* Slider mittig */
.slider {
  max-width: 100%;
  position: relative;
  margin: 20px auto;
  text-align: center;   /* Zentriert Inhalt */
}

.slider img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: none;
  margin: 0 auto;       /* sorgt dafür, dass Bilder mittig stehen */
}


/* ===== Ergänzungen (fixes) ===== */

/* Mobile Navigation versteckt standardmäßig */
.mobile-nav { display: none; flex-direction: column; background: black; text-align: center; }
.mobile-nav a { color: white; padding: 12px; border-top: 1px solid #333; text-decoration: none; }
.mobile-nav.open { display: flex; }

/* Burger-Icon */
.burger-menu { display: none; position: absolute; right: 20px; top: 14px; width: 28px; height: 20px; justify-content: space-between; flex-direction: column; cursor: pointer; }
.burger-menu span { width: 100%; display: block; height: 3px; background: #fff; border-radius: 2px; }

/* Reservieren */
.grey-info { color: #aaa; margin: 16px 0; }
.reserve-button { margin-top: 8px; }

/* Menükarten Buttons */
.menu-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.menu-buttons .download-link { min-width: 16ch; text-align: center; }

/* Kontakt Wrapper fallback */
.contact-wrapper { display: flex; justify-content: center; gap: 40px; }
.contact-item { text-align: center; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger-menu { display: flex; }

  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .site-header .logo img { max-height: 60px; width: auto; }

  .reservierung-widget, .grey-info { display: none; }

  .menu-buttons { flex-direction: column; align-items: center; }
  .menu-buttons .download-link { width: 80%; max-width: 360px; }

  .contact-wrapper { flex-direction: column; align-items: center; gap: 16px; }
}


/* ===== Erweiterte Media Queries für Android-Browser ===== */
@media screen and (max-device-width: 768px) {
  .nav-links { display: none; }
  .burger-menu { display: flex; }

  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .site-header .logo img { max-height: 60px; width: auto; }

  .reservierung-widget, .grey-info { display: none; }

  .menu-buttons { flex-direction: column; align-items: center; }
  .menu-buttons .download-link { width: 80%; max-width: 360px; }

  .contact-wrapper { flex-direction: column; align-items: center; gap: 16px; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger-menu { display: flex; }
}


/* ===== Fallback für störrische Browser wie Samsung Internet ===== */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .burger-menu { display: flex; }
}


/* ===== Sichtbarer Burger für Test ===== */
.burger-menu {
  width: 40px !important;
  height: 30px !important;
}
.burger-menu span { display: block; width: 100%;
  height: 4px !important;
  background: #ccc !important;
 border-radius: 2px;}


/* ===== Samsung Browser Fallback ===== */
body.samsung-fallback .nav-links { display: none !important; }
body.samsung-fallback .burger-menu { display: block !important; }
body.samsung-fallback .menu-buttons { flex-direction: column !important; align-items: center !important; }
body.samsung-fallback .menu-buttons .download-link { width: 80% !important; max-width: 360px !important; }
body.samsung-fallback .contact-wrapper { flex-direction: column !important; align-items: center !important; gap: 16px !important; }





/* Burger-Menu: klassische 3 weiße Striche */
.burger-menu {
  display: none; /* wird nur in Media Queries sichtbar */
  position: absolute;
  right: 20px;
  top: 14px;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* Sichtbarkeit nur bei kleiner Auflösung */
@media (max-width: 1024px) {
  .burger-menu {
    display: flex;
  }
  nav ul {
    display: none;
  }
}


/* Social Media Section */
.social-section { padding-top: 120px; padding-bottom: 80px; text-align: center; font-family: inherit; }
.social-section h2 { margin-bottom: 8px; }
.social-section p { margin: 0 0 16px 0; color: #ccc; }

.social-icons { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: #111; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; }
.social-link:hover { background: #222; transform: translateY(-2px); }
.social-link .icon { width: 22px; height: 22px; fill: #fff; display: block; }

@media (max-width: 768px) {
  .social-icons { flex-direction: column; gap: 12px; }
}

.contact-section { padding-bottom: 120px; }

.contact-wrapper {  }

.contact-wrapper { margin-bottom: 0; }


@media (max-width: 768px) {
  .contact-section { padding-bottom: 64px; }
  .social-section  { padding-top: 64px; padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .contact-section { padding-bottom: 48px; }
  .social-section  { padding-top: 48px; padding-bottom: 40px; }
}

