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

@font-face {
  font-family: "roboto";
  src: url("../font/Roboto/Roboto-Regular.ttf");
  font-family: "poppins";
  src: url("../font/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: lit;
  src: url("../font/liltia/LilitaOne-Regular.ttf");
}
:root {
  --color: white;
  --ac: rgb(218, 169, 106);
  --bg: black;
}

body {
  background-color: var(--bg);
  position: relative;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

.nav-cont1 {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(204, 144, 66, 0.226);
  display: flex;
  justify-content: center;
  z-index: 2;
  padding: 1.5em;
}
.nav-cont1 .nav-cont2 {
  display: flex;
  align-items: center;
  place-content: space-between;
  z-index: 2;
  width: 100%;
}
.nav-cont1 .nav-cont2 a {
  text-decoration: none;
  font-weight: bold;
  color: var(--color);
  font-size: 1.2rem;
  font-family: lit;
  z-index: 2;
}
.nav-cont1 .nav-cont2 i {
  font-size: 1.5rem;
  color: var(--color);
  z-index: 2;
  cursor: pointer;
}
.nav-cont1 .nav-cont2 nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: none;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.116);
  height: 100vh;
}
.nav-cont1 .nav-cont2 nav ul {
  background-color: var(--ac);
  height: 60vh;
  width: 50%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  transition: 0.2s;
  animation-name: slide;
  animation-duration: 0.5s;
}
.nav-cont1 .nav-cont2 nav ul i {
  position: absolute;
  right: 5%;
  font-size: 2rem;
}
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
}
.nav-cont1 .nav-cont2 nav ul li {
  list-style-type: none;
}
.nav-cont1 .nav-cont2 nav ul li a {
  font-family: "poppins";
  text-shadow: 1px 1px 2px black;
  transition: 1s;
}
.nav-cont1 .nav-cont2 nav ul li a:hover {
  text-shadow: 1px 1px 2px rgb(107, 104, 104);
}

