* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: #1a3366;
  overflow-x: hidden;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a3366;
  color: #fff;
  padding: 1.5rem 0 0.5rem 0;
  position: relative;
}
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  z-index: 1002;
}
.nav-toggle-bar {
  width: 28px;
  height: 4px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  transition: all 0.3s;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a:hover {
  color: #f7c948;
}
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(135deg, #f7c948 0%, #e94f37 100%);
  color: #1a3366;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.cta {
  display: inline-block;
  background: #1a3366;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 51, 102, 0.08);
  transition: background 0.2s, color 0.2s;
}
.cta:hover {
  background: #e94f37;
  color: #fff;
}
section {
  margin: 2.5rem auto;
  max-width: 900px;
  padding: 0 1rem;
}
footer {
  text-align: center;
  padding: 1.2rem 0;
  background: #1a3366;
  color: #fff;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
  .logo {
    width: 80px;
    margin-bottom: 0;
  }
  .nav-toggle {
    display: flex;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a3366;
    box-shadow: 0 4px 16px rgba(26, 51, 102, 0.08);
    z-index: 1001;
    display: none;
  }
  nav.open {
    display: block;
    animation: fadeInNav 0.2s;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem 0;
  }
  @keyframes fadeInNav {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .cta {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .artikel-liste {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .artikel {
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .artikel-gallery {
    gap: 0.3rem;
    width: 100%;
    max-width: 100%;
  }
  .gallery-thumb {
    width: 45px;
    height: 30px;
    max-width: 100%;
  }
  .lightbox-overlay img {
    max-width: 98vw;
    width: 100%;
    height: auto;
  }
  .feedback-liste {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .feedback {
    width: 100%;
    max-width: 95vw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .kontakt-formular {
    width: 100%;
    max-width: 98vw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
}
.artikel-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.artikel {
  background: #f7f7fa;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26, 51, 102, 0.07);
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.artikel-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artikel-saloon {
  background: url("img/saloon1.jpg");
  background-size: cover;
  border: 4px solid #e94f37;
}
.artikel-torte {
  background: url("img/torte1.jpg");
  background-size: cover;
  border: 4px solid #1a3366;
}
.artikel-schankwagen {
  border: 4px solid #f7c948;
}
.artikel-zapfanlage {
  background: #fff;
  background: url("img/zapf1.jpg");
  background-size: cover;
  border: 4px solid #1a3366;
}
.bier-hinweis {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #e94f37;
  text-align: center;
}
.feedback-liste {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.feedback {
  background: #f7c94822;
  border-left: 6px solid #e94f37;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  width: 370px;
  max-width: 90vw;
  min-height: 120px;
  font-style: italic;
  color: #1a3366;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.feedback span {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: bold;
  color: #e94f37;
}
.kontakt-formular {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 400px;
  margin: 2rem auto 1.5rem auto;
  background: #f7f7fa;
  padding: 1.5rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(26, 51, 102, 0.07);
}
.kontakt-formular label {
  font-weight: bold;
  color: #1a3366;
}
.kontakt-formular input,
.kontakt-formular textarea {
  border: 1.5px solid #1a3366;
  border-radius: 7px;
  padding: 0.6rem;
  font-size: 1rem;
  font-family: inherit;
}
.kontakt-formular button {
  background: #1a3366;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.7rem;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.7rem;
  cursor: pointer;
  transition: background 0.2s;
}
.kontakt-formular button:hover {
  background: #e94f37;
}
.kontakt-daten {
  text-align: center;
  margin-top: 1.5rem;
  color: #1a3366;
}
@media (max-width: 900px) {
  .artikel-liste {
    flex-direction: column;
    align-items: center;
  }
  .artikel {
    width: 90vw;
    max-width: 350px;
  }
  .feedback-liste {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .feedback {
    width: 100%;
    max-width: 95vw;
    min-height: unset;
  }
}
.artikel-gallery {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.gallery-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 7px;
  border: 2px solid #1a3366;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}
.gallery-thumb:hover {
  border: 2px solid #e94f37;
  box-shadow: 0 2px 8px rgba(233, 79, 55, 0.15);
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 51, 102, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 0.5rem;
}
.lightbox-close {
  position: absolute;
  top: 2.5vh;
  right: 4vw;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 1001;
  text-shadow: 0 2px 8px #1a3366;
}
