/*****************************/
/***** VARIABLES & COLORS ****/
/*****************************/
:root {
  --color-red: #c90828; /* Diablo-Red */
  --color-black: #0c0c0c; /* Diablo-Black */
  --color-grey: #ededed; /* Diablo-Grey */
  --color-gradient: linear-gradient(
    180deg,
    #c90828 0%,
    #48020f 40.45%,
    #0a0102 67.88%,
    #0c0c0c 96%
  );
}

/*****************************/
/***** COLOR UTILITIES *******/
/*****************************/
/* Text Colors */
.color-red,
.active {
  color: var(--color-red);
}
.color-black {
  color: var(--color-black);
}
.color-grey {
  color: var(--color-grey); /* Default text color */
}

/* Background Colors */
.bg-color-red {
  background-color: var(--color-red);
}
.bg-color-black {
  background-color: var(--color-black);
}
.bg-color-grey {
  background-color: var(--color-grey);
}
.bg-color-gradient {
  background-image: var(--color-gradient);
}

/****************************/
/***** BORDER STYLES *******/
/****************************/

/* Border Colors - All Sides */
.border-color-red {
  border: 1px solid var(--color-red);
}
.border-color-black {
  border: 1px solid var(--color-black);
}
.border-color-grey {
  border: 1px solid var(--color-grey);
}

/* Border Top Colors */
.border-top-color-red {
  border-top: 1px solid var(--color-red);
}
.border-top-color-black {
  border-top: 1px solid var(--color-black);
}
.border-top-color-grey {
  border-top: 1px solid var(--color-grey);
}

/* Border Bottom Colors */
.border-bottom-color-red {
  border-bottom: 1px solid var(--color-red);
}
.border-bottom-color-black {
  border-bottom: 1px solid var(--color-black);
}
.border-bottom-color-grey {
  border-bottom: 2px solid var(--color-grey);
}

/* Border Left Colors */
.border-left-color-red {
  border-left: 1px solid var(--color-red);
}
.border-left-color-black {
  border-left: 1px solid var(--color-black);
}
.border-left-color-grey {
  border-left: 1px solid var(--color-grey);
}

/* Border Right Colors */
.border-right-color-red {
  border-right: 1px solid var(--color-red);
}
.border-right-color-black {
  border-right: 1px solid var(--color-black);
}
.border-right-color-grey {
  border-right: 1px solid var(--color-grey);
}

/* Border All Sides */
.border-all-color-red {
  border: 1px solid var(--color-red);
}
.border-all-color-black {
  border: 1px solid var(--color-black);
}
.border-all-color-grey {
  border: 1px solid var(--color-grey);
}

/**************************/
/***** BUTTON STYLES *******/
/****************************/
/* Custom Bootstrap Button Overrides */
.btn {
  font-family: "Shoreditch";
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  border-radius: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  width: auto; /* Ensure buttons adapt to text size */
  text-transform: uppercase;
}

/* Button Colors */
.btn-primary {
  background-color: var(--color-red);
  color: var(--color-grey);
  border: 1px solid var(--color-red);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-red);
  color: var(--color-black);
  border: 1px solid var(--color-red);
}

