* {
    /* colors */
    --primary-black: black;
    --primary-white: white;
    --text-gray: lightgray;
    --reviews-gray-color: #F7F1E1;
    --primary-color: #BF1109;
    --secondary-color: #14A83A;
    --primary-dark-color: #0C0C1C;
    --orange-color: #FFB200;
    --white-color: #ffffff;
    --gray-color: #F7F1E1;
    --gray-light-color: #F5F5F5;
    --text-color: #484848;
    --heading-font: "Barlow Condensed", sans-serif;
    --body-font: system-ui, sans-serif;

    /* sizes */
    --sm: 576px;
    --md: 768px;
    --lg: 992px;
    --xl: 1200px;
}

/* barlow-condensed-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('assets/fonts/barlow-condensed-v13-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/barlow-condensed-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/barlow-condensed-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('assets/fonts/barlow-condensed-v13-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}


body {
    font-weight: normal;
    font-style: normal;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 30px;
}

.primary-color-text {
    color: var(--primary-color);
}

.white-color-text {
    color: var(--white-color);
}

.section-header-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: var(--heading-font);
}

@media (min-width: 576px) {
    .section-header-text {
        font-size: 2rem;
        line-height: 1rem;
    }
}

@media (min-width: 768px) {
    .section-header-text {
        font-size: 3rem;
        line-height: 2.5rem;
    }
}

@media (max-width: 400px) {
    .section-header-text {
        font-size: 2rem;
    }
}

.secondary-section-header-text {
    color: var(--orange-color);
    font-weight: 700;
}

.body-text {
    color: var(--text-color);
    font-weight: 300;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.font-black {
    color: var(--primary-dark-color);
}

.font-white {
    color: var(--white-color);
}

.font-orange {
    color: var(--orange-color);
}

.font-red {
    color: var(--primary-color);
}

.button-core {
    display: block;
    position: relative;
    font: 600 20px var(--body-font);
    padding: 17px 46px;

    color: var(--white-color);

    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

    border: none;
    border-radius: 8px;
}

a.button-core {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 1rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.food-tray-icon {
    width: 15px;
    height: 15px;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* wide screens: ends of the row */
@media (min-width: 700px){
  .header-row {
    justify-content: space-between;
  }
}

/* small screens: stack & center */
@media (max-width: 699.98px){
  .header-row{
    justify-content: center;
  }

  .header-row > h1,
  .header-row > button {
    flex: 0 0 100%;     /* force each onto its own row */
    display: block;
    margin-left: 0;     /* in case you keep ml-auto elsewhere */
    text-align: center; /* centers the h1 text */
  }

  .header-row > button{
    margin-inline: auto; /* centers the button itself */
  }
}

.center-text {
    text-align: center;
}

.heading-font {
    font: 600 25px var(--heading-font);
}

.red-button {
    background-color: var(--primary-color);
}

.red-button:hover {
    background-color: var(--secondary-color);
}

.green-button {
    background-color: var(--secondary-color);
}

.green-button:hover {
    background-color: var(--orange-color);
}

.orange-button {
    background-color: var(--orange-color);
}

.orange-button:hover {
    background-color: var(--primary-color);
}

/* header */
header {
    height: 90px;
    width: 100%;
    background-color: var(--primary-black);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 80px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger as a button */
.nav-hamburger {
  display: none;              /* shown on mobile in media query */
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: white;               /* match your header theme */
  font-size: 22px;
  line-height: 1;
}

/* --- Drawer + overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;               /* drawer will be above this */
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 85vw);

  background: #111;
  color: white;

  z-index: 1000;

  /* Start hidden off-screen */
  transform: translateX(100%);
  transition: transform 200ms ease;

  display: flex;
  flex-direction: column;
  padding: 16px;
  box-shadow: -12px 0 30px rgba(0,0,0,0.3);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav-drawer-title {
  font-weight: 700;
  font-size: 18px;
}

.nav-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  padding: 10px;
  font-size: 20px;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.nav-drawer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 8px;
  border-radius: 8px;
}

.nav-drawer-links a:hover {
  background: rgba(255,255,255,0.08);
}

.nav-drawer-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* When open (toggled by JS) */
.nav-open .nav-drawer {
  transform: translateX(0);
}

/* Stop body scrolling when open */
.nav-open {
  overflow: hidden;
}

/* --- Responsive: show hamburger, hide desktop nav & CTA --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  #book-a-table-button {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.header-logo {
    width: 160px;
    height: 40px;
    background-color: transparent;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    width: auto;
    height: 100%;
    color: white;

    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: flex-end;
}

.nav-links > a {
    color: white;
    text-decoration: none;
    font: 600 25px var(--heading-font);
    transition: 0.3s ease-out;
}

.header-right .nav-hamburger {
    display: none;
}

.nav-links > a:hover {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .nav-links > a {
        font-size: 18px;
    }
}

@media (max-width: 1000px) {
    .header-container {
        width: 92%;
    }

    .nav-links {
        display: none;
    }

    .header-right .nav-hamburger {
        display: block;
        color: white;
    }

    #book-a-table-button {
        display: none;
    }
}



/* hero */
.hero {
    min-height: 700px;
    width: 100%;
    background-color: var(--primary-black);
}

.hero-container {
    width: 70%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    padding: 20px 50px;
}

.hero-column {
    width: 45%;
    height: auto;
    margin-right: 50px;
    margin-top: 100px;
}

.hero-intro-text {
    color: var(--orange-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-header-text {
    margin-top: 0;
    color: white;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-description-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-food-wrapper {
    position: relative;
    height: 600px;
    width: 600px;
}

/*
img.hero-food {
    height: 600px;
    width: 600px;
}
*/

img.text-20-off {
    position: absolute;
    width: 180px;
    height: auto;

    top: 10%;
    left: 10%;

    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
}

@media (max-width: 1200px) {
    /*
    img.hero-food {
        height: 500px;
        width: 500px;
    }
    */

    img.text-20-off {
        width: 150px;
    }

    .hero-food-wrapper {
        height: 500px;
        width: 500px;
    }
}

@media (max-width: 1000px) {
    .hero-container {
        flex-direction: column;
        padding: 20px 0;

        align-items: center;
    }

    /*
    img.hero-food {
        height: 300px;
        width: 300px;
    }
    */

    img.text-20-off {
        width: 100px;
    }

    .hero-food-wrapper {
        order: 1;
        height: 300px;
        width: 300px;
    }

    .hero-column {
        order: 2;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-header-text {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    /*
    img.hero-food {
        height: 300px;
        width: 300px;
    }
    */

    .hero-food-wrapper {
        height: 300px;
        width: 300px;
    }
}
