@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Georgian:wght@100..900&display=swap');
:root {
  --primary-color: #292929;
  --secondary-color: #ffc135;
  --tertiary-color: #b42121;
  --text-dark: #212529;
  --bg-color: #DFDAD4;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font-1: "Noto Serif Georgian", serif;
  --header-font-2: "Bebas Neue", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.error { color: #cd0000; margin-bottom:2rem; }
.error-input { border-color: #cd0000 !important;}
.success { color: green; }
.success-bg {  color: #ffffff; background-color: green;}
.error-bg {  color: #ffffff; background-color: #cd0000;}
.required { color: #cd0000; }
.form-msg { 
  text-align: center; 
  margin-top: 2rem; 
  border-radius: 1rem;
  padding: 0.5rem;
  font-weight: 700;
  max-width: 600px;
  margin-inline: auto;
}
#contact-form { scroll-margin-top: 97px; }

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
}

.section__container__w {
  padding: 0rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--header-font-1);
  color: var(--primary-color);
  text-align: center;
  line-height: 3rem;
  /* text-shadow: 2px 2px var(--secondary-color); */
}

.section__description {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.section__description2 {
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;  /* vertically center text + image */
  justify-content: space-around; /* keeps text on left, image on right */
}

.section__description2 img {
  mix-blend-mode: darken;
  width: 50px;
  transform: rotate(180deg);
}


.btn {
  padding: 1rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  background-color: var(--tertiary-color);
  transition: 0.3s;
  cursor: pointer;
  border-radius: 0.2rem;
  width: fit-content;
  text-align: center;
}

.btn-max-width {
  width: 100%;
  
}

.btn:hover {
  background-color: var(--primary-color);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: "Montserrat", sans-serif;
}


nav {
  position: fixed;
  width: 100%;
  /* max-width: var(--max-width); */
  /* margin-inline: auto; */
  z-index: 9;
  /* opacity: 50%; */
  background-image: url("assets/bg.svg");
  background-color: #101113;
  /* background-repeat: no-repeat; */
  background-size: 100%;
}
.video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity for darkness */
  pointer-events: none; /* Ensure the overlay doesn't block interaction with the video */
}

.home-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.home-banner-mob {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__header {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000000;
  background-image: url(assets/bg.svg);
  background-size: 450%;
  /* background-position-x: left; */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.nav__logo img {
  max-width: 200px;
  filter: drop-shadow(9px 9px 22px rgba(0, 0, 0, 0.4));
}

.nav__logo-dark {
  display: none;
}

.nav__menu__btn {
  font-size: 2rem;
  color: #ffffffc2;
    /* white-nav */
  /* color: black; */
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 95px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  /* background-image: linear-gradient(to bottom, rgb(255 255 255) 47%, rgb(255 255 255 / 63%) 77%), url(assets/bg-white.svg); */
  background-color: var(--primary-color);
  background-color: #DFDAD4;
  /* background-color: #1c3237; */
  transition: transform 390ms cubic-bezier(.03,.84,.2,1);
  z-index: -1;
  transform: translateY(-100%);
  border-bottom: 0.5rem solid var(--tertiary-color);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 700;
  white-space: nowrap;
  /* white-nav */
  color: var(--primary-color); 
  transition: 0.3s;
  font-size: 1.15rem;
}

.nav__links a:hover {
  color: var(--tertiary-color);
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.header__image img {
  max-width: 600px;
  margin-inline: auto;
}

.header__content h2 {
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--header-font-2);
  color: var(--primary-color);
  border: 2px dashed var(--primary-color);
  text-align: center;
}

.header__content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--header-font-1);
  color: var(--primary-color);
  line-height: 3.5rem;
  text-align: center;
  text-shadow: 2px 2px var(--white);
}

.header__content h1 span {
  font-size: 3rem;
}

.banner__container {
  display: grid;
  gap: 1rem;
  grid-auto-rows: 200px;
}

.banner__card {
  padding: 1rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1rem;
}

.banner__card:nth-child(1) {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0%) 37%, rgba(0, 0, 0, 10%) 60%, rgba(0, 0, 0, 20%) 80%, rgba(0,0,0, 80%) 100%), url("assets/delivery-options.webp");
    background-position-y: 98%;
}

.banner__card:nth-child(2) {
  background-image: url("assets/bluecard.svg");
  background-size: 90%;
  background-position-x: 500%;
  background-color: #991c1c;
}

.banner__card:nth-child(3) {
  background-image: url("assets/banner-3.webp");
  background-position: 60%;
}


/* .bg-wrapper-white { */
  /* background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.63) 67%, rgba(10, 52, 61, 0.80) 90%,rgba(10, 52, 61, 0.98) 100%), url("assets/bg-white.svg"); */
  /* background-image: linear-gradient(
    to top, 
    rgba(255, 255, 255, 40%) 47%, 
    rgba(255, 255, 255, 85%) 77%, 
    rgba(255, 255, 255, 53%) 90%,
    rgba(255, 255, 255) 100%
    ),
   url("assets/bg-white.svg"); */
/* } */

.bg-wrapper-grey-white {
  background-image: linear-gradient(to top, rgb(223 218 212 / 37%) 17%, rgb(223 218 212 / 52%) 37%, rgb(223 218 212 / 22%) 57%, rgb(223 218 212 / 60%) 100%), url(assets/bg-grey.svg);
  background-size: 200%;
}

.bg-wrapper-grey {
  background-image: linear-gradient(to top, rgba(223, 218, 212, 10%) 47%, rgba(223, 218, 212, 10%) 77%, rgba(223, 218, 212, 10%) 90%, rgb(223, 218, 212) 100%), url(assets/bg-grey.svg);
  background-size: 200%;
}

.bg-wrapper-grey2 {
  background-image: linear-gradient(to top, rgba(223, 218, 212, 50%) 10%, rgba(223, 218, 212, 50%) 40%, rgba(223, 218, 212, 50%) 40%, rgb(223, 218, 212) 100%), url(assets/bg-grey.svg);
  background-size: 300%;
}

.bg-wrapper-blue {
  /* background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 10%, rgba(0, 0, 0, 0) 20%), url("assets/bg-blue.svg"); */
  background-image: url(assets/bg-red.svg);
}

.banner__card p {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}

.order__container h3 {
  max-width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--header-font-2);
  color: white;
  background-color: var(--tertiary-color);
}

.order__container .section__header {
  margin-bottom: 1rem;
}

.order__container .section__description {
  margin-bottom: 2rem;
  text-align: center;
}

.order__container .btn-menu {
  margin-top: 3rem;
  margin-inline: auto; /* This should center it horizontally */
  display: block; /* Ensure the button is treated as a block element */
  /* letter-spacing: 0.2rem; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-findmore {
  margin-top: 3rem;
  margin-inline: auto; /* This should center it horizontally */
  display: block; /* Ensure the button is treated as a block element */
  /* letter-spacing: 0.2rem; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.order__grid {
  display: grid;
  gap: 2rem 1rem;
}

.order__card {
  /* padding: 2rem 0rem 0rem 2rem; */
  border-radius: 1rem;
  text-align: center;
  transition: 0.3s;
  border-color: #eeeeee;
  border-width: 1px;
  border-style: solid;
  background-color: rgb(255, 255, 255);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}
/* 
.order__card:hover {
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
} */

.order__card img {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  /* filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.3)); */
}

.order__card_desc a {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 50;
  color: black;
  font-family: Roboto, Helvetica, sans-serif;
  text-decoration: underline;
}

.order__card_desc {
  display: flex;
  justify-content: space-between; /* Distributes space between items */
  align-items: center; /* Aligns items vertically in the center */
  padding-left: 2rem;
  padding-right: 2rem;
}

.insta-icon {
  border-radius: 50%;
  width: 35px; /* Adjust the size of the image if needed */
  height: auto;
  margin:0;
}

.order__card p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.event__content {
  background-color: var(--white);
  display: grid;
  gap: 2rem;
  /* padding: 2rem; */
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}


.location__content {
  /* background-image: linear-gradient(to right, #fffffffb 50%, #78787861), url("assets/bg-yellow.webp"); */
  /* background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 10%, rgba(0, 0, 0, 0) 20%), url("assets/bg-yelloy.webp"); */
  background-image: url('assets/bg-yellow.webp');
  background-size: cover;
  background-repeat: no-repeat;
  /* background-color: #fefefe85; */
  display: grid;
  gap: 2rem;
  /* padding: 2rem; */
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  /* border: 2px solid var(--primary-color); */
  /* border-top: 10px solid var(--primary-color); */
}

.location__content .btn {
  margin-top: 2rem;
  display: block;
  margin-inline: auto;
}

.event__details {
  text-align: center;
  padding: 2rem;
}

.event__details h3 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--header-font-2);
  color: var(--text-dark);
}

