html {
  background: #1b1b1b;
  font-size: 100%;
  scroll-behavior: auto;
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.border {
  border: black 5px;
}

/* Accessibility and SEO Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #d32c33;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Focus states for better accessibility - but not on click */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

/* Only show focus outline for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #d32c33;
    outline-offset: 2px;
}

/* Improved button accessibility */
.my-btn:focus {
    outline: 2px solid #d32c33;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(211, 44, 51, 0.3);
}

/* Better contrast for accessibility */
body {
    overflow-x: hidden;
    font-family: "Lora", serif;
    color: #8d8d92;
    font-size: 16px;
    line-height: 1.5;
    /* Ensure minimum contrast ratio */
    background-color: #1b1b1b;
}

/* Improved link contrast */
a {
    color: #d32c33;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* Better heading hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-align: center;
    letter-spacing: 1.5px;
    color: #d32c33;
    font-weight: 600;
    line-height: 1; /* 100% */
}

h2 {
    color: #d32c33;
    font-weight: 400;
    line-height: 1.5;
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
}

h4 {
    color: #d32c33;
    font-weight: 500;
    font-size: 1.25rem;
}

/* Improved navigation accessibility */
.nav-items a {
    font-size: 18px;
    box-sizing: border-box;
    padding: 30px 0 5px 0;
    margin: 0 30px;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
    line-height: 1.8;
    position: relative;
}

.nav-items a:hover,
.nav-items a:focus {
    border-bottom: 3px solid #d32c33;
    padding-top: 25px;
    color: #d32c33;
}

/* Better image handling for accessibility */
img {
    max-width: 100%;
    height: auto;
}

/* Improved form elements if any are added later */
input, textarea, select {
    font-family: "Lora", serif;
    font-size: 16px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: #333;
}

/* Better mobile responsiveness */
@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.7rem !important; /* Larger on mobile */
        line-height: 1 !important;
    }

    .header-content h1 {
        font-size: 3.2rem !important;
        line-height: 1 !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }

    #locations h2 {
        font-size: 1.25rem !important;
    }
    
    /* Better mobile navigation */
    .nav-items {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-items a {
        margin: 5px 0;
        padding: 10px 0;
    }
}
.loading-screen {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d32c33;
  z-index: 2000;
  text-align: center;
}
.loading-screen img {
  max-width: 200px;
  margin: 0 auto;
}

nav {
  position: fixed;
  transition: all 0.2s;
  width: 100%;
  z-index: 1000;
}

.nav {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  padding: 0px 0px;
  justify-content: space-between;
  transition: background 0.2s;
}
.nav span {
  display: none;
}

.nav-items {
  display: flex;
  margin: 0 auto 0 auto;
}
.nav-items a {
  font-size: 18px;
  box-sizing: border-box;
  padding: 30px 0 5px 0;
  margin: 0 30px;
  text-decoration: none;
  color: white;
  transition: padding 0.2s;
  line-height: 1.8;
}
.nav-items a:hover {
  border-bottom: 3px solid #d32c33;
  padding-top: 25px;
}

/*scrolling*/
.nav-scroll {
  background: #1b1b1b;
  color: white;
  transition: all 0.5s;
  justify-content: space-between;
}
.nav-scroll span {
  display: block;
  margin-left: 20px;
}
.nav-scroll span img {
  max-width: 200px;
}
.nav-scroll .nav-items {
  margin: 0 20px 0 auto;
}
.nav-scroll .nav-items a {
  font-size: 14px;
  padding: 20px 0;
  color: white;
  border: none;
  border-top: 3px solid transparent;
  align-items: center;
}
.nav-scroll .nav-items a:hover {
  border-color: #d32c33;
}
.nav-scroll .nav-items a.active {
  color: white;
  border-color: #d32c33;
}

