/* css/style.css */

/* Basic Reset */
/* Breite der vertikalen Scrollbar */
::-webkit-scrollbar {
  width: 12px; /* Passen Sie die Breite nach Bedarf an */
}

/* Hintergrund der Scrollbar-Spur */
::-webkit-scrollbar-track {
background: transparent;}

/* Design des Scrollbar-Schiebers */
::-webkit-scrollbar-thumb {
  background-color: #888; /* Farbe des Schiebers */
  border-radius: 10px;    /* Abgerundete Ecken */
  border: 3px solid transparent; /* Optional: Rahmen, der einen „Puffer“ zwischen Schieber und Spur schafft */
}

/* Hover-Effekt für den Schieber */
::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Etwas dunklere Farbe beim Überfahren */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html {
  scroll-behavior: smooth;
}

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* 
       Da dein Header fixiert ist, musst du vermeiden, dass 
       er den Wrapper überlappt – hier als Beispiel 80px (anpassen, falls nötig)
    */
    margin-top: 80px; 
  }
  .page-container main {
    flex: 1;
  }
  /* Body und Global */
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
  }
  .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Abstand zwischen den Links */
    margin-bottom: 20px;
  }
  a{
    color: inherit;
    text-decoration:none;
  }
  .section-header a {
    text-decoration: none;
    color: inherit; /* Erbt die Farbe von übergeordneten Elementen */
  }
  
  .section-header h2 {
    margin: 0;
    font-size: 2rem; /* oder eine andere passende Größe */
    transition: color 0.3s ease;
  }
  
  .section-header a:hover h2 {
    color: #ff9900; /* Beispiel-Hover-Farbe */
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Navigation */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(18, 18, 18, 0.9);
    z-index: 1000;
  }
  
  .navbar .logo a {
    color: #e0e0e0;
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
  }
  
  .navbar .nav-links li {
    margin: 0 15px;
  }
  
  .navbar .nav-links li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .navbar .nav-links li a:hover,
  .navbar .nav-links li a.active {
    color: #ff9900;
  }
  
  .btn-reserve {
    display: inline;
    text-align: center;
    min-width: 200px;
    background-color: #ff9900;
    color: #121212;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn-reserve:hover {
    background-color: #e68a00;
  }
  
/* Hamburger Menü */
.hamburger-menu {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger-menu .bar {
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 5px;
}
  /* Hero Section */
  #hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: url('../video/welcome1.jpeg') center/cover no-repeat;
  }
  
  #hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  /* Section Styles */
  .section {
    padding: 80px 0;
    margin-top: 80px;
  }
  
  .section h1,
  .section h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Features Section */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature-item {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .feature-item img {
    max-width: 80px;
    margin-bottom: 15px;
  }
  
  /* Reviews Section */
  .swiper-container {
    width: 100%;
    overflow: hidden;
  }

  .review-slide {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
  }
  
  .review-slide blockquote {
    font-style: italic;
    margin-bottom: 15px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Menu Section */
  .menu-category {
    margin-bottom: 40px;
  }
  
  .menu-category h2 {
    margin-bottom: 10px;
  }
  
  .menu-category img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  /* Events Section */
  .event-item {
    display: flex;
    flex-wrap: wrap;
    background: #1e1e1e;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .event-item img {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
  }
  
  .event-details {
    padding: 20px;
    flex: 1;
  }
  
  /* Forms */
  form label {
    display: block;
    margin-top: 15px;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #2a2a2a;
    border: none;
    border-radius: 5px;
    color: #e0e0e0;
  }
  
  form button {
    margin-top: 20px;
    background-color: #ff9900;
    color: #121212;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #e68a00;
  }
  
  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
  }
  .map iframe {
    /* Sicherstellen, dass das iframe keine zusätzlichen Ränder oder Padding hat */
    display: block;
    max-width: 100%;
    width: 100%;
    height: 600px; /* Stelle hier die gewünschte Höhe ein */
  }
  
  /* Footer */
  footer {

    background: #1e1e1e;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-info, .footer-links, .footer-social {
    margin-bottom: 10px;
  }
  
  .footer-links a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover, .footer-social a:hover {
    color: #ff9900;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar .nav-links {
      display: none;
    }
  
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    cursor: pointer;
  }

  /* Hamburger Menü ein- und ausblenden */
  .nav-links.active {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgba(18, 18, 18, 0.9);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px;
    z-index: 1100;
  }
  }