html, body {
    background-image: url("/static/images/m.png");
    background-repeat: repeat;
}

#special_top {
    background: url('/static/media/2.jpg') no-repeat center center;
    background-size: cover;
    min-height: 35vh;
    background-position: left;
}

.special_overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 50px;
}

#base_1 {
    min-height: 200px;
    background-image: url("/static/images/fancy-cushion.png");
    background-repeat: repeat;
}

#base_2 {
    min-height: 200px;
    background-image: url("/static/images/carbon_fibre.png");
    background-repeat: repeat;
    position: relative; /* Needed for positioning the overlay */
    z-index: 1; /* To ensure content appears above the overlay */
}

#base_2::before {
    content: ''; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with transparency */
    z-index: -1; /* Place the overlay behind the content */
}

#base_3 {
    min-height: 200px;
    background-image: url("/static/images/y-so-serious.png");
    background-repeat: repeat;
}

#base_4 {
    min-height: 200px;
    background-image: url("/static/images/5-dots.webp");
    background-repeat: repeat;
    position: relative; /* Needed for positioning the overlay */
    z-index: 1; /* To make sure content appears above the overlay */
}

#base_4::before {
    content: ''; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with transparency */
    z-index: -1; /* Place the overlay behind the content */
}

#base_5 {
    min-height: 200px;
    background-image: url("/static/images/tactile_noise.png");
    background-repeat: repeat;
}

#base_6 {
    min-height: 200px;
    background-image: url("/static/images/dark-honeycomb.png");
    background-repeat: repeat;
    position: relative; /* Needed for positioning the overlay */
    z-index: 1; /* To ensure content appears above the overlay */
}

#base_6::before {
    content: ''; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with transparency */
    z-index: -1; /* Place the overlay behind the content */
}

#base_spacer_1 {
    min-height: 200px;
    /*background-image: url("/static/images/logo-circle.png");*/
    /*background-position: center;*/
    background-size: 300px;
}

#base_spacer_2 {
    min-height: 200px;
    background-image: url("/static/images/logo-circle-1.png");
    background-position: center;
    background-size: 300px;
}

#base_spacer_3 {
    min-height: 200px;
    /*background-image: url("/static/images/logo-circle-2.png");*/
    /*background-position: center;*/
    background-size: 300px;
}

#base_spacer_photo_1 {
    min-height: 600px;
    background-image: url("/static/media/3.jpg");
    background-position: center;
    background-size: cover;
}

#base_spacer_photo_2 {
    min-height: 600px;
    background-image: url("/static/media/4.jpg");
    background-position: center;
    background-size: cover;
}

#base_spacer_photo_3 {
    min-height: 400px;
    background-image: url("/static/media/sliced.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* This makes the image fill the container */
}


footer {
    background-image: url("/static/images/diagonal-squares.webp");
    background-repeat: repeat;
    position: relative; /* Needed for positioning the overlay */
    z-index: 1; /* Ensures content appears above the overlay */
}

footer::before {
    content: ''; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with transparency */
    z-index: -1; /* Place the overlay behind the content */
}

.navbar-nav .nav-link {
    font-size: 1.2rem;
}


.navbar-toggler {
    background-color: transparent;
    border: none;
}


@media (max-width: 991.98px) {
    .navbar-toggler {

    }
}


@media (min-width: 768px) {
  .navbar-toggler {
    visibility: hidden;
  }
}


@media (max-width: 991.98px) {
    .navbar-toggler {
        width: 100%;
    }
}


    .about-section h2 {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .about-section h5 {
      font-weight: 700;
      margin-top: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .about-section h2::before,
    .about-section h2::after {
      content: "";
      display: inline-block;
      width: 50px;
      height: 2px;
      background-color: #ccc;
      vertical-align: middle;
      margin: 0 1rem;
    }

/*--------------------------------------*
 *            HERO SECTION
 *--------------------------------------*/
.hero {
  /* Adjust to your preferred height and background */
  background: linear-gradient(
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.5)
    ),
    url('/static/media/1.jpg')
    center/cover no-repeat;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff; /* or your chosen accent color */
}

.hero h1 {
  font-size: 3rem; /* Adjust as needed */
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero .btn {
  margin-top: 1.5rem;
}

/*--------------------------------------*
 *            SECTION TITLES
 *--------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

/*--------------------------------------*
 *            DARK SECTION
 *--------------------------------------*/
.bg-dark-section {
  background-color: #111; /* Adjust to match your theme’s dark color */
  color: #f8f9fa; /* Light text on dark background */
  padding: 2rem 0;
}

/*--------------------------------------*
 *           PRICING TABLE
 *--------------------------------------*/
.pricing-table .card {
  background-color: #222;  /* Slightly darker card background */
  border: 1px solid #333; /* Outline/border style */
}

.pricing-table .card-header {
  background-color: #333; /* Dark header for contrast */
  color: #fff;
  text-align: center;
}

.pricing-table .card-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.pricing-table .card-body ul li {
  padding: 0.25rem 0;
}

.pricing-table .card-body .row div {
  margin-bottom: 0.5rem;
}

/*--------------------------------------*
 *      OPTIONAL BUTTON COLORS
 *--------------------------------------*/

/*
.btn-primary {
  background-color: #cc0000;
  border-color: #cc0000;
}
*/

/*--------------------------------------*
 *           MENU SECTION
 *--------------------------------------*/
.menu-page {
  padding: 2rem 0;
}

.menu-page .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.menu-page .lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.menu-section {
  margin-bottom: 2rem;
}

.menu-section-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-description {
  margin-bottom: 0.75rem;
  font-style: italic;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  margin-bottom: 0.5rem;
}

.price-list li strong {
  margin-right: 0.5rem;
}

/*--------------------------------------*
 *         OPTIONAL STYLING
 *--------------------------------------*/

.menu-section-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25rem;
}
/*--------------------------------------*
 *         FOOD PAGE HERO
 *--------------------------------------*/
.food-hero {
  /* Adjust the background image, position, and gradient to your liking */
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('/static/media/3.jpg')
    center/cover no-repeat;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.food-hero h1 {
  font-size: 2.5rem; /* Adjust as needed */
  margin-bottom: 0.5rem;
}

.food-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------*
 *              FAQ SECTION
 *--------------------------------------*/
.faq-section {
  padding: 2rem 0;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* Individual FAQ items */
.faq-item {
  border-left: 4px solid #700c1d; /* Adjust border color to suit your theme */
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #700c1d; /* Title color matches the border, for visual continuity */
}

.faq-answer {
  margin: 0;
  line-height: 1.5;
}


/*--------------------------------------*
 *         ABOUT US PAGE
 *--------------------------------------*/
.about-hero {
  /* Hero background with overlay */
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('/static/media/lounge.png')
    center/cover no-repeat;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem; /* spacing below hero */
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Section heading (e.g. "who we are", "our mission") */
.about-section-title {
  font-weight: 600;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* General container for each "about" topic */
.about-section {
  margin-bottom: 2rem;
}

/* Optional styling for additional text blocks */
.about-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-hero-2 {
  /* Hero background with overlay */
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('/static/media/lounge2.png')
    center/cover no-repeat;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

}

.grade-bg {
    background-color: rgba(0, 0, 0, 0.6); /* Transparent dark background (50% opacity) */
    color: white; /* Text color for contrast */
  }


/*
UTILITY SECTION*/
.utility {
  /* Adjust the background image, position, and gradient to your liking */
  background: linear-gradient(
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.9)
    ),
    url('/static/media/3.jpg')
    center/cover no-repeat;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}