/* =========================================================
   LEO'S PUB & EATERY
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --black: #090909;
  --charcoal: #121210;
  --cream: #eee7d7;
  --cream-dark: #d4c9b4;
  --gold: #c58b2b;
  --gold-light: #dfaa48;
  --green: #09261f;
  --green-dark: #041611;
  --white: #f4efe4;

  --sans: "Montserrat", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --display: "Bebas Neue", sans-serif;
  --hand: "Caveat", cursive;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;

  width: 100%;
  max-width: 100%;
  overflow-x: hidden;

  background: var(--cream);
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;

  margin: 0;

  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);

  overflow-x: hidden;

  position: relative;
  overscroll-behavior-x: none;
}

main,
header,
footer,
section {
  max-width: 100%;
}
img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.main-nav {
  width: min(1380px, calc(100% - 80px));
  height: 120px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.3rem;
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  line-height: 0.8;
  letter-spacing: -1px;
}

.nav-logo::after {
  content: "PUB & EATERY  ·  EST. 2003";
  display: block;

  margin-top: 12px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;

  color: #c8b995;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  position: relative;
  padding: 12px 0;

  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;

  color: #e7dfd2;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links li:first-child a {
  color: var(--gold-light);
}

.nav-links li:first-child a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: 3px;

  width: 100%;
  height: 2px;

  background: var(--gold);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 780px;

  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      90deg,
      rgba(3, 4, 4, 0.96) 0%,
      rgba(3, 4, 4, 0.85) 22%,
      rgba(3, 4, 4, 0.46) 42%,
      rgba(3, 4, 4, 0.12) 63%,
      rgba(3, 4, 4, 0.12) 100%
    ),
    url("img/hero-bg.png");

  background-size: cover;
  background-position: center center;

  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    transparent 20%,
    transparent 74%,
    rgba(0, 0, 0, 0.52) 100%
  );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;

  padding-top: 110px;
}

.hero-eyebrow {
  margin-bottom: 22px;

  font-size: 0.87rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 4px;

  color: #d4ccbb;
}

.hero h1 {
  max-width: 650px;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 7.2vw, 8.3rem);

  font-weight: 400;
  line-height: 0.82;

  letter-spacing: 1px;

  color: #eee7d7;

  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  margin-top: -3px;
  margin-left: 5px;

  font-family: "Caveat", cursive;
  font-size: clamp(3.4rem, 5vw, 5.9rem);
  font-weight: 500;

  line-height: 0.95;

  color: var(--gold-light);

  transform: rotate(-3deg);
  transform-origin: left center;

  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 16px;

  margin-top: 42px;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;
  height: 58px;

  padding: 0 28px;

  border: 1px solid var(--gold);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--cream);

  background: rgba(8, 8, 8, 0.35);

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.hero-buttons a::after {
  content: "→";
  margin-left: 18px;
  font-size: 1.2rem;
}

.hero-buttons a:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

/* unused placeholder from HTML */

.hero-image {
  display: none;
}

/* =========================================================
   MENU / THREE LARGE IMAGE CARDS
   ========================================================= */

.menu {
  position: relative;
  z-index: 5;

  background: #0c0c0b;
  padding: 12px 12px 16px;
}

.menu .section-heading {
  display: none;
}

.menu-content {
  max-width: 1600px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 10px;
}

.menu-feature {
  position: relative;

  min-height: 245px;

  padding: 155px 28px 26px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 20%, rgba(0, 0, 0, 0.84) 100%),
    #25231f;

  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
}

.menu-feature::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 50% 30%,
    rgba(193, 125, 38, 0.12),
    transparent 45%
  );

  pointer-events: none;
}

.menu-feature h3,
.menu-feature p {
  position: relative;
  z-index: 2;
}

.menu-feature h3 {
  font-family: "Bebas Neue", sans-serif;

  font-size: 2rem;
  font-weight: 400;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: var(--white);
}

.menu-feature p {
  margin-top: 6px;

  max-width: 270px;

  font-size: 0.7rem;
  line-height: 1.6;

  text-transform: uppercase;
  letter-spacing: 1.2px;

  color: #bdb4a5;
}
.menu-feature:hover {
  border-color: #d99b32;
  cursor: pointer;
}
.pub-favourites {
  background-image: url("img/hero-pub.png");
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(239, 231, 215, 0.85);
}

.pints {
  background-image: url("img/pints.png");
  background-size: cover;
  background-position: center;
  border: 2px solid white;
}

.appetizers {
  background-image: url("img/pickles.png");
  background-size: cover;
  background-position: center;
  border: 2px solid white;
}

/* =========================================================
   HAPPY HOUR
   ========================================================= */

.happy-hour {
  background: #e8e0cf;
  color: #161714;

  padding: 70px 40px;
}

