@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  margin: 0;
}

body::-webkit-scrollbar {
  display: none;
}

h2 {
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  color: #734807;
  margin: 0;
}

h3 {
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  color: #734807;
  margin: 0;
}

p {
  font-family: "Inria Serif", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: #666666;
  margin-block-start: 0;
  margin-block-end: 0;
}

p span {
  font-weight: 600;
  color: #000;
}

button {
  display: block;
  background-color: #000;
  padding: 0.5rem 1rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border: none;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 10;
}

.header .logo {
  cursor: pointer;
}

.header .logo img {
  display: block;
  width: 10rem;
  aspect-ratio: 4/3;
  margin: 0 auto -1px auto;
  object-fit: fill;
}

.header .menu_mb {
  display: none;
}

.header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #00000014;
  background-image: linear-gradient(
    to right,
    #00000000,
    #00000024 10%,
    #00000024 50%,
    #00000024 90%,
    #00000000
  );
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.header .nav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.header .nav nav a {
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.header .nav nav a:hover {
  text-decoration: underline;
}

.header .nav nav .current {
  text-decoration: underline;
  color: #808080;
}

/* Animation for menu */

.header.active {
  position: fixed;
  top: -5rem;
  left: 0;
}

.header.fixed {
  position: fixed;
  top: -5rem;
  transform: translate(0, 5rem);
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 4px 0 #000;
}

.header.fixed .logo {
  display: none;
}

/* Main */

.fake_header {
  height: 11.6rem;
}

/* Home */
.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  aspect-ratio: 21/9;
  padding: 4rem 0;
  box-sizing: border-box;
}

