* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

:root {
  --coal: #1c1c1c;
  --cream: #fffdfb;
  --rust: #8f1d1d;
  --bg-notification: transparent;
  --text-notification: transparent;
  --bg-footer: transparent;
  --text-footer: transparent;
  --dynamic-gap: 32px;
  --footer-border: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
li {
  list-style: none;
}
.for-mobile {
  display: none !important;
}
#hero {
  width: 100%;
  background:
    linear-gradient(22deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%),
    url(../images/header-bg.jpg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.no-scroll {
  overflow: hidden !important;
}

header {
  width: 100%;
  background-color: rgba(51, 51, 51, 0); /* Semi-transparent */
  position: absolute;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1000;
}

.logo {
  z-index: 1001;
}

.logo img {
  width: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}

.for-mobile {
  display: none;
}
/* Hero Section */

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
}

/* Sticky header when scrolling back up */
.sticky {
  position: fixed;
  background-color: rgb(0, 0, 0);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  animation: slide-down 0.3s ease;
}

@keyframes slide-down {
  from {
    top: -60px;
  }
  to {
    top: 0;
  }
}

/* Responsive menu (mobile) */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 180px 25px 40px;
    gap: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-menu li a {
    font-size: 28px;
  }

  .for-mobile {
    display: block !important;
    margin-top: 15px;
  }

  .for-desktop {
    display: none;
  }

  .socail-mobile {
    display: flex !important;
    gap: 40px;
    margin: 10px 0;
  }

  .socail-mobile a {
    color: #fff;
    font-size: 26px;
  }

  .socail-mobile i:before {
    font-size: 26px;
  }

  .navbar a {
    color: #aaa;
    font-size: 22px;
    line-height: 1.5;
  }

  .address {
    color: #aaa;
    line-height: 1.5;
    margin-top: auto;
  }

  .nav-menu div a {
    display: block;
    color: #fff;
    margin-top: 5px;
    text-decoration: none;
    font-size: 16px;
  }

  .footer-hours {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 15px;
  }

  .footer-hours-row {
    font-size: 12px;
    color: #ccc;
  }
}

@media (max-height: 800px) {
  .logo {
    z-index: 100;
  }

  .nav-menu {
    padding: 50px 25px 30px;
  }
}

.menu-link {
  display: inline-block;
  position: relative;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff6a00;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.menu-link:hover::before {
  visibility: visible;
  width: 100%;
}

.menu-link:hover {
  color: #ff6a00;
}

.hero-content {
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-details {
  text-align: center;
}
.header-details h1 {
  text-transform: uppercase;
  font-size: 98px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-weight: 900;
}
.header-details h2 {
  text-transform: uppercase;
  font-size: 58px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-weight: 900;
  margin-bottom: 3em;
}
.header-btn-all {
  display: flex;
  justify-content: center;
}
.header-details-btn button {
  border: none;
  background: #df4627;
  padding: 8px 30px;
}
.header-details-btn button a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.header-details-btn-2 button {
  border: none;
  background: none;
  padding: 8px 30px;
}
.header-details-btn-2 button a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  text-transform: uppercase;
}
.header-btm-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  text-align: center;
  padding-bottom: 13px;
}
.header-btm-title h4 a {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #54595f;
}
.header-btm-title h4 a i {
  margin-right: 8px;
  color: #df4627;
}
/* founded */
#founded,
#about {
  width: 100%;
  background: #0e0d0a;
  padding: 100px 0;
}
.founded-title {
  display: flex;
  align-items: center;
}
.founded-text h4 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #df4627;
  margin-bottom: 0;
  letter-spacing: 1px;
}
.founded-bar {
  margin-left: 40px;
  width: 13%;
  height: 1px;
  background: #df4627;
}
.founded-left h3 {
  margin-top: 30px;
  font-size: 63px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 72.6px;
}
.founded-left img {
  margin-top: 30px;
  width: 100%;
}
.founded-right {
  width: 85%;
  margin: 0 auto;
}
.founded-right img {
  width: 100%;
}