.happy-hour-content {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;

  align-items: center;
}

.happy-hour-heading > p:first-child {
  font-family: "Caveat", cursive;
  font-size: 2.6rem;
  line-height: 1;

  color: var(--gold);
}

.happy-hour-heading h2 {
  margin-top: 8px;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.88;

  letter-spacing: 2px;

  color: #161714;
}

.happy-hour-time {
  margin-top: 18px;

  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;

  color: var(--green);
}

.happy-hour-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.happy-hour-item {
  min-height: 125px;

  padding: 25px;

  border-bottom: 1px solid rgba(18, 18, 18, 0.2);
}

.happy-hour-item:nth-child(odd) {
  border-right: 1px solid rgba(18, 18, 18, 0.2);
}

.happy-hour-item h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 1px;
}

.happy-hour-item span {
  display: block;
  margin-top: 8px;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;

  color: var(--gold);
}

/* =========================================================
   FEATURES
   ========================================================= */

.features {
  position: relative;

  min-height: 470px;
  padding: 70px 40px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(3, 25, 20, 0.18), rgba(3, 25, 20, 0.18)),
    url("img/features-bg.png");

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.features-content {
  width: min(1380px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.65fr;

  align-items: center;

  gap: 65px;
}

/* =========================
   LEFT SIDE
   ========================= */

.features-heading > p {
  font-family: "Caveat", cursive;

  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.8;

  color: #d99b32;

  transform: rotate(-4deg);
  transform-origin: left;
}

.features-heading h2 {
  margin-top: 12px;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(4.8rem, 7vw, 7.3rem);
  font-weight: 400;
  line-height: 0.82;

  letter-spacing: 3px;

  color: #eee7d7;
}

.features-heading > span {
  display: block;

  margin-top: 20px;

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 2.6px;
  text-transform: uppercase;

  color: #aaa99f;
}

.features-button {
  width: fit-content;

  margin-top: 30px;
  padding: 14px 22px;

  display: flex;
  align-items: center;
  gap: 16px;

  border: 1px solid #b57e29;

  font-size: 0.65rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  color: #e8dfce;

  transition: 0.2s ease;
}

.features-button:hover {
  background: #b57e29;
  color: #111;
}

/* =========================
   PAPER / CENTRE
   ========================= */

.feature-showcase {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.feature-paper {
  position: relative;

  width: 225px;
  height: 325px;

  padding: 48px 33px 30px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: flex-start;

  text-align: center;

  background-image: url("img/ripped-paper.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  color: #15372a;

  filter: drop-shadow(-7px -7px 10px rgba(0, 0, 0, 0.22));

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

/* masking tape */

.feature-tape {
  position: absolute;

  top: 0px;
  left: 50%;

  width: 60px;
  height: 30px;

  transform: translateX(-50%) rotate(2deg);

  background: rgba(194, 151, 82, 0.78);

  opacity: 0.9;
}

/* DAY */

.feature-day {
  margin-bottom: 18px;

  font-size: 0.8rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  color: #555248;
}

/* SPECIAL PRICE */

.special-price {
  display: block;

  font-family: "Bebas Neue", sans-serif;

  font-size: 2.3rem;
  line-height: 0.85;

  color: #183f31;
}

/* SPECIAL NAME */

.special-name {
  display: block;

  margin-top: 5px;

  font-family: "Montserrat", sans-serif;

  font-size: 0.7rem;
  font-weight: 800;

  line-height: 1.25;

  text-transform: uppercase;
  letter-spacing: 0.8px;

  color: #34362f;
}

/* SPACE BETWEEN MULTIPLE SPECIALS */

.special-item + .special-item {
  margin-top: 25px;
}

/* =========================
   ARROWS
   ========================= */

.feature-arrow {
  border: 0;
  background: transparent;

  color: #d3ccbd;

  font-size: 2.5rem;
  font-weight: 200;

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.feature-arrow:hover {
  color: #d99b32;
  transform: scale(1.15);
}

/* =========================
   DAYS
   ========================= */

.feature-days {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 16px;
}

.feature-days button {
  border: 0;
  padding: 0;

  background: none;

  font-family: "Montserrat", sans-serif;

  font-size: 0.64rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1.4px;

  color: #868b80;

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.feature-days button:hover {
  color: #ddd5c5;
}

.feature-days button.active {
  color: #d69a32;

  font-weight: 800;

  transform: translateX(5px);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .features {
    padding: 70px 25px;
  }

  .features-content {
    grid-template-columns: 1fr;

    gap: 50px;

    text-align: center;
  }

  .features-heading > p {
    transform: none;
  }

  .features-button {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-days {
    flex-direction: row;

    justify-content: center;
    flex-wrap: wrap;

    gap: 14px 20px;
  }

  .feature-days button.active {
    transform: none;
  }
}

@media (max-width: 500px) {
  .feature-showcase {
    gap: 8px;
  }

  .feature-paper {
    width: 195px;
    height: 290px;

    padding: 45px 28px 25px;
  }

  .feature-arrow {
    font-size: 2rem;
  }
}
/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background: #e9e1d0;
  color: #1c201a;
  position: relative;

  overflow: hidden;
}

.about-content {
  min-height: 540px;

  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;

  background:
    linear-gradient(rgba(15, 12, 9, 0.12), rgba(15, 12, 9, 0.12)), #2d2b27;
}

/* The old "Same Great Spot Since 2003" pseudo-element was removed.
   It was positioned 650px from the left and was causing horizontal overflow. */

.about-text {
  padding: 100px clamp(45px, 7vw, 120px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.about-eyebrow {
  margin-bottom: 8px;

  font-size: 0.68rem;

  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 2;
  color: #9f793b;
}

.about-text h2 {
  margin-bottom: 25px;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(3.8rem, 5.5vw, 6rem);
  font-weight: 400;
  line-height: 0.9;

  text-transform: uppercase;
  z-index: 2;
  color: #17362a;
}

.about-text > p:not(.about-eyebrow) {
  max-width: 650px;
  margin-bottom: 18px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;

  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.6;

  color: #45443e;
}

.small-ripped-paper {
  position: absolute;
  right: -250px;
  bottom: 0;
  width: 1320px;
  height: 565px;
  z-index: 1;
}

.cheers {
  width: 600px;
  border-radius: 5px;
}
/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  background: #1b1a18;
}

.contact-content {
  width: min(1380px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 300px;

  min-height: 430px;
}
.contact-info {
  padding: 65px 60px;
}

.contact-info > h2 {
  margin-bottom: 28px;

  font-family: "Caveat", cursive;
  font-size: 3.8rem;
  line-height: 0.9;

  color: var(--gold-light);

  transform: rotate(-4deg);
  transform-origin: left;
}

.contact-info h3 {
  margin-bottom: 12px;

  font-family: "Bebas Neue", sans-serif;

  font-size: 1.5rem;
  letter-spacing: 1px;

  color: var(--cream);
}

.contact-info p {
  margin-bottom: 15px;

  font-size: 0.8rem;
  line-height: 1.7;

  color: #c6c0b4;
}

.hours {
  margin-top: 28px;
}

.contact-map {
  min-height: 430px;

  background:
    linear-gradient(rgba(236, 232, 221, 0.2), rgba(236, 232, 221, 0.2)), #ccc8be;
}

/* if you insert a Google Maps iframe later */

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;

  border: 0;

  /*filter: grayscale(1) contrast(0.9);*/
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  position: relative;

  min-height: 145px;

  padding: 40px max(40px, calc((100vw - 1380px) / 2));

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;

  background: #090909;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-style: italic;

  color: var(--cream);
}

.footer-brand p {
  margin-top: 3px;

  font-size: 0.55rem;

  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: #8d897e;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.footer-social a {
  font-size: 0.63rem;

  text-transform: uppercase;
  letter-spacing: 1px;

  color: #8f8b82;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--gold-light);
}

.footer-social {
  justify-self: end;

  display: flex;
  gap: 20px;
}

.rob-did-this {
  position: absolute;

  right: max(40px, calc((100vw - 1380px) / 2));
  bottom: 14px;

  font-size: 0.55rem;

  color: #6f6b63;
}
/* =========================================================
   DEDICATED MENU PAGE
   ========================================================= */

.menu-page {
  background: #ede5d5;
}

/* HERO */

.menu-page-hero {
  min-height: 440px;

  display: flex;
  align-items: flex-end;

  padding: 160px 40px 70px;

  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.88), rgba(3, 4, 4, 0.48)),
    url("img/hero-bg.png");

  background-size: cover;
  background-position: center 55%;

  color: #eee7d7;
}

.menu-page-hero-content {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.menu-page-hero-content > p {
  font-family: "Caveat", cursive;

  font-size: 3.2rem;

  color: #d99b32;

  transform: rotate(-3deg);
  transform-origin: left;
}

.menu-page-hero h1 {
  margin-top: -5px;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 400;

  line-height: 0.85;

  letter-spacing: 3px;
}

.menu-page-hero-content > span {
  display: block;

  margin-top: 20px;

  font-size: 0.72rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 2.5px;

  color: #c5bfb2;
}

/* MAIN MENU */

.full-menu {
  padding: 90px 40px 120px;

  background: #ede5d5;

  color: #1a201b;
}

.full-menu-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

/* INTRO */

.menu-intro {
  margin-bottom: 55px;

  text-align: center;
}

.menu-intro > p {
  font-family: "Caveat", cursive;

  font-size: 2.8rem;

  color: #ca8d29;
}

.menu-intro h2 {
  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 400;

  letter-spacing: 2px;

  color: #17382b;
}

/* CATEGORY BUTTONS */

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 75px;

  padding-bottom: 25px;

  border-bottom: 1px solid rgba(24, 55, 43, 0.2);
}

.menu-tab {
  padding: 13px 19px;

  border: 1px solid rgba(24, 55, 43, 0.25);

  background: transparent;

  font-family: "Montserrat", sans-serif;

  font-size: 0.66rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.2px;

  color: #31483e;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.menu-tab:hover {
  border-color: #ca8d29;
}

.menu-tab.active {
  background: #17382b;
  border-color: #17382b;

  color: #eee7d7;
}

/* CATEGORY */

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-category-heading {
  margin-bottom: 45px;

  text-align: center;
}

.menu-category-heading > p {
  margin-bottom: -5px;

  font-family: "Caveat", cursive;

  font-size: 2.5rem;

  color: #ca8d29;
}

.menu-category-heading h2 {
  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 400;

  line-height: 0.9;

  color: #17382b;
}

/* ITEMS */

.menu-items {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 80px;
}

.menu-item {
  padding: 25px 0;

  display: flex;
  justify-content: space-between;

  gap: 30px;

  border-bottom: 1px solid rgba(23, 56, 43, 0.2);
}

.menu-item h3 {
  margin-bottom: 7px;

  font-family: "Bebas Neue", sans-serif;

  font-size: 1.65rem;
  font-weight: 400;

  letter-spacing: 0.6px;

  color: #1a342a;
}

.menu-item p {
  max-width: 380px;

  font-family: "Cormorant Garamond", serif;

  font-size: 1.05rem;
  font-weight: 600;

  line-height: 1.45;

  color: #6d685e;
}

.menu-item > span {
  flex-shrink: 0;

  font-family: "Bebas Neue", sans-serif;

  font-size: 1.6rem;

  color: #b57d26;
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 8px;

  border: 1px solid rgba(238, 231, 215, 0.35);

  background: rgba(0, 0, 0, 0.25);

  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 6px;

  z-index: 100;
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 2px;

  background: #eee7d7;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1150px) {
  .main-nav {
    width: calc(100% - 50px);
  }

  .nav-links {
    gap: 22px;
  }

  .hero-content {
    width: calc(100% - 60px);
  }
}

@media (max-width: 850px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    position: relative;
    width: calc(100% - 36px);
    height: 90px;
  }

  .nav-logo {
    font-size: 2.5rem;
  }

  .hero {
    min-height: 680px;
    background-image: url("img/hero-bg.png");
    background-size: 300% auto;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.52) 48%,
      rgba(0, 0, 0, 0.08) 100%
    );
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 125px;
    align-self: flex-start;
  }

  .hero-eyebrow,
  .hero-tagline {
    display: none;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 4.2rem;
    line-height: 0.86;
  }

  .hero-buttons {
    margin-top: 150px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-buttons a {
    width: 165px;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    font-size: 0.65rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 0;

    width: min(300px, calc(100vw - 36px));
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: rgba(8, 15, 12, 0.97);
    border: 1px solid rgba(217, 155, 50, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 17px 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .menu-content {
    grid-template-columns: 1fr;
  }

  .menu-feature {
    min-height: 190px;
    padding-top: 110px;
  }

  .happy-hour {
    padding: 65px 25px;
  }

  .happy-hour-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .features {
    padding: 75px 25px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 420px;
  }

  .about-text {
    padding: 70px 30px;
  }

  .small-ripped-paper {
    display: none;
  }

  .cheers {
    width: 500px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info {
    padding: 60px 30px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 45px 25px 70px;
  }

  .footer-social {
    justify-self: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .rob-did-this {
    right: 50%;
    transform: translateX(50%);
  }

  .no-fuss {
    display: none;
  }
}

@media (max-width: 750px) {
  .menu-page-hero {
    min-height: 360px;
    padding: 130px 24px 50px;
    background-position: 65% center;
  }

  .menu-page-hero-content > p {
    font-size: 2.4rem;
  }

  .full-menu {
    padding: 65px 20px 90px;
  }

  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 18px;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex-shrink: 0;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item {
    gap: 15px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 690px;
    background-position: 66% center;
  }

  .hero h1 {
    font-size: 4.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons a {
    width: 190px;
  }

  .happy-hour-menu {
    grid-template-columns: 1fr;
  }

  .happy-hour-item:nth-child(odd) {
    border-right: 0;
  }
}