.home_banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home_intro {
  max-width: 80rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.home_intro .intro_hero {
  width: 100%;
  margin: 0 0 2rem 0;
}

.home_intro .intro_hero .logo {
  width: 100%;
  box-sizing: border-box;
}

.home_intro .intro_hero .logo img {
  display: block;
  width: 20rem;
  aspect-ratio: 4/3;
  margin: 0 auto -1px auto;
  object-fit: fill;
}

.home_intro button {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto 2rem auto;
  padding: 1rem 3rem;
}

.home_intro .intro_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.home_intro .intro_content .text {
  width: 50%;
  box-sizing: border-box;
}

.home_intro .intro_content:nth-child(odd) .text {
  padding: 0 2rem 0 0;
}

.home_intro .intro_content:nth-child(even) {
  flex-direction: row-reverse;
}

.home_intro .intro_content:nth-child(even) .text {
  padding: 0 0 0 2rem;
}

.home_intro .intro_content .text h3 {
  margin: 0 0 2rem 0;
}

.home_intro .intro_content .image {
  width: 50%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.home_intro .intro_content .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home_reservation {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 0;
  box-sizing: border-box;
}

.home_reservation form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.home_reservation form h2 {
  width: 100%;
  text-align: center;
}

.home_reservation form label {
  font-family: "Inria Serif", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #666666;
}

.home_reservation form input,
.home_reservation form select {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #999999;
  background-color: #bbbbbb26;
  padding: 1rem;
  outline: none;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
}

.home_reservation form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("Images/Icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 3% 40%;
}

.home_reservation form select option {
  color: #000;
  background-color: #fff;
  padding: 1rem !important;
}

.home_reservation form select option:hover {
  background-color: #000 !important;
}

.home_reservation form button {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto 0 auto;
  padding: 1rem 3rem;
}

/* About */
.about_banner {
  max-width: 80rem;
  aspect-ratio: 4/3;
  margin: 0 auto;
  padding: 4rem 0;
  box-sizing: border-box;
}

.about_banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_content {
  max-width: 80rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.about_content .logo {
  width: 100%;
  box-sizing: border-box;
}

.about_content .logo img {
  display: block;
  width: 20rem;
  aspect-ratio: 4/3;
  margin: 0 auto -1px auto;
  object-fit: fill;
}

.about_content p {
  width: 60%;
  text-align: center;
  margin: 0 auto 2rem auto;
}

.about_content .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.about_content .content .text {
  width: 50%;
  box-sizing: border-box;
}

.about_content .content:nth-child(odd) .text {
  padding: 0 2rem 0 0;
}

.about_content .content:nth-child(even) {
  flex-direction: row-reverse;
}

.about_content .content:nth-child(even) .text {
  padding: 0 0 0 2rem;
}

.about_content .content .text h2 {
  margin: 0 0 2rem 0;
}

.about_content .content .text p {
  width: 100%;
  text-align: left;
  padding: 0;
}

.about_content .content .image {
  width: 50%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.about_content .content .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Menu */
.menu_banner {
  max-width: 80rem;
  aspect-ratio: 4/3;
  margin: 0 auto;
  padding: 4rem 0;
  box-sizing: border-box;
}

.menu_banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu_content {
  max-width: 80rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.menu_content .logo {
  width: 100%;
  box-sizing: border-box;
}

.menu_content .logo img {
  display: block;
  width: 20rem;
  aspect-ratio: 4/3;
  margin: 0 auto -1px auto;
  object-fit: fill;
}

.menu_content .schedule {
  width: 50%;
  margin: 0 auto 2rem auto;
  box-sizing: border-box;
}

.menu_content .schedule h4 {
  text-align: center;
  margin: 0;
  color: #666666;
}

.menu_content .schedule p {
  text-align: center;
  margin: 0 0 2rem 0;
}

.menu_content .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.menu_content .content .text {
  width: 50%;
  box-sizing: border-box;
}

.menu_content .content:nth-child(odd) .text {
  padding: 0 2rem 0 0;
}

.menu_content .content:nth-child(even) {
  flex-direction: row-reverse;
}

.menu_content .content:nth-child(even) .text {
  padding: 0 0 0 2rem;
}

.menu_content .content .text h2 {
  margin: 0 0 2rem 0;
}

.menu_content .content .text p {
  text-align: left;
  padding: 0;
}

.menu_content .content .image {
  width: 50%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  overflow: hidden;
}

.menu_content .content .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}

.menu_content .content .image img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

/* Banquet */
.banquet_banner {
  max-width: 80rem;
  aspect-ratio: 4/3;
  margin: 0 auto;
  padding: 4rem 0;
  box-sizing: border-box;
}

.banquet_banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banquet_content {
  max-width: 80rem;
  margin: 0 auto 4rem auto;
  box-sizing: border-box;
}

.banquet_content .hero {
  width: 75%;
  margin: 0 auto 2rem auto;
  box-sizing: border-box;
}

.banquet_content .hero h2 {
  text-align: center;
  margin: 0 0 2rem 0;
  padding: 0 10rem;
}

.banquet_content .hero p {
  text-align: center;
  margin: 0 0 2rem 0;
}

.banquet_content .details {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.banquet_content .details img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.banquet_content .details .content {
  width: 31.5%;
  box-sizing: border-box;
}

.banquet_content .details .content .image {
  width: 100%;
  box-sizing: border-box;
}

.banquet_content .details .content .text {
  width: 100%;
  box-sizing: border-box;
}

.banquet_content .details .content .text h2 {
  margin: 2rem 0;
}

/* Offer */
.offer_content {
  position: relative;
  max-width: 80rem;
  margin: 4rem auto 0 auto;
  box-sizing: border-box;
}

.offer_content .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.offer_content .content.hidden {
  display: none;
}

.offer_content .content .text {
  width: 50%;
  box-sizing: border-box;
}

.offer_content .content:nth-child(odd) .text {
  padding: 0 2rem 0 0;
}

.offer_content .content:nth-child(even) {
  flex-direction: row-reverse;
}

.offer_content .content:nth-child(even) .text {
  padding: 0 0 0 2rem;
}

.offer_content .content .text h2 {
  margin: 0 0 2rem 0;
}

.offer_content .content .text p {
  text-align: left;
  padding: 0;
}

.offer_content .content .image {
  width: 50%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.offer_content .content .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer_content .view_more {
  display: block;
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  color: #000;
  padding: 2rem 4rem;
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  font-weight: 400;
  box-sizing: border-box;
}

.offer_content .view_more:hover {
  background-color: #f3f3f3;
  transform: translate(-50%, 0) scale(1.1);
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Footer */
footer {
  width: 100%;
  border-top: 1px solid #00000014;
  box-sizing: border-box;
}

.footer {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 0;
}

.footer .container_footer {
  display: grid;
  grid-template-columns: 4fr 6fr 2fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.footer .container_footer p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.footer .container_footer .logo {
  width: 100%;
  box-sizing: border-box;
}

.footer .container_footer .logo img {
  display: block;
  width: 20rem;
  aspect-ratio: 4/3;
  object-fit: fill;
}

.footer .container_footer .contact {
  width: 100%;
  box-sizing: border-box;
}

.footer .container_footer .social_network {
  width: 100%;
  box-sizing: border-box;
}

.footer .container_footer .social_network p {
  text-align: center;
}

.footer .container_footer .social_network img {
  display: block;
  width: 100%;
  max-width: 4rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin: 0 auto 1rem auto;
}

.footer .container_footer .social_network img:nth-last-child(1) {
  margin-bottom: 0;
}

.copyright_text {
  text-align: center;
  padding: 0 0 4rem 0;
}

@media (max-width: 1400px) {
  .home_intro,
  .about_content,
  .menu_content,
  .banquet_content,
  .offer_content,
  .footer {
    padding: 0 2rem;
  }

  .home_banner {
    gap: 0;
    aspect-ratio: 4/3;
  }

  .home_banner img {
    width: 50%;
    height: 100%;
  }

  .footer {
    padding: 4rem 2rem;
  }
}

@media (max-width: 992px) {
  .home_intro .intro_content .image,
  .about_content .content .image,
  .menu_content .content .image,
  .offer_content .content .image {
    width: 50%;
    aspect-ratio: 2/3;
  }

  .menu_content .schedule {
    width: 80%;
  }

  .about_content p {
    width: 100%;
  }

  .banquet_content .hero {
    width: 100%;
  }

  .banquet_content .hero h2 {
    padding: 0;
  }

  .banquet_content .details .content {
    width: 45%;
  }

  .footer {
    padding: 14rem 2rem 2rem 2rem;
  }

  .footer .container_footer {
    position: relative;
    grid-template-columns: 7fr 1fr;
  }

  .footer .container_footer .logo {
    position: absolute;
    width: 15rem;
    aspect-ratio: 4/3;
    top: -12rem;
    left: 50%;
    transform: translate(-50%, 0);
    box-sizing: border-box;
  }

  .footer .container_footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .copyright_text {
    padding: 0 2rem 2rem 2rem;
  }
}

@media (max-width: 600px) {
  h2 {
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    color: #734807;
    margin: 0;
  }

  h3 {
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: #734807;
    margin: 0;
  }

  p {
    font-size: 14px;
  }

  button {
    font-size: 10px;
  }

  /* Header */
  .header {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .header .menu_mb {
    position: relative;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-items: center;
    flex-direction: column;
    width: 3rem;
    aspect-ratio: 1/1;
    padding: 0.5rem;
    border: 2px solid #000;
    border-radius: 5px;
    box-sizing: border-box;
    z-index: 6;
  }

  .header .menu_mb hr {
    width: 100%;
    height: 3px;
    background-color: #000;
    margin-block-start: 0;
    margin-block-end: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
  }

  /* Animation for menu */
  .header.fixed .logo {
    display: block;
  }

  .header .menu_mb.close {
    transition: all 0.5s ease-in-out;
  }

  .header .menu_mb.close hr:nth-child(1) {
    width: 2.5rem;
    transform: rotate(45deg) translate(4px, 13px);
    transition: all 0.5s ease-in-out;
  }

  .header .menu_mb.close hr:nth-child(2) {
    display: none;
    transition: all 0.5s ease-in-out;
  }

  .header .menu_mb.close hr:nth-child(3) {
    width: 2.5rem;
    transform: rotate(-45deg) translate(4px, -13px);
    transition: all 0.5s ease-in-out;
  }

  .header .nav nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 70%;
    height: 100vh;
    border-radius: 10px;
    background-color: #fff;
    padding: 2rem;
    opacity: 0;
    transform: translate(5rem, 0);
    transition: all 0.5s ease-in-out;
    box-sizing: border-box;
    z-index: -5;
  }

  .header .logo img {
    display: block;
    width: 8rem;
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .header .nav {
    padding: 0;
    border: none;
  }

  .header .nav nav.active {
    right: -5rem;
    transform: translate(-5rem, 0);
    transition: all 0.5s ease-in-out;
    opacity: 1;
    border-radius: 0;
    z-index: 5;
  }

  .header .nav button {
    padding: 0.5rem 0.5rem;
  }

  /* Main */
  main.blur {
    position: relative;
    filter: blur(5px) brightness(0.8);
    transition: all 0.5s ease-in-out;
  }

  .fake_header {
    height: 6rem;
  }

  .home_intro,
  .about_content,
  .menu_content,
  .banquet_content,
  .offer_content,
  .footer {
    padding: 0 1rem;
  }

  /* Home */
  .home_banner {
    flex-direction: column;
    gap: 0;
    aspect-ratio: 9 / 16;
    padding: 0 0 4rem 0;
  }

  .home_banner img {
    width: 100%;
    height: 50%;
  }

  .home_intro button,
  .home_reservation form button {
    font-size: 18px;
    padding: 1rem 2rem;
  }

  .home_intro .intro_hero {
    width: 100%;
    margin: 0 0 1rem 0;
  }

  .home_intro .intro_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .home_intro .intro_content .text {
    width: 100%;
    box-sizing: border-box;
  }

  .home_intro .intro_content:nth-child(odd) .text {
    padding: 0 0 1rem 0;
  }

  .home_intro .intro_content:nth-child(even) {
    flex-direction: column;
  }

  .home_intro .intro_content:nth-child(even) .text {
    padding: 0 0 1rem 0;
  }

  .home_intro .intro_content .text h3 {
    margin: 0 0 1rem 0;
  }

  .home_intro .intro_content .image {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 0 2rem 0;
    box-sizing: border-box;
  }

  .home_intro .intro_content:nth-last-child(1) .image {
    margin: 0;
  }

  .home_reservation {
    padding: 4rem 1rem;
  }

  /* About */
  .about_banner,
  .menu_banner,
  .banquet_banner {
    aspect-ratio: 9/16;
    padding: 0 0 4rem 0;
  }

  .about_content .logo img,
  .menu_content .logo img {
    width: 15rem;
  }

  .about_content p {
    width: 100%;
  }

  .about_content .content {
    flex-direction: column;
  }

  .about_content .content .text {
    width: 100%;
    box-sizing: border-box;
  }

  .about_content .content .text p {
    margin: 0;
  }

  .about_content .content:nth-child(odd) .text {
    padding: 0 0 1rem 0;
  }

  .about_content .content:nth-child(even) {
    flex-direction: column;
  }

  .about_content .content:nth-child(even) .text {
    padding: 0 0 1rem 0;
  }

  .about_content .content .text h2 {
    margin: 0 0 1rem 0;
  }

  .about_content .content .image {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 0 2rem 0;
    box-sizing: border-box;
  }

  .about_content .content:nth-last-child(1) .image {
    margin: 0;
  }

  /* Menu */
  .menu_content .schedule {
    width: 100%;
  }

  .menu_content .schedule p {
    margin: 0 0 1rem 0;
  }

  .menu_content .content {
    flex-direction: column;
  }

  .menu_content .content .text {
    width: 100%;
    box-sizing: border-box;
  }

  .menu_content .content .text p {
    margin: 0;
  }

  .menu_content .content:nth-child(odd) .text {
    padding: 0 0 1rem 0;
  }

  .menu_content .content:nth-child(even) {
    flex-direction: column;
  }

  .menu_content .content:nth-child(even) .text {
    padding: 0 0 1rem 0;
  }

  .menu_content .content .text h2 {
    margin: 0 0 1rem 0;
  }

  .menu_content .content .image {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 0 2rem 0;
    box-sizing: border-box;
  }

  .menu_content .content:nth-last-child(1) .image {
    margin: 0;
  }

  /* Banquet */
  .banquet_content .hero {
    margin: 0 0 1rem 0;
  }

  .banquet_content .hero h2 {
    margin: 0 0 1rem 0;
  }

  .banquet_content .hero p {
    margin: 0 0 1rem 0;
  }

  .banquet_content .details {
    gap: 1rem;
  }

  .banquet_content .details .content {
    width: 47.5%;
  }

  .banquet_content .details .content .text h2 {
    margin: 1rem 0;
  }

  /* Offer */
  .offer_content .content {
    flex-direction: column;
  }

  .offer_content .content .text {
    width: 100%;
    box-sizing: border-box;
  }

  .offer_content .content .text p {
    margin: 0;
  }

  .offer_content .content:nth-child(odd) .text {
    padding: 0 0 1rem 0;
  }

  .offer_content .content:nth-child(even) {
    flex-direction: column;
  }

  .offer_content .content:nth-child(even) .text {
    padding: 0 0 1rem 0;
  }

  .offer_content .content .text h2 {
    margin: 0 0 1rem 0;
  }

  .offer_content .content .image {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 0 2rem 0;
    box-sizing: border-box;
  }

  .offer_content .content:nth-last-child(2) .image {
    margin: 0;
  }

  .offer_content .view_more {
    font-size: 14px;
    padding: 2rem 2rem;
  }

  /* Footer */
  footer.blur {
    position: relative;
    filter: blur(5px) brightness(0.8);
    transition: all 0.5s ease-in-out;
  }

  .footer {
    padding: 12rem 1rem 1rem 1rem;
  }

  .footer .container_footer {
    position: relative;
    grid-template-columns: 7fr 1fr;
    gap: 1rem;
  }

  .footer .container_footer .logo {
    position: absolute;
    width: 12rem;
    aspect-ratio: 4/3;
    top: -10rem;
    left: 50%;
    transform: translate(-50%, 0);
    box-sizing: border-box;
  }

  .footer .container_footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .copyright_text {
    padding: 0 1rem 1rem 1rem;
  }
}