section.land-sect {
  height: 100vh;
  background-image: url(../images/Restaurant\ aesthetic.jpeg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1em;
}
section.land-sect .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
section.land-sect .cont h1 {
  color: white;
  font-family: poppins;
  font-size: 1.8rem;
  text-transform: capitalize;
}
section.land-sect .cont p {
  color: white;
  font-size: 1rem;
  font-family: "roboto";
  line-height: 1em;
  font-style: italic;
}
section.land-sect .cont div {
  margin-top: 2em;
}
section.land-sect .cont a {
  margin-top: 2em;
  padding: 1em 2em;
  color: rgb(22, 22, 22);
  text-decoration: none;
  font-size: 1.2em;
  font-family: "poppins";
  font-weight: bold;
  background-color: var(--ac);
  border-radius: 0.8em;
  transition: 1s;
}
section.land-sect .cont a:hover {
  background-color: rgb(204, 184, 158);
}

article.big-cont {
  display: flex;
  flex-direction: column;
}
article.big-cont section.hero-sect {
  display: flex;
  flex-direction: column;
  padding: 2em;
  gap: 2.5em;
}
article.big-cont section.hero-sect .img-cont1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
article.big-cont section.hero-sect .img-cont1 figure {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
article.big-cont section.hero-sect .img-cont1 figure figcaption {
  width: 85%;
  font-size: 1rem;
  font-family: sans-serif;
  color: white;
  margin-top: 0.5em;
  font-style: italic;
}
article.big-cont section.hero-sect .img-cont1 figure img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2em;
}
article.big-cont section.hero-sect .img-cont1 div {
  display: none;
}
article.big-cont section.hero-sect .story {
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
article.big-cont section.hero-sect .story h1 {
  font-size: 2rem;
  font-weight: normal;
  text-transform: capitalize;
  margin-bottom: 0.5em;
  word-spacing: 0.1em;
  font-family: "poppins";
  color: var(--ac);
}
article.big-cont section.hero-sect .story p {
  font-family: sans-serif;
}
article.big-cont section.hero-sect .story p:last-child {
  font-weight: bold;
}
article.big-cont .today-spec {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
article.big-cont .today-spec h1,
article.big-cont .today-spec h3 {
  text-align: center;
}
article.big-cont .today-spec h1 {
  font-size: 2rem;
  font-weight: normal;
  font-family: poppins;
  color: var(--ac);
  margin-top: 0.5em;
}
article.big-cont .today-spec h3 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 2em;
}
article.big-cont .today-spec h3 span {
  font-size: 1rem;
}
article.big-cont .today-spec .swiper {
  width: 63%;
  border-radius: 1em;
}
article.big-cont .today-spec .swiper .swiper-button-prev,
article.big-cont .today-spec .swiper .swiper-button-next {
  color: rgb(218, 169, 106);
  text-shadow: 0px 0px 4px black;
  font-weight: bold;
}
article.big-cont .today-spec .swiper .swiper-button-prev:hover,
article.big-cont .today-spec .swiper .swiper-button-next:hover {
  color: white;
  text-shadow: 0px 0px 4px rgb(218, 147, 56);
}
article.big-cont .today-spec .swiper .swiper-slide {
  height: 360px;
  background-color: #333;
  border-radius: 1em;
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont {
  width: 100%;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont .star {
  display: flex;
  place-content: space-between;
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont .star i {
  color: rgb(218, 169, 106);
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont .star a {
  display: inline;
  border-bottom: 2px solid rgb(218, 169, 106);
  font-family: "poppins";
  font-weight: bold;
  color: white;
  text-decoration: none;
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont .star a:hover {
  color: rgb(218, 169, 106);
  border-bottom: none;
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont p:first-child {
  font-size: 1.1rem;
  font-family: "poppins";
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont i.fa-clock {
  color: red;
}
article.big-cont .today-spec .swiper .swiper-slide .text-cont p.t {
  color: red;
  font-family: "poppins";
  display: inline;
  margin-left: 1.5em;
  font-size: 0.8rem;
}
article.big-cont .today-spec .swiper img {
  border-radius: 1em;
  -o-object-fit: cover;
     object-fit: cover;
}

section.discover {
  display: block;
  color: white;
  text-align: center;
  padding: 5em 2em;
}
section.discover .cont1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5em;
}
section.discover .cont1 h1 {
  font-size: 1.5rem;
  font-family: "poppins";
}
section.discover .cont1 p {
  font-family: "mon";
}
section.discover .cont1 a {
  padding: 1em 2em;
  color: rgb(22, 22, 22);
  text-decoration: none;
  font-size: 1.2em;
  font-family: "poppins";
  font-weight: bold;
  background-color: var(--ac);
  border-radius: 0.8em;
  margin-top: 0.5em;
}
section.discover .cont1 a:hover {
  background-color: rgb(209, 178, 137);
}
section.discover h1 {
  font-size: 2rem;
  font-family: "poppins";
  text-transform: capitalize;
  color: var(--ac);
}
section.discover h1 span {
  display: block;
}

section.comments {
  background-image: url("../images/buisness.jpeg");
  height: 80vh;
  width: 100%;
  background-size: cover;
  margin-bottom: 2em;
}
section.comments h1 {
  text-align: center;
  margin-top: 1.5em;
  color: white;
  text-transform: capitalize;
  text-shadow: 1px 1px 1px black;
  font-weight: normal;
  font-family: "poppins";
}
section.comments .container {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.301);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1.5em;
}
section.comments .container .swiper-pagination {
  display: none;
}
section.comments .container .swiper {
  width: 70%;
}
section.comments .container .swiper .swiper-button-next,
section.comments .container .swiper .swiper-button-prev {
  color: rgb(218, 169, 106);
  text-shadow: 0px 0px 4px white;
  font-weight: bold;
}
section.comments .container .swiper .swiper-button-next:hover,
section.comments .container .swiper .swiper-button-prev:hover {
  color: white;
  text-shadow: 0px 0px 4px rgb 218, 169, 106;
}
section.comments .container .swiper .comment {
  display: flex;
  gap: 1em;
  color: white;
  flex-direction: column;
  font-family: sans-serif;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.315);
  text-align: center;
  border-radius: 1em;
  padding: 1em 0.5em;
}
section.comments .container .swiper .comment img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

section.chef {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.chef .cont {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  font-family: "roboto";
  color: white;
  text-transform: capitalize;
  text-align: center;
}
section.chef .cont img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2em;
}
section.chef .cont h3 {
  font-weight: bold;
  font-family: "roboto";
}
section.chef h1 {
  font-size: 2rem;
  text-transform: capitalize;
  font-family: "poppins";
  color: var(--ac);
  margin: 0.5em;
}

section.gallery {
  width: 100%;
  height: 100vh;
  padding: 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
section.gallery h1 {
  font-family: "poppins";
  text-transform: capitalize;
  color: var(--ac);
  font-size: 2rem;
  text-align: center;
}
section.gallery p {
  text-align: center;
  color: white;
  font-family: sans-serif;
}
section.gallery .swiper {
  width: 100%;
  height: 100%;
}
section.gallery .swiper .swiper-slide {
  background-size: cover;
  border-radius: 1.5em;
}
section.gallery .swiper .swiper-slide img {
  border-radius: 1.5em;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.foot-head {
  padding: 1.5em;
  background-color: #0e0d0d;
}
section.foot-head ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  flex-flow: row wrap;
  width: 100%;
}
section.foot-head ul li {
  list-style-type: none;
  position: relative;
}
section.foot-head ul li:nth-child(8) i {
  color: white;
  margin-right: 0.3em;
}
section.foot-head ul li:nth-child(2) i {
  color: steelblue;
  margin-right: 0.5em;
}
section.foot-head ul li:nth-child(3) i {
  color: white;
  margin-right: 0.5em;
}
section.foot-head ul li:nth-child(4) i {
  color: steelblue;
  margin-right: 0.5em;
}
section.foot-head ul li a.logo:first-child {
  font-weight: bold;
  font-size: 1.4em;
  font-family: lit;
}
section.foot-head ul li form {
  display: flex;
}
section.foot-head ul li input {
  padding: 0.5em;
  display: block;
  border: 1px solid white;
  box-shadow: 0px 0px 1px 2px white;
  font-family: "poppins";
  width: 100%;
}
section.foot-head ul li button {
  padding: 0.5em;
  display: inline;
  background-color: rgb(218, 147, 56);
  box-shadow: 0px 0px 1px 2px white;
  outline-color: none;
  font-family: lit;
  color: white;
}
section.foot-head a {
  color: white;
  text-decoration: none;
  font-family: "poppins";
  font-size: 1rem;
}

section.foot-bottom {
  color: white;
  padding: 0.5em;
  background-color: rgb(218, 147, 56);
}
section.foot-bottom .container {
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 2px 2px 2px black;
}

@media screen and (min-width: 768px) {
  .nav-cont1 {
    height: 70px;
    align-items: flex-start;
    padding-left: 4em;
  }
  .nav-cont1 .nav-cont2 {
    display: flex;
    justify-content: flex-end;
  }
  .nav-cont1 .nav-cont2 a.logo {
    font-size: 1.6rem;
  }
  .nav-cont1 .nav-cont2 i.fa-bars {
    display: none;
  }
  .nav-cont1 .nav-cont2 nav {
    display: flex;
    position: static;
    height: auto;
    background-color: transparent;
  }
  .nav-cont1 .nav-cont2 nav ul {
    flex-direction: row;
    height: 50px;
    padding: 0em;
    align-items: center;
    background-color: transparent;
    gap: 3em;
  }
  .nav-cont1 .nav-cont2 nav ul a {
    font-size: 1.2rem;
  }
  .nav-cont1 .nav-cont2 nav ul a:hover {
    border-bottom: 2px solid var(--ac);
    color: var(--ac);
    text-shadow: 1px 1px 2px black;
  }
  .nav-cont1 .nav-cont2 nav ul hr {
    display: none;
  }
  .nav-cont1 .nav-cont2 nav ul i {
    display: none;
  }
  section.land-sect .cont {
    width: 60%;
  }
  section.land-sect .cont h1 {
    font-size: 3rem;
  }
  section.land-sect .cont p {
    font-size: 1.4em;
    width: 100%;
    text-align: center;
  }
  section.land-sect .cont div {
    margin-top: 2em;
  }
  section.land-sect .cont div a {
    padding: 1em 2em;
    transition: 2s;
  }
  article.big-cont section.hero-sect {
    flex-direction: row;
    justify-content: center;
    padding: 4em;
  }
  article.big-cont section.hero-sect .img-cont1 {
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
  }
  article.big-cont section.hero-sect .img-cont1 div {
    display: flex;
    gap: 2em;
  }
  article.big-cont section.hero-sect .img-cont1 figure img {
    width: 200px;
    height: 200px;
    border-radius: 0;
  }
  article.big-cont section.hero-sect .img-cont1 figure figcaption {
    display: none;
  }
  article.big-cont section.hero-sect .img-cont1 figure:nth-child(3),
  article.big-cont section.hero-sect .img-cont1 figure:nth-child(4) {
    display: block;
  }
  article.big-cont section.hero-sect .story {
    width: 50%;
    justify-content: center;
    line-height: 1.6rem;
    align-items: flex-start;
    text-align: left;
  }
  article.big-cont section.hero-sect .story h1 {
    font-size: 3rem;
  }
  article.big-cont section.hero-sect .story p {
    text-align: left;
    font-size: 1.2em;
  }
  article.big-cont .today-spec {
    height: 100vh;
  }
  article.big-cont .today-spec h1 {
    font-size: 3rem;
  }
  article.big-cont .today-spec h3 {
    font-size: 1.2em;
  }
  article.big-cont .today-spec .swiper {
    height: 100%;
    width: 50%;
  }
  article.big-cont .today-spec .swiper img {
    height: 100%;
    width: 100%;
  }
  article.big-cont .today-spec .swiper .swiper-slide .text-cont {
    margin-top: -2em;
    padding: 2em 2em;
    background-color: #222;
    text-align: center;
  }
  article.big-cont .today-spec .swiper .swiper-slide .text-cont .star {
    gap: 2em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  section.discover {
    display: flex;
    justify-content: center;
    gap: 2em;
    align-items: center;
  }
  section.discover .cont1 {
    width: 40%;
  }
  section.discover .cont1 h1 {
    font-size: 3rem;
    font-weight: normal;
  }
  section.discover .cont1 p {
    font-size: 1.2em;
  }
  section.discover .cont2 {
    background-image: url("../images/yoshina.jpeg");
    width: 500px;
    height: 500px;
    background-size: cover;
  }
  section.comments {
    margin-bottom: 0;
    height: 100vh;
  }
  section.comments h1 {
    font-size: 3rem;
  }
  section.comments .container {
    height: 100%;
  }
  section.comments .container .comment {
    justify-content: center;
  }
  section.comments .container p {
    font-size: 1.2em;
  }
  section.comments .container .swiper-pagination {
    display: block;
  }
  section.comments .container .swiper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.301);
    height: 100%;
  }
  section.comments .container .swiper .comment {
    flex-direction: row;
    justify-content: center;
  }
  section.comments .container .swiper .comment img {
    height: 300px;
    width: 300px;
  }
  section.comments .container .swiper .comment p {
    width: 50%;
  }
  section.chef {
    padding: 2em;
  }
  section.chef h1 {
    font-size: 3rem;
  }
  section.chef .cont {
    flex-direction: row;
    gap: 2em;
  }
  section.chef .cont img {
    transition: 2s;
  }
  section.chef .cont img:hover {
    transform: scale(115%);
  }
  section.chef .cont h3 {
    margin-top: 1em;
  }
  section.gallery {
    height: 100vh;
  }
  section.gallery h1 {
    font-size: 3rem;
  }
  section.gallery p {
    font-size: 1.2em;
  }
  section.gallery .swiper {
    height: 80vh;
  }
  section.foot-head {
    padding: 2.5em;
  }
  section.foot-head ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  section.foot-bottom .container {
    font-family: lit;
  }
}/*# sourceMappingURL=main.css.map */