html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f3efeb;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/Roboto/Roboto-Medium.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Roboto/roboto-regular.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/roboto-light.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Cormorant/Cormorant-Italic.woff2) format("woff2");
  font-display: swap;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 2.6rem;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: #f9ede1;
  font-size: 1.2rem;
  font-weight: 200;
  text-decoration: none;
}

.current-page {
  color: #e30613;
}

.main-cta-outer {
  padding: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e30613;
  border-radius: 4px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.nav-btn {
  background-color: #e30613;
  padding: 0.85rem 1.4rem;
  color: #f9ede1;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-weight: 200;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}

.nav-btn img {
  margin-top: 1px;
  width: 13px;
  height: auto;
}

.nav-link,
.nav-button {
  transition: filter 0.3s ease;
}

.nav-links:hover .nav-link:not(:hover),
.nav-links:hover .nav-button:not(:hover) {
  filter: blur(1.5px);
}

.nav-button {
  cursor: pointer;
  font-weight: 100;
  font-size: 1.3rem;
  color: #f9ede1;
  background: transparent;
  border: 1px solid #f9ede1;
  padding: 15px 35px;
  border-radius: 45px;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-mobile {
  width: 120px;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #f9ede1;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #f9ede1;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #f3efeb;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 1rem 2rem 1rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #212121;
  font-weight: 100;
  font-size: 2rem;
  line-height: 2rem;
}

main {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  pointer-events: none;
  width: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 253, 0.1) 3.13%,
    rgba(0, 0, 0, 0.3) 67.52%
  );
}

.hero-text {
  position: absolute;
  bottom: 4rem;
  left: 8rem;
  z-index: 3;
}

h1 {
  font-weight: 500;
  font-size: 3rem;
  margin: 1rem 0;
  color: #f9ede1;
}

.menu-file {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f9ede1;
  text-decoration: none;
  font-weight: 200;
  font-size: 1.2rem;
}

.menu-file:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.menu-file img {
  width: 13px;
  height: auto;
}

.menu-buttons {
  margin-top: 3rem;
  display: flex;
  gap: 12px;
}

.menu-buttons a {
  padding: 0.8rem 1.6rem;
  color: #f9ede1;
  border-radius: 35px;
  border: 1px solid #f9ede1;
  margin: 0;
  text-decoration: none;
  font-weight: 200;
  font-size: 1rem;
  transition: background-color 0.2s ease-in-out;
}

.menu-buttons a:hover {
  background-color: #f9ede1;
  color: #2a2929;
}

.menu-section {
  color: #2a2929;
  padding: 6rem 8rem;
  z-index: 2;
  position: relative;
  background-color: #f3efeb;
}

.menu-title h3 {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.menu-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.menu-item h4 {
  font-family: "Cormorant", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}

.menu-item p {
  margin-top: 0.4rem;
  font-weight: 200;
  font-size: 1rem;
}

.menu-price {
  font-size: 1rem;
}

.disclaimer {
  font-weight: 200;
  color: #2a2929;
  font-size: 1rem;
}

footer {
  width: 100%;
  padding: 2rem 8rem 1rem 8rem;
  z-index: 1;
  position: relative;
  background-color: #2a2929;
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}

.footer-links a {
  color: #f9ede1;
  font-weight: 200;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.current-link {
  color: #e30613 !important;
}

.footer-line-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.footer-line {
  background: linear-gradient(
    90deg,
    rgba(28, 28, 28, 0.8) 0%,
    rgba(229, 229, 229, 0.9) 50.23%,
    rgba(28, 28, 28, 0.8) 100%
  );
  height: 0.8px;
  width: 40%;
  margin: 2rem 0;
}

.footer-contact ul {
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  list-style: none;
  line-height: 1.5rem;
}

.footer-contact a {
  font-weight: 200;
  font-size: 1rem;
  color: #f9ede1;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.legal-links {
  color: #f9ede1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.legal-links a {
  color: #f9ede1;
  font-weight: 200;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.5rem;
}

.legal-links a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: #f9ede1;
  font-weight: 200;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.footer-bottom p {
  margin: 0;
  color: #f9ede1;
  font-weight: 200;
  font-size: 0.9rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    bottom: 10%;
  }
  h1 {
    width: 100%;
    font-size: 3rem;
  }
  .menu-buttons {
    flex-wrap: wrap;
    gap: 6px;
  }
  .menu-section {
    padding: 6rem 1rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 6px;
  }
  .footer-bottom {
    margin-top: 2rem;
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
    bottom: 10%;
  }
  h1 {
    width: 100%;
    font-size: 3rem;
  }
  .menu-buttons {
    flex-wrap: wrap;
    gap: 6px;
  }
  .menu-section {
    padding: 6rem 2rem;
  }
  footer {
    padding: 2rem 2rem 1rem 2rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .hero-text {
    left: 6rem;
  }
  h1 {
    font-size: 4rem;
  }
  .menu-buttons {
    flex-wrap: wrap;
    gap: 6px;
  }
  .menu-section {
    padding: 6rem;
  }

  footer {
    padding: 2rem 6rem 1rem 6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1380px) {
  .hero-text {
    left: 6rem;
  }
  h1 {
    font-size: 4rem;
  }
  .menu-buttons {
    flex-wrap: wrap;
    gap: 6px;
  }
  .menu-section {
    padding: 6rem;
  }

  footer {
    padding: 2rem 6rem 1rem 6rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text {
    left: 6rem;
  }
  h1 {
    font-size: 4rem;
  }
  .menu-buttons {
    flex-wrap: wrap;
    gap: 10px;
  }
  .menu-section {
    padding: 6rem;
  }

  footer {
    padding: 2rem 6rem 1rem 6rem;
  }
}