/*navigation overlay*/
.nav-overlay {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 10000;
  background-color: #1b1b1b;
  opacity: 0.95;
  overflow-x: hidden;
  transition: all 0.2s;
  padding-top: 60px;
  text-align: center;
}
.nav-overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 22px;
  color: white;
  display: block;
  transition: 0.2s;
}
.nav-overlay a:hover {
  color: #d32c33;
}
.nav-overlay .toggle-nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  font-size: 22px;
}
.nav-overlay .toggle-nav:hover {
  cursor: pointer;
  background-color: #dc565c;
}

/*responsive*/
@media screen and (max-width: 1100px) {
  .nav {
    padding-right: 0;
    padding-left: 10px;
    justify-content: space-between;
  }

  .nav-items a {
    padding: 30px 8px;
    margin: 0px 12px;
  }

  .nav-items a:last-child {
    display: block;
    margin: 0;
    border-bottom: none;
  }

  .nav-scroll .nav-items a:last-child {
    padding: 20px;
  }
}
@media (max-width: 800px) {
  span img {
    display: none;
  }

  section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

#intro {
  background-color: #1b1b1b;
}
#intro .intro-row {
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  justify-content: space-between;
}
#intro .col-text {
  width: 35%;
}
#intro .col-image {
  width: 60%;
  object-fit: fill;
}
#intro h1 {
  color: white;
}
#intro h2 {
  color: white;
}

.containerz {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 81.41%
  );
}

.filler-image {
  width: 200px;
  height: 200px;
  text-align: center;
  color: #1b1b1b;
}

.banner {
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: #191717;
}

#menu h1 {
  color: #1b1b1b;
}
#menu h2 {
  padding-bottom: 8px;
}
#menu .menu-row {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
#menu .big-row {
  margin-bottom: 20px;
}
#menu .food {
  flex: 5;
  margin-bottom: 1rem !important;
}
#menu .price {
  flex: 1;
  color: #d32c33;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px !important;
}
#menu .title {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 18px;
  margin-bottom: 4px !important;
}
#menu .info {
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 0px;
}
#menu .menu-row {
  justify-content: space-between;
}

@media (min-width: 767px) {
  .menu-col {
    width: 45%;
  }
}
#locations {
  background: #1b1b1b;
}
#locations h1 {
  color: white;
}
#locations h4 {
  color: #f2242f;
  /*color: #FAFAFA;
  text-decoration: underline;
  text-decoration-color: #D32C33;*/
  font-size: 18;
  padding-bottom: 4px;
}
#locations h2 {
  font-size: 1.5rem;
  color: white;
}
#locations .lead {
  padding-top: 8px;
  text-align: center;
}
#locations .col-loc {
  flex: 1;
}
#locations .container2 {
  display: flex;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  align-items: stretch;
  padding-top: 40px;
}

@media screen and (max-width: 800px) {
  .col-loc {
    padding: 0px 30px 20px;
  }

  .col-loc:last-child {
    padding-bottom: 0px;
  }

  h4 {
    margin-bottom: 0px !important;
  }

  .address {
    margin-bottom: 0.5rem !important;
  }
}
#catering .img-row {
  justify-content: space-between;
  overflow: hidden;
}
#catering .lead {
  padding-top: 8px;
}
#catering img {
  object-fit: contain;
}
#catering .lead {
  color: #1b1b1b !important;
  text-align: center;
}
#catering h1 {
  color: #1b1b1b;
}
#catering a {
  color: #d32c33;
}
#catering a:hover {
  opacity: 80%;
}
#catering .img-row {
  padding-top: 80px;
  padding-bottom: 20px;
}

#about {
  background: #1b1b1b;
}
#about h1 {
  color: white;
}
#about .col-text {
  flex-basis: 45%;
}
#about .col-image {
  flex-basis: 45%;
  width: fit-content;
}
#about .about-row {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}
#about p {
  padding-bottom: 8px;
}
#about img {
  width: 80%;
  height: auto;
  display: block;
  flex: 1;
}
#about #story {
  float: left;
  flex: 3;
}
#about #chef {
  display: block;
}

