@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2"),
    url("./fonts/Satoshi-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2"),
    url("./fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Light.woff2") format("woff2"),
    url("./fonts/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2"),
    url("./fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"),
    url("./fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-LightItalic.woff2") format("woff2"),
    url("./fonts/Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-MediumItalic.woff2") format("woff2"),
    url("./fonts/Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-BoldItalic.woff2") format("woff2"),
    url("./fonts/Satoshi-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-BlackItalic.woff2") format("woff2"),
    url("./fonts/Satoshi-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Italic.woff2") format("woff2"),
    url("./fonts/Satoshi-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
  z-index: 0;
  position: relative;
  background-color: #000;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./images/bg-img.png");
  opacity: 1;
  z-index: 1;
}

body > * {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
}

header {
  position: absolute;
  top: 4rem;
  left: 5rem;
  z-index: 99;
  background-color: #0a0b0a;
  border-radius: 10px;
}

header ul {
  display: flex;
  align-items: center;
  margin: 0px;
  padding: 0px;
}

header ul li {
  font-family: "Satoshi", sans-serif;
  font-weight: 300;
  color: #efe7d2;
  list-style: none;
  margin-right: 1rem;
  padding: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-decoration: none;
}

header ul li a {
  text-decoration: none;
  color: #efe7d2;
}

header ul li a:hover {
  color: #faf8f2;
  transition: all 2s ease-in-out;
}

.nav-menu img {
  width: 120px;
}

.forum-regular {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
}

main {
  height: 100vh;
  display: flex;
  align-items: center;
}