.event__details .section__header {
  margin-bottom: 1rem;
}

.title-underline::after {
  content: "";
  display: block;
  width: 200px;
  max-width: 75%;
  height: 5px;
  background: var(--tertiary-color);
  margin:auto;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}

.title-underline-centered::after {
  content: "";
  display: block;
  width: 200px;
  max-width: 75%;
  height: 5px;
  background: var(--tertiary-color);
  margin:auto;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}

.reservation {
  position: relative;
  isolation: isolate;
}

.reservation__container h3 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--header-font-2);
  color: var(--text-dark);
  text-align: center;
}

.reservation__container form {
  max-width: 400px;
  margin-inline: auto;
  margin-top: 2rem;
  display: grid;

}

.reservation__container input {
  padding: 0.75rem 1rem;
  outline: none;
  border: 1px solid var(--text-dark);
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: 0.2rem;
  margin-bottom: 1rem;
  font-family: Roboto;
}

.reservation__container label {
  margin-bottom: 5px;
}

.reservation__container textarea {
  font-family: Roboto;
  padding: 0.75rem 1rem;
  outline: none;
  border: 1px solid var(--text-dark);
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: 0.2rem;
  margin-bottom: 1rem;
  resize: vertical;
  min-height: 150px;
}

.reservation__container input::placeholder {
  color: var(--text-dark);
}