#contact {
  line-height: 16px;
}
#contact .img-container {
  padding-bottom: 28px;
}
#contact a {
  color: #1b1b1b;
}
#contact a:hover {
  opacity: 80%;
}
#contact img {
  max-width: 100%;
  height: auto;
}
#contact h3 {
  color: #1b1b1b;
  font-size: 18px;
}
#contact .col {
  text-align: center;
}
#contact .social-row {
  padding-top: 28px;
  margin: 0 auto 0 auto;
  max-width: 300px;
}

.v-header {
  height: 100vh;
  display: flex;
  align-items: center;
}

.h-container {
  max-width: 960px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
  text-align: center;
}

.fullscreen-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fullscreen-video-wrap img {
  display: none;
  position: relative;
  height: 100%;
}

.fullscreen-video-wrap video {
  min-height: 100%;
  min-width: auto;
}

.buttons {
  margin: 100px auto 0px auto;
  display: none;
  padding-top: 20px;
  color: white;
  max-width: 220px;
  text-align: center;
}

.my-btn {
  padding: 16px 48px;
  color: white;
  margin-bottom: 16px;
  width: 100%;
  border-radius: 8px;
}
.my-btn a {
  color: #f2f2f7;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}

#primary-button {
  background: #d32c33;
  opacity: 90%;
}

#secondary-button {
  background: #1b1b1b;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-video-wrap video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .fullscreen-video-wrap video {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .fullscreen-video-wrap video {
    display: none;
  }

  .fullscreen-video-wrap img {
    display: block;
    min-width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .nav {
    display: none;
  }

  #hero-details {
    display: none;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
  }
}
@media (max-width: 400px) {
  .fullscreen-video-wrap img {
    left: -70px;
  }
}
.header-overlay {
  height: 100vh;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  background: #1b1b1b;
  opacity: 0.6;
}

.hide-big {
  display: none;
}

@media screen and (max-width: 767px) {
  .hide-small {
    display: none;
  }

  .show-small {
    display: block;
  }
}
.myCarousel {
  height: 375px;
}

.carousel {
  background-color: #1b1b1b !important;
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}

.header-content {
  width: 100%;
  z-index: 2;
  text-transform: uppercase;
  color: white;
}
.header-content h1 {
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
}
.header-content p {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 1px;
  display: block;
}

@media (max-width: 1000px) {
  .containerz {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .container2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
::-webkit-scrollbar {
  width: 0px;
  /* Remove scrollbar space */
  background: #1b1b1b;
  /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
  background: #d32c33;
}

/*# sourceMappingURL=styles.css.map */

/* Hamburger menu styles - always visible on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(27,27,27,0.8); /* More visible background */
    border: none;
    cursor: pointer;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 3000;
    border-radius: 8px;
    padding: 8px; /* Add padding to center the bars */
}

.hamburger-bar {
    width: 20px; /* Slightly smaller for better centering */
    height: 3px;
    background: #d32c33;
    margin: 2px 0; /* Reduced margin for better centering */
    border-radius: 2px;
    transition: all 0.3s;
}

/* Nav overlay styles */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(27,27,27,0.98);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}
.nav-overlay.active {
    display: flex;
    opacity: 1;
}
.close-nav {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2100;
}
.overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.overlay-nav a {
    color: #fff;
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.2s;
}
.overlay-nav a:hover, .overlay-nav a:focus {
    color: #d32c33;
    outline: none;
}

/* Always show hamburger on mobile, regardless of scroll state */
@media (max-width: 991px) {
    .hamburger {
        display: flex !important; /* Force display on mobile */
    }
    .nav-items {
        display: none !important;
    }
    .navbar {
        display: none !important;
    }
}

/* Show nav-items on desktop */
@media (min-width: 992px) {
    .nav-overlay {
        display: none !important;
    }
    .hamburger {
        display: none !important;
    }
    .nav-items {
        display: flex !important;
    }
    .navbar {
        display: block !important;
    }
}

/* Always show hero video on all screens */
.fullscreen-video-wrap video {
    display: block !important;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Remove mobile-hero image fallback if present */
.fullscreen-video-wrap .mobile-hero {
    display: none !important;
}

.container.nav {
    position: relative;
    z-index: 3001;
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 4000;
    padding: 0;
}