/**************************/
/***** FONT SETTINGS ******/
/**************************/
@font-face {
  font-family: "Shoreditch";
  src: url("../fonts/Shoreditch2.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BenchNine-Regular";
  src: url("../fonts/BenchNine-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BenchNine-Bold";
  src: url("../fonts/BenchNine-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BenchNine-Light";
  src: url("../fonts/BenchNine-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hackney";
  /* src: url("../fonts/HackneyPersonalUseOnly.ttf") format("truetype"); */
  src: url("../fonts/Hackney-Vector.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Font Utilities */
.font-weight-bold {
  font-weight: bold;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-normal {
  font-weight: normal;
}
.font-italic {
  font-style: italic !important;
}
.font-shoreditch {
  font-family: "Shoreditch";
}
.font-bench-regular {
  font-family: "BenchNine-Regular";
}
.font-bench-bold {
  font-family: "BenchNine-Bold";
}
.font-bench-light {
  font-family: "BenchNine-Light";
}
.font-hackney {
  font-family: "Hackney";
}

/**************************/
/***** TYPOGRAPHY *********/
/**************************/

h1,
h2,
h3,
h4,
h5,
p,
small,
a,
span {
  color: var(--color-grey); /* Diablo-Grey as default */
  font-family: "Shoreditch"; /* Default site font */
}

.mega-display {
  font-size: 8rem;
  line-height: 6.25rem;
}
.title-display {
  font-family: "Hackney";
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6rem; /* 100% */
}
.display {
  font-size: 4rem;
}
.mini-display {
  font-size: 2rem;
}
h1,
.h1 {
  font-size: 3rem;
}
h2,
.h2 {
  font-size: 2.25rem;
}
h3,
.h3 {
  font-size: 1.5rem;
}
h4,
.h4 {
  font-size: 1.25rem;
}
h5,
.h5 {
  font-size: 1rem;
}
h6,
.h6 {
  font-size: 1rem;
}
p,
.p,
a,
.a {
  font-size: 1rem;
  text-decoration: none;
}
small,
.small {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .mega-display {
    font-size: 4rem; /* Reduced for mobile readability */
    line-height: 3.5rem; /* Adjusted to ensure good spacing */
  }
  .title-display {
    font-size: 3rem; /* Reduced to half for better mobile fit */
    line-height: 3.5rem; /* Increased slightly to ensure good spacing */
    font-weight: 700; /* Maintains the bold look */
  }
  .display {
    font-size: 3rem; /* Adjusted to a more standard size for mobile */
  }
  .mini-display {
    font-size: 1.3rem; /* Suitable for mobile readability */
  }
  h1,
  .h1 {
    font-size: 2rem; /* Scaled down for smaller screens */
  }
  h2,
  .h2 {
    font-size: 1.75rem; /* Slightly smaller for mobile */
  }
  h3,
  .h3 {
    font-size: 1.25rem; /* Standard h3 size for mobile */
  }
  h4,
  .h4 {
    font-size: 1.125rem; /* Reduced for better fit */
  }
  h5,
  .h5 {
    font-size: 1rem; /* Maintained for consistency */
  }
  h6,
  .h6 {
    font-size: 0.875rem; /* Slightly reduced to differentiate from h5 */
  }
  p,
  .p,
  a,
  .a {
    font-size: 0.875rem; /* Reduced for mobile, still easily readable */
  }
  small,
  .small {
    font-size: 0.75rem; /* Adjusted to be readable but not overwhelming */
  }
}

/****************************/
/***** GENERAL STYLES *******/
/****************************/

* {
  transition: all 0.3s linear;
  scroll-behavior: smooth;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}

*:focus,
*:hover {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: var(--color-grey);
  color: var(--color-grey); /* Default text color */
  font-family: "Shoreditch", serif;
  font-weight: 400;
  font-style: normal;
}

main,
section {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

section {
  padding: 4rem 0;
}
.category-section {
  padding: 1rem 0;
}

.bg-contained {
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
}

figure {
  margin: 0;
}

/**************************/
/***** MENU & HEADER *******/
/**************************/

/* Social Icons */
.social-icons {
  position: absolute;
  top: 15px; /* Adjusted for better visibility */
  right: 15px; /* More spacing for consistency */
  z-index: 999;
}

.btn-icon {
  background-color: var(--color-red);
  border: solid 1px var(--color-red);
  color: var(--color-grey);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-left: 10px;
  transition: background-color 0.3s, color;
}

.btn-icon:hover {
  background-color: var(--color-red);
  border: solid 1px var(--color-red);
  color: var(--color-black);
}

/* Reservation Button Styling */
.btn-reserve {
  text-align: center;
  font-family: "BenchNine-Bold";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 8rem;
  width: 8rem;
  background-color: var(--color-red);
  color: var(--color-grey);
  padding: 0;
  border-radius: 50%;
  text-transform: uppercase;
  border: 8px solid var(--color-black);
  transition: color 0.3s, transform 0.3s;
  box-shadow: none; /* Remove Bootstrap box-shadow */
}

.btn-reserve:hover,
.btn-reserve:active,
.btn-reserve:focus {
  border: 8px solid var(--color-black) !important;
  background-color: var(--color-red) !important;
  color: var(--color-black) !important;
  transform: scale(0.9);
}

@media (max-width: 768px) {
  .btn-reserve {
    border: 4px solid var(--color-black);
    font-size: 16px;
    height: 6rem;
    width: 6rem;
  }
  .btn-reserve:hover,
  .btn-reserve:active,
  .btn-reserve:focus {
    border: 4px solid var(--color-black) !important;
    background-color: var(--color-red) !important;
    color: var(--color-black) !important;
    transform: scale(0.9);
  }
}

/* Menu Links Styling */
.nav-link {
  font-family: "BenchNine-Regular";
  color: var(--color-grey);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  margin: 5px 0;
  display: block;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s;
}

.nav-link-menu{
  color: var(--color-black);
}

.nav-link:hover {
  color: var(--color-red);
  transform: scale(1.05);
}

/* Adjustments for Overall Menu Layout */
.menu {
  position: fixed;
  bottom: 20%;
  right: 1rem;
  text-align: right;
  z-index: 999;
}
@media (max-width: 768px) {
  .menu {
    top: 1%;
    bottom: 0;
    right: 1%;
  }
}

/* Hamburger Icon */
.hamburger-icon {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
  z-index: 1001; /* Ensure it's above other elements */
}

.hamburger-icon i {
  transition: opacity 0.3s ease-in-out;
}

.hamburger-icon .fa-bars {
  display: inline-block;
}

.hamburger-icon .fa-x {
  display: none;
}

.hamburger-icon.toggle .fa-bars {
  display: none;
}

.hamburger-icon.toggle .fa-x {
  display: inline-block;
}

/* Overlay Menu */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden; /* Initially hidden */
  opacity: 0; /* Fully transparent */
  display: flex; /* Always keep layout for animation */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show overlay with fade-in */
.overlay-menu.menu-active {
  visibility: visible;
  opacity: 1; /* Fully visible */
}

/* Flexbox to Center Menu Vertically and Horizontally */
.overlay-nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; /* Use full height to center items */
}

.overlay-nav-links a {
  color: var(--color-grey);
  font-size: 1.5rem;
  margin: 1rem;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s;
}

.overlay-nav-links a:hover {
  color: var(--color-red);
}

footer a,
.red-link {
  color: var(--color-red);
}
footer a:hover {
  color: var(--color-white);
}
.red-link:hover {
  color: var(--color-black);
}


/* Reservation Button */
.overlay-menu .btn-reserve {
  margin-bottom: 2rem; /* Space between Reserve button and nav links */
}

/* Hide Hamburger when Overlay is Active */
.overlay-menu.active .hamburger-icon {
  display: none;
}

/* Hide Close Button when Overlay is Hidden */
.overlay-menu:not(.active) .close-button {
  display: none;
}

/**************************/
/***** FOOTER STYLES ******/
/**************************/

footer iframe {
  height: 100% !important;
  width: 100% !important;
}

/**************************/
/***** AGE GATE STYLES *****/
/**************************/

/****************************/
/***** SWIPER STYLES *******/
/****************************/

/* Swiper Styling */
.swiper-container {
  overflow: hidden;
  width: 100%; /* Ensure it takes the full width */
}

.swiper-wrapper {
  display: flex; /* Ensure horizontal layout */
  flex-direction: row; /* Force horizontal direction */
  align-items: center;
}

.swiper-slide {
  width: auto; /* Adjust width as needed */
}

/* Active Category Link Styling */
.parent-category-link.color-red,
.child-category-link.color-red {
  color: var(--color-red); /* Diablo Red */
}
.child-category-link.active {
  color: var(--color-red);
}

.parent-category-link.color-black,
.child-category-link.color-black {
  color: var(--color-black); /* Diablo Black */
}

/* Placeholder for items with no image */
.img-placeholder {
  width: 100%;
  height: 200px; /* Match the height of your images */
  background-color: var(--color-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal Divider */
.category-divider {
  border-top: 1px solid var(--color-black);
  margin: 1rem 0;
}

/* Fixed navigation */
.fixed-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Child category container active link styling */
.child-categories-container a.active {
  color: var(--color-red);
}

/* Item excerpt with line clamp */
.item-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Modal customization */
.modal-body {
  padding: 2rem;
  position: relative;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Custom close button for modal */
.btn-close-custom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #c90828;
}

.btn-close-custom i {
  cursor: pointer;
}

.btn-close-custom:hover {
  color: #d9232d; /* Darker shade on hover */
}

/* Lazy load image styling */
.lazy-load {
  display: block;
  width: 100%; /* Adjust width as necessary */
}

@media (max-width: 992px) {
  .btn-reserve-fixed {
    position: fixed;
    bottom: 6.5rem;
    right: 0.5rem;
    background-color: var(--color-red); /* Using defined red */
    color: var(--color-grey); /* Using defined grey */
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-transform: uppercase;
    font-family: "BenchNine-Bold"; /* Using defined font */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-black); /* Consistent border */
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 4rem;
    width: 4rem;
  }

  .btn-reserve-fixed:hover,
  .btn-reserve-fixed:focus {
    background-color: var(--color-black);
    color: var(--color-grey);
    transform: scale(0.95);
  }
}

.lb-outerContainer {
  background-color: transparent !important;
}