@import url("https://fonts.googleapis.com/css?family=Bree+Serif|Poppins|Source+Sans+Pro|Montserrat:400,900&display=swap");

* {
  /* margin: 0;
  padding: 0; */
  box-sizing: border-box;
  font-family: "Source Sans Pro", "Poppins", sans-serif;
}
body {
  /* background: #333; */
}
/* unvisited link */
a:link {
  color: rgb(15, 15, 15);
}

/* visited link */
a:visited {
  color: rgb(109, 109, 109);
}

/* mouse over link */
a:hover {
  color: #f82757;
}

/* selected link */
a:active {
  color: #f82757;
}
/* General styles for the navigation */
.navigation {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
  }
  
  .navigation::-webkit-scrollbar {
    display: none;
    /* Versteckt die Scrollbar für ein sauberes Look */
}

.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.navigation li {
  flex-shrink: 0;
}

.navigation a {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}


.navigation a:hover,
.navigation a:focus {
  background-color: #f4f4f4;
  color: #000;
}

.navigation a.active {
  background-color: #007BFF;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5em;
}

.title_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5em;
}

.logo_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo_container h1 {
  margin-top: 0;
}

.logo {
  max-width: 4.6rem;
  height: auto;
  -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.language_container {
  display: flex;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.language {
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.addition {
  font-weight: bold;
}

.add-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  line-height: 0;
}

.aperitif {
  margin-bottom: 4em;
}

.aperitif-item-list li {
  margin-left: 0;
  padding: 0;
  display: flex;
  margin-bottom: 1em;
}

.aperitif-item-name {
  flex: 1;
  margin-right: 1em;
}

.aperitif-item-price {
  justify-self: flex-end;
}
.bold {
  font-weight: bold;
}

.menu {
  margin-top: 1em;
  font-family: sans-serif;
  font-size: 14px;
}

a.info {
  color: #111111;
  font-weight: bold;
}
.menu-group-heading {
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 2px solid #ccc;
}

.menu-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  padding: 1.5em 0;
}

.menu-item {
  display: flex;
}

.menu-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 1.5em;
  border-radius: 0.2em;
}

.menu-item-text {
  flex-grow: 1;
}

.menu-item-heading {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.menu-item-variant {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.menu-item-name {
  margin-right: 1.15em;
}

.menu-item-desc {
  line-height: 1.6;
  opacity: 0.6;
}

.drink-item-desc {
  font-weight: lighter;
  line-height: 1.6;
  opacity: 0.6;
}
.drink-group li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
  font-size: 16px;
}

.drink-group-sub-title {
  margin-top: 2em;
}
.drink-item-name {
  margin-right: 1.5em;
}

.drink-item-price {
  font-weight: lighter;
    white-space: nowrap;
  }
  
  .menu-item-price {
    font-weight: lighter;
  white-space: nowrap;
}

.fa-facebook:hover {
  color: #3b5998;
}

.fa-tripadvisor:hover {
  color: #239c18;
}

.fa-yandex:hover {
  color: #cebf13;
}

.fa-instagram:hover {
  color: #C13584;
}

.fa-tiktok:hover {
  color: #69C9EF;
}

.fa-linktree:hover {
  color: #39b54a;
}

footer {
  opacity: 0.7;
  text-align: center;
    padding: 30px;
    margin-bottom: 4em;
}
@media screen and (min-width: 992px) {
  .menu {
    font-size: 16px;
  }

  .menu-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-item-img {
    width: 125px;
    height: 125px;
  }
}
