/* Allgemeine Reset-Regeln */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Haupt-Body-Styling */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Top Bar mit Logo und Navigation */
.top-bar {
  background-color: #b12b28;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-bar .logo img {
  max-width: 120px;
  height: auto;
  cursor: pointer;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  position: relative;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #ffcc00;
}

/* Dropdown */
.menu ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #b12b28;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
  flex-direction: column;
}

.menu ul li .dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: white;
  font-weight: normal;
}

.menu ul li .dropdown-content a:hover {
  background-color: #8e1f1d;
}

.menu ul li:hover .dropdown-content {
  display: flex;
}

/* Hauptinhalt */
main {
  padding: 40px 20px;
  text-align: center;
}

.speisekarten h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #b12b28;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #b12b28;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  margin: 15px 0;
  width: 100%;
  max-width: 320px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #8e1f1d;
}

/* Footer */
footer {
  background-color: #fff;
  padding: 30px 20px;
  text-align: center;
  color: #777;
  border-top: 2px solid #eee;
}

footer a {
  color: #b12b28;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsives Design */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
  }

  .btn {
    font-size: 14px;
    max-width: 90%;
    margin: 10px auto;
  }

  footer {
    font-size: 14px;
  }
}
