html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f3efeb;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden !important ;
}

@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;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
}

.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%
  );
}

main {
  position: fixed;
  top: 0;
  z-index: 1;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-text {
  position: absolute;
  left: 6rem;
  bottom: 12%;
  z-index: 3;
}

h1 {
  font-weight: 500;
  font-size: 12rem;
  margin: 0;
  color: #f9ede1;
  text-transform: uppercase;
}

.hero-text p {
  color: #f9ede1;
  font-weight: 200;
  font-size: 1.2rem;
  margin: 0 0 0 10px;
}

.hero-cta {
  margin-top: 1.5rem;
  margin-left: 10px;
}

.hero-gradient {
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(101, 101, 101, 0) 54.08%,
    rgba(13, 13, 13, 0.5) 74.69%
  );
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
}

.intro-section {
  padding: 8rem;
  z-index: 2;
  position: relative;
  margin-top: 100vh;
  background-color: #f3efeb;
}

.intro-layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4rem;
}

.intro-img {
  width: 55%;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow:
    0 198px 55px 0 rgba(49, 21, 2, 0),
    0 127px 51px 0 rgba(49, 21, 2, 0.01),
    0 71px 43px 0 rgba(49, 21, 2, 0.05),
    0 32px 32px 0 rgba(49, 21, 2, 0.09),
    0 8px 17px 0 rgba(49, 21, 2, 0.1);
}

.intro-text {
  width: 45%;
  color: #2a2929;
}

.subline {
  font-family: "Cormorant", serif;
  font-size: 1.3rem !important;
  font-weight: 400;
  margin: 0;
}

.intro-text h2 {
  font-weight: 500;
  font-size: 2.2rem;
  width: 60%;
  margin-top: 0;
}

.intro-text p {
  font-size: 1.2rem;
  font-weight: 200;
}

.intro-text-img {
  margin-top: 4rem;
}

.intro-text-img img {
  box-shadow:
    0 198px 55px 0 rgba(49, 21, 2, 0),
    0 127px 51px 0 rgba(49, 21, 2, 0.01),
    0 71px 43px 0 rgba(49, 21, 2, 0.05),
    0 32px 32px 0 rgba(49, 21, 2, 0.09),
    0 8px 17px 0 rgba(49, 21, 2, 0.1);
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.cards-section {
  padding: 6rem 8rem;
  z-index: 2;
  position: relative;
  background-color: #f3efeb;
}

.cards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}

.card-item {
  position: relative;
  cursor: pointer;
  height: 600px;
  width: 100%;
  box-shadow:
    0 412px 79px 0 rgba(66, 46, 10, 0),
    0 264px 77px 0 rgba(66, 46, 10, 0.01),
    0 148px 66px 0 rgba(66, 46, 10, 0.05),
    0 66px 44px 0 rgba(66, 46, 10, 0.09),
    0 16px 44px 0 rgba(66, 46, 10, 0.1);
  overflow: hidden;
}