.reservation img {
  display: none;
}

.footer {
  background-image: url("assets/bg.svg");
  background-position: center center;
  background-size: 1000%;
  background-repeat: no-repeat;
  background-color: #000000;
}

.footer__logo img {
  max-width: 100px;
}

.red-box {
  background-color: var(--tertiary-color);
  color: white;
  font-size: 30px;
  font-family: var(--header-font-2);
  text-align: center;
  padding: 10px 5px;
  width: 110px; /* Adjust width as needed */
  height: 110px; /* Adjust height as needed */
  line-height: 100%;

}

.box-message {
  width:100%;
  /* flex: 1 1 0px; */
  align-items: center;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer__content {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.footer__content p {
  font-weight: 5500;
  color: var(--white);
  line-height: 1.75rem;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.footer__links li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__links li span {
  font-size: 1.25rem;
}

.footer__links a {
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
}

.footer__socials {
  /* margin-top: 2rem; */
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--white);
}

.footer__socials a:hover {
  color: var(--secondary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--white);
  text-align: center;
}

.nav__logo-white {
  height: 65px;
  width: 170px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.text-overlay {
  position: absolute;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Shadow for better contrast */
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--header-font-2);
}

.big-text {
  top: 40%; 
  font-size: 4.3rem; 
  color: var(--white); 
}

.small-text {
  top: 30%;
  left: 49%;
  font-size: 2rem; 
  color: var(--secondary-color);
  display: flex;
  justify-content: center; /* Center the words horizontally */
  gap: 10px; /* Adjust the gap between words */
  width: 50%;
}

.word {
  margin: 0 5px; /* Add margin between the words */
}

#btn-banner {
  letter-spacing: 0.2rem;
  font-size: 1rem;
  color: var(--white);
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  top: 70%;
  width: auto;
  font-weight: 900;
  font-family: var(--header-font-1);
}

.element::after {
  content: "\A"; /* Adds a line break */
  white-space: pre; /* Ensures the line break is respected */
}

.banner {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('assets/banner-2.webp') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1;
}

.banner-contact-image {
  background: url('assets/contact-banner.webp') no-repeat center center/cover;
}

.banner-story-image {
  background: url('assets/story-banner.webp') no-repeat center center/200%;
}

.banner-product {
  background: url('assets/product-banner2.webp') repeat center center/500px;
  height: 210px;
}
.banner-product::before {
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
}
.banner-product-link {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: var(--secondary-color);
  top: 87%;
  text-decoration-line: underline;
}

.section__header3 {
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--header-font-2);
  color: var(--text-dark);
  /* font-family: var(--header-font-1);
  color: var(--text-dark); */
  text-align: center;
  line-height: 3.75rem;
  /* text-shadow: 2px 2px var(--secondary-color); */
}