.founded-left button {
  border: none;
  background: none;
}
.founded-left button a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  padding-bottom: 5px;
}
/* inner-photo */
#inner-photo {
  width: 100%;
}
#inner-photo img {
  width: 100%;
}
/* menus */
#menus {
  width: 100%;
  display: flex;
  align-items: center;
  background: #0e0d0a;
}
.menus-left {
  width: 33.33%;
}
.menus-left img {
  width: 100%;
}
.menus-middle {
  width: 33.33%;
  text-align: center;
}
.menus-last {
  width: 33.33%;
}
.menus-last img {
  width: 100%;
}
.menus-middle-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menus-bar-left {
  width: 13%;
  height: 1px;
  background: #df4627;
  margin-right: 30px;
}
.menus-bar-right {
  width: 13%;
  height: 1px;
  background: #df4627;
  margin-left: 30px;
}
.menus-title h5 {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #df4627;
  margin-bottom: 0;
}
.menus-middle h2 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 48px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
}
.menus-middle p {
  color: #fff;
}
.menus-middle-btn {
  margin-top: 30px;
}
.menus-middle-btn button {
  border: none;
  background: none;
}
.menus-middle-btn button a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #e3e1e1;
  text-transform: uppercase;
  padding-bottom: 7px;
  letter-spacing: 1px;
}
.founded-left p {
  font-size: 17px;
  color: #fff;
}

/* ======================== */
/* TESTIMONIAL SECTION      */
/* ======================== */

.testimonial-container {
  background: #0e0d0a;
  padding: 100px 80px;
  text-align: center;
  width: 100%;
}

.slider {
  position: relative;
  box-shadow: none;
}

