header {
  background-color: var(--primary-color);
  top: 0px;
}

body {
  background-image: url("../public/drinks-bg-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sociales {
  border-bottom: 2px solid white;
}

.drinks-container {
  display: flex;
  flex-direction: column;
  padding-top: 150px;
  gap: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  background-color: rgb(226, 210, 186, 0.5);

  h1 {
    font-family: "Goblin One", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50.4px;
    line-height: 55.44px;
    color: var(--text-secondary);
    margin-bottom: 0px;
    text-align: center;
  }
}

.drinks-container .toogle-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.drinks-container .menu-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.drinks-container .menu-container .menu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 20px 30px 20px 30px;
  width: 462.73px;
  height: fit-content;

  h1 {
    font-family: "Goblin One", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 30.8px;
    color: var(--text-secondary);
    text-align: center;
  }
}

.drinks-container .menu-container .menu-item .food-list {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--primary-color);
  padding: 10px;
  width: 100%;
}

.drinks-container .menu-container .menu-item .food-list .food {
  display: flex;
  flex-direction: row;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-color);
  flex-grow: 1;

  h3 {
    font-family: "Figtree", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16.9px;
    line-height: 18.59px;
    color: var(--text-secondary);
  }

  p {
    font-family: "Figtree", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15.6px;
    line-height: 20.28px;
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
  }
}

.drinks-container .menu-container .menu-item .food-list .food .food-discription {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.drinks-container .menu-container .menu-item .food-list .food .food-price {
  font-family: "Figtree", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16.9px;
  line-height: 24.1429px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .drinks-container .toogle-container {
    flex-direction: column;
  }

  .drinks-container .menu-container {
    flex-direction: column;
  }

  .drinks-container .menu-container .menu-item {
    width: 80dvw;
  }
}