.banner .section__header2 {
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--header-font-2);
  letter-spacing: 0.2rem;
  color: var(--white);
  text-align: center;
  line-height: 3.75rem;
  text-shadow: 2px 2px var(--primary-color);
  position: relative;
  color: white;
  z-index: 2;
  top: 25%;
}

.event__image {
  /* grid-area: 1/2/2/3; */
  width:100%;
}

/* .event__details,
.event__details .section__header {
  width: fit-content;
} */


.marquee {
  overflow: hidden;
  /* border-top: 1px solid #000;
  border-bottom: 1px solid #000; */
  background-color: #101113;
  /* color:#d1cfcf; */
  color:var(--secondary-color);
  display: flex;
  font-style: italic;
}

.marquee h1{
  font-size: 2em;
  white-space: nowrap;
  text-transform: uppercase
}

.marquee2 {
  overflow: hidden;
  /* border-top: 1px solid #000;
  border-bottom: 1px solid #000; */
  /* background-color: #10111307; */
  /* color:#d1cfcf; */
  font-style: italic;
  color:var(--bg-color);
  --outline-color: #f1ece6;
  --outline-width: 2px;
  --outline-width-negative: calc(-1 * var(--outline-width));
  text-shadow:
    var(--outline-width-negative) var(--outline-width-negative) 0 var(--outline-color),
    var(--outline-width) var(--outline-width-negative) 0 var(--outline-color),
    var(--outline-width-negative) var(--outline-width) 0 var(--outline-color),
    var(--outline-width) var(--outline-width) 0 var(--outline-color);
  
  display: flex;
}

.marquee2 h1{
  font-size: 4em;
  white-space: nowrap;
  text-transform: uppercase
}

.section__marquee2 {
  padding: 1rem 0rem;
  /* padding-top: 5rem; */
}

/* TEMP marquee image*/
.marquee-images {
  overflow: hidden;
  border-top: 5px dotted whitesmoke;
  /* border-bottom: 1px solid #000; */
  /* background-color: #101113; */
  padding-top: 3rem;
  color:var(--secondary-color);
  display: flex;
  font-style: italic;
}

.marquee-images  img{
  /* font-size: 2em; */
  /* white-space: nowrap; */
  /* text-transform: uppercase */
  width: 400px;
  height: 100%;
  border-radius: 1.5rem;
  /* margin-left: 3rem; */
}

.vision__content_bg {
  background-image: linear-gradient(to top, rgb(255 255 255 / 99%) 0%, rgba(255, 255, 255, 0.98) 50%), url("assets/bg.svg");
  background-size: cover;
}

.bottom-text-location {
  background-color: #34060a;
  padding: 0.5rem 0rem;
  color: #41070e;
  font-family: roboto;
  font-weight: 600;
  font-size: 2rem;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -0.5rem; 
}


.container {
  max-width: 1000px;
  margin: 50px auto;
  /* background-color: #fff; */
  padding: 10px;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
}

.image-section {
  order: 2;
}

.image-section img {
  width: 100%;
  border-radius: 8px;
}

.text-section {
  padding-bottom: 2rem;
  order: 1;
}

.category {
  color: #d5533d;
  font-size: 18px;
  margin-bottom: 10px;
}

.title {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.font-noto {
  font-family: 'Noto Serif Georgian', serif;
}

/* Main trigger button */
#openPopup {
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Backdrop */
#backdrop {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Popup content */
.popup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 65%;   
}

.order-btn {
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

.close-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;      /* white border */
  border-radius: 50%;          /* makes it round */
  background: transparent;     /* transparent background */
  color: #fff;                 /* X color */
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
  align-self: center;
}

.close-btn:hover {
  background: #fff;   /* white background on hover */
  color: #000;        /* black X on hover */
}


