/* Fonts 
- Fairplay Display (Main Font)
- Poppins / Lato (Secondary Font used for small text)

 Font-Size: 
 Main Headlights / Titles
 2rem, 2.6rem 3.4rem 4.4rem 5.2rem 6.4rem 7.2rem 
 
 Body text 
 1.6rem - 1.8rem 

 Buttons / CTA 
 1.8rem - 2rem 



/* Colors 
   #3b2f2f (Main-Color)
   #8b5e3c (Accent Color)
   #e0c9a6 (Text Headlights)
   #ab2e2e (CTA - Hover States)
*/

.body-no-scroll {
  overflow: hidden;
  height: 100vh;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/***************************
 Header Section            
****************************/

.main-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 42px;
  z-index: 2;
  padding-top: 2rem;
  text-align: center;
}

/* Making the hamburger menu and the logo flex container */
.top-bar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  z-index: 1003;
}
/* Making the hamburger menu and the logo flex container */

/* Menu Navigation with Hmaburger Icon and Closing Icon */
.menu-toggle {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1003;
}

#menuContainer.hidden {
  display: none;
}

#menuContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a0e08;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;

  padding-top: 80px; /* space for the top-bar */
  box-sizing: border-box; /* include padding in height */
}

.bar {
  width: 100%;
  height: 4px;
  background-color: #8b5e3c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar {
  background-color: #e0c9a6;
}

.menu-toggle.active:hover .bar {
  background-color: #800020;
}

/* Active state turns hamburger into X */
.menu-toggle.active .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #8b5e3c;
}
.menu-toggle.active .bar2 {
  opacity: 0;
}
.menu-toggle.active .bar3 {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #8b5e3c;
}
/* Menu Navigation with Hmaburger Icon and Closing Icon */

/* Making the top-bar sticky */
.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.grid-left {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding-right: 2rem;
}

.grid-right {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding-left: 2rem;
}

.nav-link:link,
.nav-link:visited {
  font-size: 1.4rem;
  color: #e0c9a6;
  font-family: "Cinzel";
  font-weight: bolder;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 1.2px;
}

.nav-link:hover,
.nav-link:active {
  color: #800020;
}

.red-text {
  color: #800020;
}

.company-logo-icon {
  width: 180px;
  height: 81px;
  object-fit: cover;
}

.header-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Sliding-Background */

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: 0;
}

.bg-slide.visible {
  opacity: 1;
  z-index: 1;
}
/* Sliding-Background */

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* covers the entire section */
  background-color: rgba(0, 0, 0, 0.6); /* darkens everything behind it */
  z-index: 1;
}

.arrow-icon {
  width: 2.2rem;
  height: 2.2rem;
  fill: rgba(255, 255, 255);
}

.header-content-wrapper {
  position: absolute;
  top: 65%;
  left: 35%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  z-index: 3;
}

.header-main-title {
  font-family: "Cinzel";
  font-size: 4rem;
  color: #e0c9a6;
  text-transform: capitalize;
  font-weight: bolder;
  line-height: 4rem;
}

.book-table-btn:link,
.book-table-btn:visited {
  font-family: "Libre Franklin";
  font-size: 1.4rem;
  color: #e0c9a6;
  text-transform: capitalize;
  font-weight: bolder;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 1.2rem 1.4rem;
}

.dine-flex {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background-color: #8b5e3c;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
  text-decoration: none;
}

.dine-flex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #800020;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
  z-index: -1;
}

.dine-flex:hover::before {
  transform: scaleX(1);
}

.dine-flex:hover {
  color: #000;
}

.arrow-icon {
  transform: rotate(0deg);
  transition: transform 1s ease;
}

.dine-flex:hover .arrow-icon {
  transform: rotate(45deg) translateX(6px);
}
/***************************
    Header Section End         
****************************/

