/* Global */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Georgia', serif;
  background: #101820;          /* dunkles Blau-Schwarz */
  color: #f5f5f5;               /* helles Grau */
  line-height: 1.6;
}

/* Papierstruktur */
.paper-bg {
  background:
    radial-gradient(ellipse at center, #243447 0%, #101820 100%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  background-blend-mode: multiply;
}

/* Header */
header {
  background: linear-gradient(135deg, #1f2933 0%, #3b4a5c 50%, #1f2933 100%);
  padding: 20px 20px;
  text-align: center;
  border-bottom: 4px double #e0b76a;   /* Goldton */
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.logo-box img {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.7));
}

.tagline {
  font-style: italic;
  font-size: 1.4rem;
  color: #e0b76a;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Navigation */
nav {
  background: #0b1220;
  padding: 5px 0;
  border-top: 2px solid #e0b76a;
  border-bottom: 2px solid #e0b76a;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3px;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
/*  font-size: 1.1rem; */
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #e0b76a;
  border-bottom: 2px solid #e0b76a;
}

/* Sections */
section {
/*  padding: 20px 20px; */
  padding: 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #e0b76a;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  padding-bottom: 5px;
}

/* Willkommen */
.welcome p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #f5f5f5;
}
 
/* Speisekarte */
 .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
 
   .menu-card {
    background: rgba(24, 32, 44, 0.85);
    border: 2px solid #e0b76a;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }


/* .menu-card:hover { transform: translateY(-5px); } */

  .menu-card h3 {
    color: #e0b76a;
    font-size: 1.0rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0b76a;
    padding-bottom: 10px;
  }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(224, 183, 106, 0.3);
  }

  .menu-item:last-child { border-bottom: none; }
  .menu-item .name { color: #f5f5f5; font-size: 12px; }
  .menu-item .price { color: #e0b76a; font-weight: bold; font-size: 12px;}

/* Öffnungszeiten */
  .hours {
    background: rgba(24, 32, 44, 0.85);
    border: 2px solid #e0b76a;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  }
  
  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(212, 160, 23, 0.3);
    font-size: 1.1rem;
  }
  
  .hours-row:last-child { border-bottom: none; }
  
  .hours-row .day { color: #d4a017; font-weight: bold; }


  /* Events */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .event-card {
    background: linear-gradient(135deg, #1f2933, #101820);
    border: 2px solid #e0b76a;
    padding: 25px;
    text-align: center;
    border-radius: 5px;
  }
  
  .event-card .date {
    color: #e0b76a;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .event-card h3 {
    color: #f4e4c1;
    margin-bottom: 10px;
  }

/* Kontakt */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
  }
  
  .contact-info {
    background: rgba(24, 32, 44, 0.85);
    border: 2px solid #e0b76a;
    padding: 30px;
    border-radius: 5px;
  }
  
  .contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  .contact-info strong {
  color: #e0b76a;
    display: inline-block;
    min-width: 100px;
  }
  

.banner {
      background-image: url('../images/banner.png');
      background-size: cover; /* Füllt das div aus */
      background-position: center; /* Zentriert das Bild */
}
/* Footer */
footer {
  background: #0b1220;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px double #e0b76a;
  color: #e0b76a;
}

.datenschutz {
    background: rgba(24, 32, 44, 0.85);
    border: 2px solid #e0b76a;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.impressum {
    background: rgba(24, 32, 44, 0.85);
    border: 2px solid #e0b76a;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Divider */
.divider {
text-align: center;
border-bottom: 4px double #e0b76a;
}


/* Navigation */
.nav-header {
/*    display: flex; */
/*    justify-content: space-between; */
    align-items: center;
    padding: 5px 5px;
    background: #2c2c2c;
    color: white;
    position: sticky;
    top: 0;
/*    text-align: center; */
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: bold;
}

.nav-menu {
/*    display: flex; */
      gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

/* Burger-Button */
.nav-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* --- Handy --- */
@media (max-width: 600px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #2c2c2c;
        padding: 15px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* --- Tablet --- */
@media (min-width: 601px) and (max-width: 900px) {
    .nav-menu {
        gap: 10px;
    }
}