.station {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: capitalize;
  background-color: #7f5555;
  width: fit-content;
  padding: 2px 5px;
  color: white;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


@media (width < 361px) {
  .location__content h2 {
    text-align: left;
  }
  .location__content .section__header  {
    text-align: center;
  }
  .location__content p {
    text-align: left;
  }
}
@media (width > 540px) {

  .section__container {
    padding: 5rem 1rem;
  }

  .small-text {
    font-size: 2.5rem; 
  }

  .big-text {
    font-size: 4.7rem; 
  }

  #btn-banner {
    font-size: 1.5rem;
  }

  .section__header {
    font-size: 3rem;
    line-height: 3.75rem;
  }
  
  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner__card:nth-child(1) {
    grid-area: 1/1/2/3;
  }

  .order__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__logo-white {
    height: 80px;
    width: 160px;
  }

  .nav__links {
    top:110px;
  }

}



@media (width > 768px) {

  .banner-product-link {
    top: 82%;
  }

  nav {
    position: static;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #000000;
    background-size: 240%;
  }

  .element::after {
    content: ""; /* Removes the line break */
    white-space: normal; /* Resets white-space handling */
  }

  .title-underline::after{
    margin:0;
    margin-top: 1rem;
    margin-bottom: 1.8rem;
  }
  .footer {
    background-size: cover;
  }
  .nav__header {
    padding: 0;
    background-color: transparent;
    background-image: none;
    filter:none;
  }

  .nav__logo img {
    max-width: 250px;
  }

  /* .nav__logo-dark {
    display: flex;
  } */
  .banner-product {
    height: 180px;
  }
  .banner .section__header2 {
    line-height: 3.75rem;
    font-size: 4rem;
    top: 0; 
  }
  .big-text {
    top: 35%; 
    font-size: 8rem; 
  }
  
  .small-text {
    top: 19%;
    font-size: 4rem; 
  }

  #btn-banner {
    top: 55%;
    width: auto;
  }

  .nav__logo-white {
    height: 100px;
    width: 200px;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    background-image: none;
    background-color: unset;
    border-bottom: unset;
    transform: none;
    z-index: 1;
    transition: 0s;
  }

  .nav__links a {
    font-weight: 500;
    color: var(--white);
  } 

   .nav__links a:hover {
    color: var(--secondary-color);
  }
  .location__content .btn  {
    margin-inline:0;
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content h2 {
    margin-inline-start: unset;
  }

  .header__content h1 {
    text-align: left;
  }

  .banner__card {
    padding: 1.5rem;
  }

  .banner__card:nth-child(1) {
    grid-area: 1/1/3/2;
  }

  .order__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .event__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .location__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }


  .event__details,
  .event__details .section__header {
    text-align: left;
  }

  .reservation__container form {
    max-width: 600px;
    /* grid-template-columns: repeat(2, 1fr); */
  }

  .reservation img {
    display: flex;
    position: absolute;
    z-index: -1;
  }

  .reservation__bg-1 {
    left: 0;
    top: 0;
    width: clamp(100px, 25vw, 350px);
  }

  .reservation__bg-2 {
    right: 0;
    bottom: 0;
    width: clamp(100px, 20vw, 250px);
  }

  .marquee h1{
    font-size: 3em;
  }

  .marquee2 h1{
    font-size: 6em;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__links li {
    justify-content: flex-end;
  }

  .footer__socials {
    justify-content: flex-end;
  }

  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
  }

  .image-section {
      flex: 1;
      order: 1;
  }

  .image-section img {
      border-radius: 8px;
  }

  .text-section {
      flex: 1;
      padding-left: 30px;
      text-align: left;
      padding-top: 3rem;
      order: 2;
  }
  .banner__card:nth-child(2) {
    background-size: 80%;
    background-position-x: 200%;
  }
  .banner__card:nth-child(1) {
    background-image: url("assets/delivery-options.webp");
    background-position-y: center;
  }
  .banner-story-image {
    background-size:cover;
  }

  .section__description2{
    display: none;
  }
}

@media (width > 1024px) {
  nav {
    background-size: 200%;
  }
  .order__grid {
    gap: 2rem;
  }
  .home-banner {
    display: block;
  }
  .home-banner-mob {
    display: none;
  }
}