/**************************
 Signature Dishes Section 
**************************/
.signature-dishes-section {
  padding: 18rem 0rem;
  position: relative;
  height: 100vh;
  background-image: url("Signature-Dishes/Menu-Image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: end;
  margin: 0 auto;
  column-gap: 7rem;
}

.right-content {
  color: #fff;
  max-width: 550px;
  text-align: center;
  padding: 0 1rem;
}

.slider-arrow {
  background: #1a0e08;
  fill: #e0c9a6;
  padding: 0.75rem 1rem;
  width: 36px;
  height: 36px;
  font-family: "Cinzel", serif;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  top: 70%;
  right: 5%;
  cursor: pointer;
  z-index: 500;
}

.slider-arrow:hover {
  background: #800020;
}

.slider-arrow-2 {
  background: #800020;
  fill: #e0c9a6;
  padding: 0.75rem 1rem;
  width: 36px;
  height: 36px;
  font-family: "Cinzel", serif;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  top: 70%;
  left: 40%;
  cursor: pointer;
  z-index: 500;
}

.slider-arrow-2:hover {
  background: #1a0e08;
}

.dish-image {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.signature-dish-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: bolder;
  letter-spacing: 2px;
  color: #e0c9a6;
}

.signature-dish-description {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 1.4px;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.9) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.main-title {
  font-size: 50px;
  font-family: "Cinzel";
  font-weight: bold;
  color: #e0c9a6;
  letter-spacing: 2px;
  text-transform: capitalize;
  line-height: 50px;
  margin-bottom: 5rem;
  margin-top: 0;
  width: 50%;
  align-self: flex-start;
}

.signature-dishes-description-text {
  font-size: 1rem;
  font-family: "Libre Franklin";
  color: #fff;
}

/* Reveal Section */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.3s; /* ← Delay here */
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Reveal Section Animation */
/*******************************
 Signature Dishes Section End
********************************/

/***************************
    Brand Story  Section
***************************/
.brand-story-section {
  padding: 18rem 3rem;
  background-color: #382618;
  position: relative;
}

.brand-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.65) 20%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.05) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.brand-story-title {
  font-family: "Cinzel";
  font-size: 50px;
  line-height: 50px;
  color: #e0c9a6;
  margin-bottom: 5rem;
  margin-top: 0rem;
  width: 50%;
}

.brand-column-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.brand-column-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 900;
}

.brand-image-holder {
  position: relative;
}

.brand-image-holder-top,
.brand-image-holder-bottom {
  position: relative;
  z-index: 1;
}

.brand-image-holder-middle {
  .brand-image-holder-middle {
    z-index: 3;
    transform: scale(1.05);
  }
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 3rem;
  margin-top: 10rem;
  max-width: 1450px;
}

.brand-image-1 {
  width: 500px;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: brightness(0.85);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

.brand-image-2 {
  width: 850px;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.04);
}

.brand-image-3 {
  width: 500px;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: brightness(0.85);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

/****************************
    Brand Gallery Section Start
****************************/
.brand-gallery {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  grid-auto-rows: 10px; /* base row height */
  gap: 15px;
}

/***************************
    Brand Story  Section End
***************************/

/****************************
    Menu Selection Section 
****************************/
.menu-selection {
  padding: 10rem 3rem;
  background-image: url("A-La-Carte-Menu/Menu-Image-5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#drink-display {
  transition: opacity 0.3s ease;
}

.section-overlay-texas-menu {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.65) 20%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.title-wrapper {
  display: flex;
  width: 100%;
  align-content: end;
  flex-wrap: wrap;
  justify-content: end;
}

.menu-scroller {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1250px;
  align-content: end;
  flex-wrap: wrap;
  justify-content: end;
  z-index: 1;
}

.menu-dish-image {
  width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.dish-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 1rem;
  width: 35%;
  align-items: center;
  row-gap: 0.5rem;
  min-height: 450px;
  transition: height 0.3s ease;
}

.menu-dish-title {
  font-family: "Cinzel";
  color: #e0c9a6;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1.2px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.menu-dish-description {
  font-family: "Libre Franklin";
  font-size: 0.9rem;
  color: #e0c9a6;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.price {
  color: #e0c9a6;
  margin-top: 1rem;
}

.prev-btn {
  position: absolute;
  left: 45%;
  top: 32%;
  fill: #e0c9a6;
  border: none;
  z-index: 500;
  background: #800020;
  padding: 0.75rem 1rem;
  width: 36px;
  height: 36px;
  font-family: "Cinzel", serif;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.prev-btn:hover {
  background-color: #1a0e08;
}

.next-btn:hover {
  background-color: #800020;
}

.next-btn {
  position: absolute;
  right: 4.5%;
  top: 32%;
  fill: #e0c9a6;
  border: none;
  z-index: 500;
  background: #1a0e08;
  padding: 0.75rem 1rem;
  width: 36px;
  height: 36px;
  z-index: 500;
  cursor: pointer;
  border-radius: 6px;
}

.drinks-next-btn {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 4.5%;
  top: 66%;
  fill: #e0c9a6;
  border: none;
  z-index: 500;
  background: #800020;
  padding: 0.75rem 1rem;
  width: 36px;
  height: 36px;
  z-index: 500;
  cursor: pointer;
  border-radius: 6px;
}

.drinks-next-btn:hover {
  background-color: #1a0e08;
}

.drinks-prev-btn:hover {
  background-color: #800020;
}

.drinks-prev-btn {
  width: 36px;
  height: 36px;
  position: absolute;
  left: 45%;
  top: 66%;
  fill: #e0c9a6;
  border: none;
  z-index: 500;
  background: #1a0e08;
  padding: 0.75rem 1rem;
  width: 36px;
  height: 36px;
  font-family: "Cinzel", serif;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-scroller-2 {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1250px;
  align-content: end;
  flex-wrap: wrap;
  justify-content: end;
  z-index: 1;
}

.drinks-image {
  width: 300px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.5rem;
}

/****************************
    Menu Selection Section End
****************************/