.banner {
  width: 100%;
  height: 95vh;
  background: url("./images/banner.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.menu-banner {
  width: 100%;
  height: 95vh;
  background: url("./images/menu-page.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.reservation-banner {
  width: 100%;
  height: 95vh;
  background: url("./images/reservation-page.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.about-banner {
  width: 100%;
  height: 97vh;
  background: url("./images/about.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.contact-banner {
  width: 100%;
  height: 95vh;
  background: url("./images/contact-image.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.blogs-banner {
  width: 100%;
  height: 95vh;
  background: url("./images/blogs.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.blog-detail-banner {
  width: 100%;
  height: 95vh;
  background: url("./images/blog-detail-banner.png");
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: end;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50vh;
  position: relative;
}

.banner-text::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #212121 50%,
    #000 100%
  );
  position: absolute;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 2;
}

.banner-text h2 {
  font-size: 140px;
  letter-spacing: 3px;
  color: #efe7d2;
  margin-top: 9rem;
  margin-left: 5rem;
  line-height: 1;
  position: absolute;
  z-index: 9;
}

.menu-banner h2 {
  margin-top: 18rem !important;
}

.main-cards {
  height: 95vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-card {
  overflow: hidden;
  position: relative;
}

.button-area {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.curve-1 {
  height: 24px;
  width: 24px;
}

.curve-2 {
  height: 24px;
  width: 24px;
}

.main-card button {
  background-color: #0a0b0a;
  font-size: 1rem;
  color: #000;
  color: #efe7d2;
  line-height: 100%;
  letter-spacing: 1px;
  padding: 18px 24px 12px;
  gap: 32px;
  border-radius: 24px 0px 0px 0px;
  border: none;
}

.nav-menu li button {
  background-color: #181818;
  color: #efe7d2;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  font-weight: 300;
  padding: 0.5rem;
}

header ul li:last-child {
  margin-right: 0px;
}

.icons {
  color: #efe7d2;
  right: 1rem;
  position: absolute;
  bottom: 1rem;
}

.icons i {
  border: 1px solid #686868;
  padding: 0.5rem;
  border-radius: 50%;
}

.menu {
  margin-top: 32px;
  margin-bottom: 0px;
}

.menu ul {
  display: flex;
  justify-content: center;
  width: 100%;
}

.menu ul li {
  color: #efe7d2;
  margin-right: 0.25rem;
  list-style: none;
  font-family: "Satoshi", serif;
  font-size: 0.75rem;
  border: 1px solid rgba(239, 231, 210, 0.15);
  padding: 8px 12px;
  border-radius: 10px;
  letter-spacing: 1px;
}

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

.story-header img {
  width: 40px;
}

.story-header h3 {
  color: #efe7d2;
  font-size: 32px;
  margin: 0px 20px;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 96px;
  margin-bottom: 48px;
}

.menu-header-first {
  margin-top: 64px !important;
}

.menu-header img {
  width: 60px;
}

.menu-header h3 {
  color: #efe7d2;
  font-size: 32px;
  margin: 0px 20px;
}

.food {
  display: flex;
  margin-bottom: 32px;
}

.food-info {
  color: #efe7d2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
  max-width: 560px;
}

.food-info h4 {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.food-info p {
  font-size: 14px;
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0px;
  font-weight: 200;
  color: #f5f2ea;
  opacity: 0.7;
  margin-bottom: 0px;
}

.menu-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgb(239, 231, 210, 0.15);
  border-radius: 16px;
  height: 87vh;
}

.menu-full p {
  color: #efe7d2;
  font-family: "Satoshi", sans-serif;
  font-weight: 200;
  font-size: 18px;
  width: 500px;
  text-align: center;
  line-height: 150%;
}

.menu-footer {
  color: #efe7d2;
  font-size: 14px;
  font-family: "Satoshi", sans-serif;
  line-height: 150%;
  letter-spacing: 0px;
  border: 1px solid rgb(239, 231, 210, 0.15);
  border-radius: 16px;
  height: 60px;
  margin-top: 1rem;
}

.menu-footer span {
  margin: 0px 10px;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  width: 600px;
}

input {
  font-family: "Satoshi", sans-serif;
  width: 100%;
  border-radius: 10px;
  padding: 16px 24px;
  background-color: rgba(24, 24, 24, 0.5);
  color: #efe7d2;
  stroke: #efe7d2;
  border-color: rgba(239, 231, 210, 0.15);
  gap: 10px;
  font-size: 16px;
  font-weight: 100;
  margin-bottom: 16px;
}

input::placeholder {
  color: #efe7d2;
}

.bottom-inputs input {
  width: 190px;
}

form button {
  background-color: #efe7d2;
  color: #0a0b0a;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 1px;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #efe7d2;
  padding: 48px;
  border: 1px solid rgba(239, 231, 210, 0.15);
  border-radius: 16px;
}

.about-card h3 {
  letter-spacing: 1px;
  line-height: 120%;
  font-size: 32px;
}

.about-card p {
  font-family: "Satoshi", sans-serif;
  line-height: 180%;
  font-size: 16px;
  font-weight: 100;
}

.about-image {
  border-radius: 16px;
  height: 328px;
  object-fit: cover;
}

.star-card {
  padding: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #efe7d2;
  border: 1px solid rgba(239, 231, 210, 0.15);
  border-radius: 16px;
  /* margin: 16px 0px; */
}

.stars {
  margin-bottom: 15px;
}

.star-card h3 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.star-card h4 {
  color: #f5f2ea;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  font-weight: 200;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #efe7d2;
  padding: 48px;
  border: 1px solid rgba(239, 231, 210, 0.15);
  border-radius: 16px;
}

.contact-card h3 {
  letter-spacing: 1px;
  line-height: 120%;
  font-size: 24px;
  text-align: center;
}

.contact-card p {
  font-family: "Satoshi", sans-serif;
  line-height: 180%;
  font-size: 16px;
  font-weight: 100;
}

.contact-image {
  border-radius: 16px;
  object-fit: cover;
}
.opening-hours {
  margin-bottom: 0px;
  margin-top: 48px;
  padding-left: 0px;
}
.opening-hours li {
  font-family: "Satoshi", sans-serif;
  list-style: none;
  line-height: 180%;
  font-size: 16px;
  font-weight: light;
  font-weight: 100;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}

.insta-image {
  border-radius: 16px;
}

.get-in-touch {
  font-family: "Satoshi", sans-serif;
  font-weight: 100;
  font-size: 14px;
}

.get-in-touch i {
  margin-left: 0.5rem;
}

.blog {
  display: flex;
  margin-bottom: 32px;
}

.blog-info {
  color: #efe7d2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 48px;
  max-width: 404px;
}

.blog-info h4 {
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-info p {
  font-size: 16px;
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0px;
  font-weight: 200;
  color: #f5f2ea;
  opacity: 0.7;
  margin-bottom: 0px;
  text-align: left;
  width: 100%;
}

.blog-info span {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  margin-bottom: 8px;
}

.blog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 96px;
  margin-bottom: 48px;
}

.blog-header h3 {
  color: #efe7d2;
  font-size: 64px;
  line-height: 110%;
  width: 732px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.blog-header span {
  margin-bottom: 16px;
  color: #efe7d2;
  text-transform: uppercase;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
}

.blog-detail h4 {
  color: #efe7d2;
  font-size: 32px;
  text-transform: uppercase;
  width: 732px;
  margin-bottom: 16px;
}

.blog-detail p {
  width: 732px;
  text-align: left;
  color: rgba(245, 242, 234, 0.7);
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  line-height: 180%;
  font-weight: 100;
  margin-bottom: 48px;
}

@media screen and (max-width: 1600px) {
  header {
    background-color: transparent;
    top: 1rem;
    left: 1rem;
  }
  header .nav-menu > li:not(:first-child) {
    display: none;
  }
  main {
    height: auto;
    margin-top: 12px;
  }
  .banner {
    height: 98vh;
    margin-bottom: 12px;
  }
  .banner-text h2 {
    font-size: 54px;
    margin-left: 1rem;
    margin-top: 16rem;
  }
  .icons {
    bottom: 2rem;
  }
  .main-cards {
    margin-bottom: 12px;
  }
  .menu-full p {
    width: 100%;
    text-align: left;
    font-size: 12px;
  }
  .menu-list img {
    width: 100px;
    height: 75px;
  }
  .food-info h4 {
    font-size: 16px;
  }
  .menu-full {
    margin-top: 2rem;
    padding: 0 12px;
    height: auto;
  }
  .food-list {
    padding: 0px 12px;
  }
  .menu-header {
    margin-top: 64px;
  }
  .menu-header h3 {
    font-size: 24px;
  }
  .menu-footer {
    margin-bottom: 16px;
  }
  form,
  .bottom-inputs input {
    width: 100%;
  }
  form {
    margin-top: 24px;
    margin-bottom: 64px;
  }
  input {
    font-size: 14px;
  }
  .blog-info h4 {
    font-size: 14px;
  }
  .blog img {
    width: 50%;
  }
  .blog-info {
    margin-left: 8px;
  }
  .blog-detail h4 {
    width: 100%;
    font-size: 22px;
  }
  .blog-header h3 {
    width: 100%;
    font-size: 24px;
  }

  .open #gloval-nav li a {
    font-size: 42px;
  }
  .button-area img {
    display: none;
  }
  .main-card button {
    border-radius: 0px;
  }
  .blog-info span {
    font-size: 10px;
  }
}

#nav-toggle {
  height: 48px;
  cursor: pointer;
  border: 1px solid rgba(239, 231, 210, 0.15);
  border-radius: 8px;
  padding: 8px;
}

.open #nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  height: 48px;
  cursor: pointer;
}

#nav-toggle > div {
  position: relative;
  width: 28px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #efe7d2;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 7px;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 21px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

#nav-toggle {
  z-index: 1000;
}

#gloval-nav {
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  border: 1px solid rgba(239, 231, 210, 0.15);
}

#gloval-nav a {
  display: block;
  color: #efe7d2;
  text-decoration: none;
  transition: color 0.6s ease;
  font-size: 72px;
  font-family: "Forum", sans-serif;
  font-weight: 400;
}
#gloval-nav a:hover {
  color: #faf8f2;
}
#gloval-nav ul {
  list-style: none;
  flex-direction: column;
}
#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: 0.6s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: 0.75s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: 0.9s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

.main-card {
  position: relative;
  overflow: hidden;
}

.main-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #212121 50%,
    #000 100%
  );
  z-index: 2;
}

.main-card:hover::after {
  opacity: 0.3;
}

.food {
  cursor: pointer;
}

@media screen and (min-width: 2000px) {
  .banner-text h2 {
    margin-top: 30rem !important;
  }
}