.slider .slides {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider .slide {
  width: 100%;
  margin-right: 16px;
}

.testimonial {
  width: 50vw;
  margin: auto;
  padding: 40px 80px;
  border-radius: 8px;
  box-shadow: none;
  text-align: center;
}

.testimonial blockquote {
  font-family: "Jost", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 24px;
}

.testimonial h5 {
  font-family: "Jost", sans-serif;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial span {
  font-family: "Jost", sans-serif;
  color: #dedede;
  font-size: 0.7rem;
  font-weight: 400;
}

@media (max-width: 640px) {
  .testimonial-container {
    width: 100%;
    padding: 0 16px 50px;
  }

  .testimonial {
    padding: 24px 30px;
  }

  .testimonial blockquote {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}

/* ======================== */
/* INSTAGRAM EMBED          */
/* ======================== */
.instagramis {
  padding: 80px 0;
  background: #0e0d0a;
}

.instagramis .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.instagramis .row {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 100px;
}

.instagramis .col-md-6 {
  flex: 1 1 100%;
  max-width: 100vw;
}

@media (min-width: 900px) {
  .instagramis .col-md-6 {
    flex: 1 1 45%;
  }
}

.switchable__text {
  max-width: 100%;
  padding: 0 20px;
}

.switchable__text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.switchable__text .lead {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}

.btn.bg--instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 200ms ease;
}

.btn.bg--instagram i {
  font-size: 1rem;
  display: inline-flex;
}

.btn.bg--instagram:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .instagramis {
    padding: 0 0 40px;
  }

  .switchable__text h2 {
    font-size: 2rem;
  }

  .instagramis .row {
    gap: 30px;
  }
}

/* reservations */

#reservations {
  width: 100%;
  background:
    linear-gradient(22deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url(../images/reservations-photo.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.reservations-main {
  text-align: center;
  padding: 130px 0;
}
.reservations-title-main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservations-title h5 {
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.reservations-bar-left {
  width: 5%;
  height: 2px;
  background: #ffffff;
  margin-right: 20px;
}
.reservations-bar-right {
  width: 5%;
  height: 2px;
  background: #ffffff;
  margin-left: 20px;
}
.reservations-details {
  margin-top: 30px;
}
.reservations-details h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 75px;
  color: #fff;
}
.reservations-details p {
  margin-top: 20px;
  font-size: 24px;
  color: #fff;
}
.reservations-btn {
  margin-top: 50px;
}
/* footer */
#footer {
  width: 100%;
  background: #0e0d0a;
  padding: 100px 0 0;
  text-align: center;
}
.footer-main img {
  width: 130px;
}
.footer-main p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 50px;
}
.footer-main p span {
  color: #df4627;
}
.footer-btn {
  margin-top: 20px;
}
.footer-btn p,
.footer-btn a {
  margin-top: 30px;
  color: #828282;
  margin-bottom: 0;
}
.footer-btn ul {
  display: flex;
  justify-content: center;
}
.footer-btn ul li a {
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  transition: 0.4s;
}
.footer-btn ul li a i {
  font-size: 3px;
  padding: 0 5px;
  color: #fff;
}
.footer-btn ul li a:hover {
  color: #df4627;
}
.footer-social {
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-social a i {
  transition: 0.4s;
  margin: 0 20px;
  color: #fff;
}
.footer-social a i:hover {
  color: #df4627;
}

/* about-page */
#about-header {
  width: 100%;
  padding: 150px 0 100px;
  background:
    linear-gradient(22deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
    url(../images/about-header.jpg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-header-details {
  text-align: center;
}
.about-header-details h1 {
  text-transform: uppercase;
  font-size: 80px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-weight: 900;
}
#about-founded {
  width: 100%;
  background: #0e0d0a;
  padding-top: 150px;
  padding-bottom: 100px;
}
.founded-right-photo-1 {
  width: 60%;
  position: relative;
  float: right;
  top: -13%;
}
.founded-right-photo-2 {
  width: 60%;
  position: absolute;
}
.founded-right-photo-1 img {
  width: 100%;
}
.founded-right-photo-2 img {
  width: 100%;
}
.about-founded-left {
  padding-left: 30px;
}
.about-founded-left h3 {
  margin-top: 30px;
  font-size: 48px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
.about-founded-left p,
.about-founded-left a {
  color: #fff;
  line-height: 25px;
}
.founded-right-photo-4 {
  width: 70%;
  position: relative;
  float: right;
  top: -13%;
}
.founded-right-photo-3 {
  width: 40%;
  position: absolute;
  bottom: 0;
}
.founded-right-photo-3 img {
  width: 100%;
}
.founded-right-photo-4 img {
  width: 100%;
}
.founded-right-photo-5 {
  width: 50%;
  position: relative;
  float: right;
}
.founded-right-photo-6 {
  width: 60%;
  position: absolute;
  bottom: -55px;
}
.founded-right-photo-6 img {
  width: 100%;
}
.founded-right-photo-5 img {
  width: 100%;
}
.top-mar {
  margin-top: 40px;
}
.about-founded-left button {
  border: none;
  background: none;
}
.about-founded-left button a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 5px;
  border-bottom: 2px solid #df4627;
}
.about-founded-left ul li {
  font-size: 18px;
  padding: 10px 0;
  color: #fff;
  border-top: 1px solid #4e4e4e79;
}
.last-bar {
  border-bottom: 1px solid #4e4e4e79;
}
.about-founded-left ul li span {
  font-size: 18px;
  color: #54595f;
  font-weight: 600;
  margin-right: 5px;
}
/* newsletter */
#newsletter {
  width: 100%;
  background:
    linear-gradient(22deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
    url(../images/newsletter.jpg) center center no-repeat;
  background-position: center;
  background-size: cover;
}
.newsletter-main {
  padding: 150px 0;
  text-align: center;
}
.newsletter-main h1 {
  font-size: 75px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
}
.newsletter-main p {
  color: #fff;
}

.search {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-input {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  border: none;
  padding: 10px 10px;
  width: 40%;
  border-bottom: 1px #ddd solid;
  transition: all 0.4s;
  margin-right: -30px;
  background: none;
}

.search-input::placeholder {
  color: #777;
}

.search-input:focus {
  outline: none;
}

.search-button {
  border: none;
  border-radius: 3px;
  background: none;
}

.search-icon i {
  border: none;
  padding: 5px;
  font-size: 16px;
  color: #ffffff;
}
.checkbox-in {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-in input {
  font-size: 8px;
}
.checkbox-in p {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
/* menus-header */
#menus-header {
  width: 100%;
  background:
    linear-gradient(22deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
    url(../images/menus-header-photo.jpg) center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0 100px;
  background-position: center;
}
#menu-photo {
  width: 100%;
  padding: 50px 0;
  background: #0e0d0a;
}
.menu-photo-main {
  width: 100%;
}
.menu-photo-main img {
  width: 100%;
  padding: 20px;
}
#contact-header {
  width: 100%;
  background: #0e0d0a;
}
.contact-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
  justify-content: center;
  gap: 30px;
}
.contact-location {
  padding: 100px 0 0;
  text-align: center;
}
.contact-location h1 {
  font-size: 65px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  margin-bottom: 70px;
}
.contact-photo {
  text-align: center;
  color: #fff;
}
.contact-photo img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.4s;
}
.contact-photo img:hover {
  filter: none;
}

.contact-photo h5 {
  font-size: 13px;
  color: #df4627;
  margin-top: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-photo h2 {
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
}
.contact-btn {
  margin-top: 15px;
}
.contact-photo p {
  margin-bottom: 0;
}
.contact-photo button {
  border: none;
  background: none;
}
.contact-photo button a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 5px;
  border-bottom: 2px solid #df4627;
}

#footer-from,
#contact {
  width: 100%;
  padding: 100px 0;
  background: #0e0d0a;
  display: flex;
  align-items: center;
}
.bar-footer {
  width: 80px;
  height: 2.5px;

  margin: 0 auto;
}
.footer-from-main {
  display: flex;
  align-items: center;
}
.footer-left h4 {
  font-size: 35px;
  font-weight: 700;
}
.footer-left p {
  font-size: 18px;
}

.add {
  width: 100%;
}
.form-content input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 10px;
  border: none;
  background: none;
  color: #fff;
  border-bottom: 1px solid #54595f;
}
.form-content p {
  color: #fff;
  font-size: 14px;
}
.form-content input:focus {
  outline: none;
}
.form-content textarea {
  width: 100%;
  padding: 10px 10px;
  padding-bottom: 50px;
  border-radius: 4px;
  border: none;
  background: none;
  color: #fff;
  border-bottom: 1px solid #54595f;
}
.form-content textarea:focus {
  outline: none;
}
.footer-bton {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.footer-bton a,
.footer-bton button {
  text-decoration: none;
  padding: 5px 30px;
  border-radius: 4px;
  background: #df4627;
  color: #fff;
  font-weight: 600;
}
.footer-btom-box {
  margin-top: 70px;
}
.footer-box {
  display: flex;
  align-items: center;
  border-radius: 5px;
  background: none;

  color: #fff;
  padding: 30px 50px;
}
.footer-box-photo img {
  width: 34px;
  margin-right: 15px;
}
.footer-box-info {
  align-items: center;
}
.footer-box-info h5 {
  margin-bottom: 0;
}
.footer-box-info p {
  margin-bottom: 0;
}
.about-founded-left h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 30px;
}
.about-founded-left p span a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.4s;
}
.about-founded-left p span a:hover {
  color: #df4627;
}