.card-item:hover .card-img {
  transform: scale(1.06);
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-text {
  position: absolute;
  bottom: 1.3rem;
  left: 1.3rem;
  z-index: 3;
}

.card-text a {
  color: #f9ede1;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.card-text a img {
  margin-top: 2px;
}

.card-gradient {
  background: linear-gradient(
    180deg,
    rgba(104, 104, 104, 0) 53.29%,
    rgba(28, 27, 27, 0.6) 84.57%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.menu-section {
  color: #2a2929;
  padding: 8rem;
  z-index: 1;
  position: relative;
  background-color: #f3efeb;
}

.menu-intro {
  display: flex;
  justify-content: center;
}

.menu-intro h2 {
  font-weight: 500;
  font-size: 2.2rem;
  margin-top: 0;
}

.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;
}

.menu-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 10rem 8rem;
  z-index: 2;
  position: relative;
  background-color: #f3efeb;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  gap: 1.6rem;
  max-width: 80%;
  background-color: #2a2929;
  box-shadow:
    0 412px 115px 0 rgba(66, 46, 10, 0),
    0 264px 105px 0 rgba(66, 46, 10, 0.01),
    0 148px 89px 0 rgba(66, 46, 10, 0.05),
    0 66px 66px 0 rgba(66, 46, 10, 0.09),
    0 16px 36px 0 rgba(66, 46, 10, 0.1);
}

.contact-img {
  width: 55%;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-text {
  width: 45%;
  padding: 2rem 2rem 2rem 0;
  color: #f9ede1;
}

.contact-text h2 {
  font-weight: 500;
  font-size: 2.2rem;
  margin-top: 0;
}

.contact-item {
  margin-top: 2rem;
}

.contact-text a {
  color: #f9ede1;
  text-decoration: none;
}

.contact-text ul {
  padding: 0;
}

.contact-text ul li {
  list-style: none;
  font-size: 1.2rem;
  font-weight: 200;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  position: relative;
  margin-top: 4rem;
}

#map {
  width: 100%;
  height: 100%;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  color: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 20px;
  padding: 0 20px;
}

#map-overlay a {
  font-size: 1.1rem;
  font-weight: 200;
  color: #fff6ec;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Roboto", sans-serif !important;
  background-color: #e30613;
  color: #fff6ec;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

footer {
  width: 100%;
  padding: 2rem 8rem 1rem 8rem;
  position: relative;
  z-index: 1;
  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;
  margin-top: 2rem;
}

.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: 2.7rem;
  }
  .hero-text p {
    width: 100%;
    margin: 0;
  }
  .hero-cta {
    margin-left: 0;
  }
  .intro-section {
    padding: 6rem 1rem;
  }
  .intro-layout {
    flex-direction: column-reverse;
    gap: 0rem;
  }
  .intro-img,
  .intro-text {
    width: 100%;
  }
  .intro-img img {
    height: 400px;
  }
  .intro-text-img img {
    display: none;
  }
  .intro-text h2 {
    width: 100%;
  }
  .cards-section {
    padding: 6rem 1rem;
  }
  .cards-layout {
    grid-template-columns: 1fr;
  }
  .card-item {
    height: 500px;
  }
  .card-text a {
    font-size: 1.6rem;
  }
  .card-text a img {
    width: 13px;
    height: auto;
  }
  .menu-section {
    padding: 8rem 1rem;
  }
  .contact-section {
    padding: 2rem 1rem 8rem 1rem;
  }
  .contact-card {
    flex-direction: column;
    max-width: none;
  }
  .contact-img,
  .contact-text {
    width: 100%;
  }
  .contact-img {
    height: 300px;
  }
  .contact-text {
    padding: 1rem;
  }
  #map-overlay p {
    font-size: 1rem;
  }
  #map-overlay a {
    font-size: 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;
  }
  .hero-text p {
    width: 100%;
    margin: 0;
  }
  .hero-cta {
    margin-left: 0;
  }
  .intro-section {
    padding: 6rem 2rem;
  }
  .intro-layout {
    flex-direction: column-reverse;
    gap: 0rem;
  }
  .intro-img,
  .intro-text {
    width: 100%;
  }
  .intro-img img {
    height: 400px;
  }
  .intro-text-img img {
    display: none;
  }
  .intro-text h2 {
    width: 100%;
  }
  .cards-section {
    padding: 6rem 2rem;
  }
  .cards-layout {
    grid-template-columns: 1fr;
  }
  .card-item {
    height: 500px;
  }
  .card-text a {
    font-size: 1.6rem;
  }
  .card-text a img {
    width: 13px;
    height: auto;
  }
  .menu-section {
    padding: 8rem 2rem;
  }
  .contact-section {
    padding: 2rem 2rem 8rem 2rem;
  }
  .contact-card {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .contact-img,
  .contact-text {
    width: 100%;
  }
  .contact-img {
    height: 430px;
  }
  .contact-text {
    padding: 1rem;
  }
  #map-overlay p {
    font-size: 1rem;
  }
  #map-overlay a {
    font-size: 1rem;
  }
  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: 3rem;
  }
  h1 {
    font-size: 4rem;
  }
  .intro-section {
    padding: 8rem 6rem;
  }
  .intro-layout {
    gap: 2rem;
  }
  .intro-text h2 {
    width: 100%;
  }
  .cards-section {
    padding: 6rem;
  }
  .card-item {
    height: 500px;
  }
  .menu-section {
    padding: 6rem;
  }
  .contact-section {
    padding: 6rem;
  }
  .contact-card {
    max-width: none;
    width: 100%;
  }
  footer {
    padding: 2rem 6rem 1rem 6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1380px) {
  .hero-text {
    left: 3rem;
  }
  h1 {
    font-size: 4rem;
  }
  .intro-section {
    padding: 8rem 6rem;
  }
  .intro-layout {
    gap: 2rem;
  }
  .intro-text h2 {
    width: 100%;
  }
  .cards-section {
    padding: 6rem;
  }
  .card-item {
    height: 500px;
  }
  .menu-section {
    padding: 6rem;
  }
  .contact-section {
    padding: 6rem;
  }
  .contact-card {
    max-width: none;
    width: 100%;
  }
  footer {
    padding: 2rem 6rem 1rem 6rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text {
    left: 3rem;
  }
  h1 {
    font-size: 5rem;
  }
  .intro-section {
    padding: 8rem 6rem;
  }
  .intro-layout {
    gap: 2rem;
  }
  .intro-text h2 {
    width: 100%;
  }
  .cards-section {
    padding: 6rem;
  }
  .card-item {
    height: 500px;
  }
  .menu-section {
    padding: 6rem;
  }
  .contact-section {
    padding: 6rem;
  }
  .contact-card {
    max-width: none;
    width: 100%;
  }
  footer {
    padding: 2rem 6rem 1rem 6rem;
  }
}
