@font-face {
  font-family: "Sushibar";
  src: url("../assets/fonts/sushi_bar_regular-webfont.woff") format("woff");
}

@font-face {
  font-family: "headline";
  src: url("../assets/fonts/fugue_headline-webfont.woff") format("woff");
}

@font-face {
  font-family: "paragraph";
  src: url("../assets/fonts/fugue_mono-webfont.woff2") format("woff");
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "paragraph", Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: normal;
  font-family: "Sushibar";
  font-size: 5rem;
}

#row {

position: fixed;
width: 500px;

}

.hamburg { 
  display: none;
  z-index: 2999;
  margin: 5px;
  background: #f2df1f; 
  width: 75px; 
  height: 50px; 
  position: relative; 
  border-radius: 5px; 
  transition: border-radius .5s;
}

.line { 
  position: absolute; 
  left:10px;
  height: 4px; width: 55px; 
  background: #555; border-radius: 2px;
  display: block; 
  transition: 0.5s; 
  transform-origin: center; 
}

.line:nth-child(1) { top: 12px; }
.line:nth-child(2) { top: 24px; }
.line:nth-child(3) { top: 36px; }

.hamburg.checked .line:nth-child(1){
  transform: translateY(12px) rotate(-45deg);
}

.hamburg.checked .line:nth-child(2){
  opacity:0;
}

.hamburg.checked .line:nth-child(3){
  transform: translateY(-12px) rotate(45deg);
}

header {
  display: flex;
  padding: 0 10vw;
  position: fixed;
  z-index: 9999;
  width: 80vw;
  background-color: #fff;
  transition: top 400ms ease;
  margin: 0px auto;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.mobileMenu {
  display: flex;
  list-style: none;
  flex-direction: column;
  top:-390px;
  position: absolute;
  left:10px;
  z-index: 999;
  background: #fff;
  padding:10px;
  border-radius: 10px;
  transition: 280ms ease-out;
}

.mobileMenu a {
  text-decoration: none;
  color: #4e4e4e;
  font-size: 2.5rem;
  margin: 10px;
  font-family: "headline";
  transition: 90ms ease;
}

.mobileMenu a:hover {
  color: #f2df1f;
  transition: 210ms ease;
}

.mobileMenu li {
  text-transform: uppercase;
  margin: 0 10px;
}

nav {
  display: flex;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #4e4e4e;
  font-family: "headline";
  transition: 90ms ease;
}

nav a:hover {
  color: #f2df1f;
  transition: 210ms ease;
}

nav li {
  text-transform: uppercase;
  margin: 0 10px;
}

main {
  background-color: #f7b2a5;
}

.social-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-header i {
  color: #f2df1f;
  font-size: 2.5rem;
  margin-left: 10px;
  transition: 90ms ease;
}

.social-header i:hover {
  color: rgb(242, 168, 31);
  transform: scale(1.2);
  cursor: pointer;
  transition: 210ms ease;
}

.logo img {
  max-width: 100px;
}

.logo-hero {
  height: 200px;
  transition: 210ms ease;
}

.logo-hero img {
  position: relative;
  max-width: 400px;
  top: 50;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  z-index: -10;
  transition: 210ms ease;
}

.hero {
  padding: 0 50px;
  height: 80vh;
  background-image: url("../assets/images/sushi_san_259172dpi_web.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  border: 10px #f2df1f solid;
  width: 880px;
  text-transform: uppercase;
  font-family: "Sushibar";
  font-size: 7rem;
  line-height: 6rem;
  padding: 20px;
  border-radius: 30px;
  color: #f2df1f;
  background-color: #0000009c;
}

.hero a > button {
  height: 80px;
  padding: 5px 20px;
  border: none;
  font-size: 3rem;
  background-color: #4184ff;
  color: #fff;
  border-radius: 60px;
  transform: translateX(-50%) translateY(80px);
  transition: 90ms ease-in-out;
  font-family: "Sushibar";
}

.hero a > button:hover {
  transform: scale(1.2) translateX(-30%) translateY(50px);
  background-color: #205ccc;
  transition: 210ms ease-in-out;
  cursor: pointer;
}

.about {
  padding: 100px 0px;
  display: flex;
  background-color: #f7b2a5;
  color: #fff;
  margin: 0px 80px;
}

.about-box {
  padding: 20px 50px;
  border: 10px #fff solid;
  margin: 10px;
  text-align: center;
}

.centeredP {
  text-align: center;
  margin-top: 50px;
}

.twoColumnsP {
  column-count: 2;
  text-align: left;
}

.about-box > h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 5rem;
  margin: 0;
}

.about-box > img {
  margin: 30px 0px;
  max-height: 100px;
}

.team {
  height: 40vw;
  background-image: url("../assets/images/team.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f2df1f;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: bold;
}

.menu {
  display: flex;
  background-color: #f7b2a5;
  color: #fff;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 80px;
  margin-bottom: 100px;
  flex-direction: row;
  align-items: stretch;
}

.menu-box {
  border: 10px #fff solid;
  margin: 10px;
  padding: 20px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  justify-content: center;
}

.menu-box table {
  color: #fff;
  padding: 20px;
  border-collapse: separate;
  border-spacing: 0.6em;
  margin: auto;
}

.menu-box table th {
  font-size: 2rem;
  font-family: "headline";
  text-align: center;
}

.menu-box table tfoot {
  font-size: 0.7rem;
}

.gallery {
  background-image: url("../assets/images/sushi_san_258372dpi_web.jpg");
  background-position: center;
  background-size: cover;
  height: 400px;
  background-attachment: fixed;
}


.contact {
  padding: 50px 20px;
  margin: 20px 80px;
  background-color: #f7b2a5;
  border: 10px #fff solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact button {
  border: none;
  width: 300px;
  font-size: 2rem;
  background-color: #f2df1f;
  color: #fff;
  border-radius: 60px;
  transition: 90ms ease-in-out;
  text-transform: uppercase;
  font-family: "Sushibar";
}

.contact button:hover {
  transform: scale(1.05);
  background-color: #ffc116;
  transition: 210ms ease-in-out;
  cursor: pointer;
}

.maps {
  border-top: 10px #f2df1f solid;
}

footer {
  position: relative;
  display: flex;
  height: 400px;
  color: #fff;
  justify-content: space-around;
  background-color: #313131;
  border-top: 10px #f2df1f solid;
  overflow: hidden;
  align-items: center;
}

.logo-footer img {
  position: absolute;
  max-width: 600px;
  bottom: -130;
  left: 50%;
  transform: translateX(-50%);
}

.social-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-footer i {
  color: #f2df1f;
  font-size: 4rem;
  margin-left: 20px;
  transition: 90ms ease;
}

.social-footer i:hover {
  color: rgb(242, 168, 31);
  transform: scale(1.2);
  cursor: pointer;
  transition: 210ms ease;
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 4rem;
  }



  .hero-text {
    border: 10px #f2df1f solid;
    width: 90vw;
    margin: auto 50px;
    font-size: 5rem;
    line-height: 5rem;
  }

  .hero a > button {
    display: none;
  }

  .hero {
    padding: 0 10px;
    height: 80vh;
  }

  .about {
    padding: 30px 0px;
    display: flex;
    background-color: #f7b2a5;
    color: #fff;
    margin: 0px 10px;
  }

  .about-box > h1 {
    font-size: 4rem;
  }

  .twoColumnsP {
    column-count: 1;
  }

  .team {
    height: 400px;
    background-size: contain;
  }

  .menu {
    margin: 0 10px;
    margin-bottom: 100px;
  }

  #drinks {

    order:6;

  }
}

