/* basic style for all pages */

body {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-style: normal;
    background-color: #000000;
    margin: 0;
  }

.mobile-container {
  width: 100%;
  max-width: 440px;
  margin: auto;
  
  background-color: #141414;
  background-image: url("../images/textureFabricDark.png");
  background-size: 600px;

  /* Backp font */
  color: rgb(166, 166, 166);
  font-size: 13px;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 4px rgb(75, 5, 5));
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;

  background-color: #660e0e;
  background-image: url("../images/textureFoodRed.png");
  background-size: 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.navbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 7px 12px;

  text-decoration: none;
  font-size: 30px;
  font-weight: 600;

  transition: 0.15s;
}

.navbar a:hover {
  transform: scale(1.015);
}

.navbar a span {
  position: relative;
  top: 2px;
  font-family: "Ancizar Serif", serif;
  filter: drop-shadow(0px 0px 4px rgb(75, 5, 5));
}

.navbar img {
  margin-right: 6px;
}

.navbar .hamburger {
  padding: 7px 16px;
  position: relative;
  top: 2px;
  right: 5px;
  
  cursor: pointer;
  user-select: none;

  transition: 0.25s;
}

.navbar .hamburger:hover {
  transform: scale(1.1);
  filter: brightness(75%);
}

.navlinks {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  z-index: 9;

  padding-left: 5px;
  transform: translate(210px, -50px); /* right side */
  position: fixed;

  display: flex;
  flex-direction: column;

  font-size: 20px;
  width: 225px;
  border-bottom-left-radius: 20px;
  filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.65));

  transition: 0.3s;
}

.navlinks.open {
  visibility: visible;
  opacity: 1;
  transform: translate(210px, 0);
}

.navlinks a {
  background-color: #a52525;
  border-bottom: #440a0a solid 1px;
  border-top: #440a0a solid 1px;

  padding: 14px 16px;
  display: block;
  width: 100%;

  color: white;
  text-decoration: none;
  font-size: 17px;

  transition: 0.1s;
}

.navlinks a:first-child {
  border-top: none;
}

.navlinks a:last-child {
  border-bottom: none;
}

.navlinks a:hover {
  transform: scale(1.05);
  background-color: #ce2e2e;
}

.homeLogo {
  width: 350px;
  max-width: 90%;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.2));
}

.flexbox {
    display: flex;
    flex-flow: column;
    padding: 20px;
    padding-top: 0;
}

footer {
  display: flex;
  justify-content: space-around;

  width: 100%;
  max-width: 440px;
  height: 50px;

  background-color: #4e1f1f;
  background-image: url("../images/textureFoodRed.png");
  background-size: 100px;

  color: white;
  line-height: 50px;
  font-size: 15px;
  font-weight: 400;
}

footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px;
  width: 20px;
  height: 20px;

  border-radius: 8px;
  transition: 0.2s;
}

footer a:hover {
  filter: brightness(75%);
}

footer img {
  width: 20px;
  height: 20px;
}

footer .facebook {
  background-color: #1877f2;
  vertical-align: middle;
  transform: translateY(-2px);
  margin-right: 5px;
}

footer .yelp {
  background-color: #ffffff;
  vertical-align: middle;
  transform: translateY(-2px);
}