:root {
  --fontFamily-dm_sans: 'DM Sans', sans-serif;
  --fontFamily-forum: 'Forum', cursive;
  --white: #ffffff;
  --gold-crayola: #fcd581;
  --quick-silver: #a6a6a6;
  --white-alpha-10: rgba(255, 255, 255, 0.1);
  --fontSize-title-2: 28px;
  --fontSize-body-2: 16px;
  --fontSize-label-2: 14px;
}

body {
  margin: 0;
  font-family: var(--fontFamily-dm_sans);
  background-color: #000;
  color: var(--white);
}

/* Background image & overlay like homepage */
.main-bg {
  position: relative;
}

.bg-image {
  background-image: url('../images/hero-slider-1.jpg'); /* update path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Menu styling */
.menu-section {
  margin: 40px 16px;
}
.menu-section h2 {
  font-family: var(--fontFamily-forum);
  font-size: var(--fontSize-title-2);
  color: var(--gold-crayola);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--white-alpha-10);
  padding-bottom: 8px;
}
.menu-section ul {
  list-style: none;
  padding: 0;
}
.menu-section li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--white-alpha-10);
  font-size: var(--fontSize-body-2);
  color: var(--white);
}
.menu-section li:hover {
  background-color: var(--white-alpha-10);
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-label-2);
  margin: 20px;
}
.breadcrumb a {
  color: var(--gold-crayola);
  text-decoration: none;
}
.breadcrumb span {
  color: var(--white);
}

/* Location */
.location {
  margin: 60px 16px;
  text-align: center;
}
.location h2 {
  font-family: var(--fontFamily-forum);
  color: var(--gold-crayola);
  margin-bottom: 12px;
}
.location p {
  color: var(--quick-silver);
}

/* Footer */
.footer {
  background-color: #111;
  text-align: center;
  padding: 20px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* Keep it on top */
  background-color: #0e0d0c; /* Match your header background */
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body {
  padding-top: 80px; /* Height of the fixed header */
}