@media only screen and (max-width: 900px) {
  h1 {
    font-size: 4rem;
  }




  .hamburg { 
    display: block;
  }

  #navbar {

    display: none;
  }

  .hero {
    height: 40vh;
    padding: 0 10px;
    background-size: contain;
  }

  .logo-hero {
    height: 215px;
  }

  .logo-hero img {
    max-width: 370px;
    top:0px;
  }

  .hero-text {
    border: 5px solid #f2df1f;
    width: 90vw;
    margin: auto 20px;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 20px;
    border-radius: 10px;
  }

  .hero > button {
    display: none;
  }


  .about-box > h1 {
    font-size: 2rem;

  }


  .about-box {
    padding: 20px;
    margin: 0px 5px;
    border: 5px solid #fff;
  }

  .twoColumnsP {
    column-count: 1;
  }


  

  .team {
    display: none;
  }

  .menu {
    margin: 0 10px;
    margin-bottom: 100px;
  }



.menu-box table th {
  font-size: 1.5rem;
}

.menu-box {
  border: 5px #fff solid;
  margin: 10px;
  padding: 0px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  justify-content: center;
  width: 100%;
}

.menu-box table {
  color: #fff;
  padding: 10px;
}

.menu-box table td {
  font-size: 0.8rem;
}

.gallery {

display: none;

}

.contact {
 
  border: 5px #fff solid;
  margin: 20px 20px;

}

.contact button {
  border: none;
  width: 200px;
}



  p {

font-size: 0.8rem;

  }

  .logo-footer img {
    position: absolute;
    max-width: 200px;
    bottom: -43;
    left: 50%;
    transform: translateX(-50%);
  }








}