/* ======================= */
/* POPUP MODAL             */
/* ======================= */

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.img-wrapper {
  position: relative;
  height: 400px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 15%;
  left: 5%;
  width: fit-content;
  max-width: 80%;
  height: 70%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.overlay h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.overlay p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-btn {
  background: #8f1d1d;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.close-btn,
.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  padding: 5px 15px;
  background: #00000028;
  border-radius: 50px;
  z-index: 10;
}

.close-btn {
  top: 50%;
  background: transparent;
  color: #000;
  font-size: 20px;
  transform: translateY(-50%);
}

.notification-bar .close-btn {
  background: var(--bg-notification);
  color: var(--text-notification);
  right: 0;
  border-radius: 0;
}

@media (max-width: 768px) {
  .overlay {
    width: 100%;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .close-modal {
    top: 5px;
    right: 5px;
    padding: 0 10px;
  }

  .cta-btn {
    padding: 5px;
  }

  .close-btn {
    right: 0px;
  }
}

/* ======================== */
/* NOTIFICATION STRIP       */
/* ======================== */
.signature-strip {
  background: var(--coal);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.signature-strip.notification-bar {
  padding: 10px 0;
  opacity: 1;
  max-height: 100px;
  display: flex;
  align-items: center;

  transition:
    opacity 200ms ease,
    max-height 250ms ease,
    padding 200ms ease;
}

.notification-bar.hidden {
  opacity: 0;
  max-height: 0;
  padding: 0;
}

.notification-bar .strip-track {
  width: 100vw;
  animation: marquee-infinite 30s linear infinite;
}

.notification-bar .strip-content {
  gap: var(--dynamic-gap, 32px);
}

.strip-track {
  display: flex;
  width: max-content;
  --marquee-distance: 50%;
  animation: marquee-infinite 30s linear infinite;
}

.strip-content {
  display: flex;
  gap: 32px;
  padding-right: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.notification-bar .strip-content span {
  white-space: nowrap;
  width: 100vw;
}

.strip-content span {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.strip-dot {
  color: var(--rust) !important;
  font-size: 0.5rem;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-distance)));
  }
}

.notification-bar .strip-content span {
  color: var(--text-notification);
}

.signature-strip.notification-bar {
  background: var(--bg-notification);
}

.signature-strip[data-rotate="false"] {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signature-strip[data-rotate="false"] .strip-track {
  animation: none;
  width: 100%;
  display: flex;
  justify-content: center;
}

.signature-strip[data-rotate="false"] .strip-content {
  justify-content: center;
  padding-right: 0;
}

.signature-strip[data-rotate="false"] .strip-content:last-child {
  display: none;
}

.signature-strip[data-rotate="false"] .strip-content span {
  width: auto;
  white-space: nowrap;
}

/* FOOTER SECTION */
.footer-hours {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.footer-hours {
  grid-template-columns: 1fr;
}

/* @media (min-width: 480px) {
  .footer-hours {
    grid-template-columns: repeat(2, 1fr);
  }
} */

.footer-hours-row {
  padding: 6px 0 0;
  font-size: 1rem;
  color: #fff;
}

.footer-hours-time {
  font-family: "Jost", sans-serif;
}
.footer-bottom {
  background: var(--bg-footer);
  padding: 10px 0;
  margin-top: 50px;
  position: relative;
  border-top: 2px solid var(--footer-border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-footer);
  font-size: 0.85rem;
  margin: 0;
}
