@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "nunito", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
  overflow-x: hidden;
}


li {
  list-style: none;
}

a {
  text-decoration: none;
}

span {
  color: white;
}

.logo{
  height:80px;
  width:100%;

}

.img-hero img{
  height: auto;
  width: 100%;
}
.img-hero h1{
  text-align: center;
  font-size: 10rem;
  font-family: 'Lobster', cursive;
}



.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  z-index:999;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #555;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #262626;
}

.nav-link:hover {
  color: #D61616;
}



@media only screen and (max-width: 1200px) {
  html {
    font-size: 55.5%;
  }
  .navbar{
    justify-content: space-between;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 9.5rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;

  }
  
    .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }

  .box__grid{
    margin: 4rem;
  }
  .wrapper .section__title{
    text-align: center;
  }
}

#entradas{
  background-color: #CD4D49;
}
#rolls{
  background-color: #FFA07A;
}
#sashimis{
  background-color: #6B8E23;
}
#especiales{
  background-color: #FFD700;
}
#postres{
  background-color: #BE92FF;
}
#bebidas{
  background-color: #00BFFF;
}
#contacto{
  background-color: #1a1b1f;
}
#contacto .wrapper{
  color: #fff;
}
#contacto .section__title{
  text-align: center;
  color: #fff;
}
#contacto .box__content {
  color: #fff;
}
#contacto .box__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}


.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.section {
  padding: 90px 0;
}
.section__title {
  font-size: 4em;
  color: #262626;
  text-align: left;
  font-family: "nunito", sans-serif;
margin-bottom: 5rem;
}
.section__intro {
  display: block;
  text-align: left;
  margin: 0 5% 30px;
  font-size: 1.5em;
}

.important{
  margin: 10rem 0 0 0;
}
.important h3{
  font-size: 2rem;
}
.important p {
  font-size: 1.6rem;
}

@media only screen and (min-width: 43.75em) {
  .section__intro {
    margin-left: 15%;
    margin-right: 15%;
  }
}
.box {
  display: flex;
  flex: 1 0 100%;
  margin-bottom: 20px;

}
.box__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box__grid .box__title {
  font-size: 2.5rem;
  font-family: "nunito", sans-serif;
}
.box__grid p {
  margin-top: 1rem;
  font-size: 1.6rem;
}

.box__content {
  color: #262626;
  text-align: center;
}

.main-footer {
  margin: 20px 0;
  display: flex;
  justify-content: space-evenly;
  /*background-color: #19302E;*/
}
.footer-end{
  margin-bottom: 0em;
}
.main-footer ul {
  list-style: none;
}
.main-footer h2 {
  color: #ffffff;
  font-weight: 700;
}
.main-footer ul li a {
  color: #ffffffcc;
  text-decoration:none;
}
footer {
  background-color: #262626;
  /*border-top: 1px solid #6EB981;*/
  font-size: 17px;
  padding: 15px 5px;
  color: #ffffff;
  text-align: center;
}
footer a {
  text-decoration: none;
  color: #ffffff;
}
.logoinfo p {
  color: #D61616;
  font-size: 17px;
  margin-top: 5px;
}
.contact-details {
  margin-top: 20px;
}
.contact-details li {
  list-style: none;
  margin: 20px 0;
}
.contact-details li a {
  text-decoration:none;
  color: #f1f1f1;
}
.contact-details .fa {
  color: #D61616;
  margin-right: 10px;
}
.sociallogos{
  padding:20px 0;
}
.sociallogos .logobox a{
  padding:0 10px;
  text-decoration:none;
  color:#D61616;
  font-size:22px;
}
@media only screen and (min-width: 43.75em) {
  .box {
    flex: 0 0 30%;

  }
}

#scrollUp {
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url(https://res.cloudinary.com/dhl5kxxah/image/upload/v1675533986/up-arrow_hnf18u.png);
  background-size: cover;
}


