/* ===================== FONTS ===================== */
@font-face { font-family: "Madness"; src: url("../assets/fonts/display-madness.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Freaky";  src: url("../assets/fonts/display-chunky.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Heavy";   src: url("../assets/fonts/heavy.woff2") format("woff2"); font-weight: 900; font-display: swap; }
@font-face { font-family: "Body";    src: url("../assets/fonts/body.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Review";  src: url("../assets/fonts/review.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Review";  src: url("../assets/fonts/review-bold.woff2") format("woff2"); font-weight: 800; font-display: swap; }

/* ===================== VARIABLES & RESET ===================== */
:root {
  --black: #000000;
  --orange: #f69504;
  --red: #e42229;
  --red-deep: #c20a10;
  --cream: #fff9f2;
  --shadow-red: rgba(255, 49, 49, 0.69);
  --maxw: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Body", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
section { position: relative; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: "Heavy", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--order  { background: #fff; color: var(--red); border: 3px solid var(--red); padding: 14px 40px; font-size: 1.25rem; }
.btn--menu   { background: var(--black); color: #fff; border: 2px solid var(--red); padding: 13px 34px; font-size: 1.1rem; }
.btn--review { background: var(--orange); color: #fff; padding: 13px 34px; font-size: 1.1rem; }
.btn--photos { background: var(--red-deep); color: #fff; padding: 13px 36px; font-size: 1.1rem; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
}
.nav__inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: flex-end;
}
.nav__links {
  list-style: none; display: flex; justify-content: flex-end; gap: 38px;
}
.nav__links a {
  font-family: "Body", sans-serif; font-weight: 700;
  color: #fff; font-size: 1.1rem;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a.nav__order {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 8px 20px; margin-top: -8px;
  border: 2px solid var(--red); border-radius: 999px;
  background: #fff; color: var(--red);
  font-family: "Heavy", sans-serif; text-transform: uppercase; font-size: 0.95rem;
}
.nav__links a.nav__order:hover { background: var(--red); color: #fff; }

/* hamburger button — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 7px;
  background: transparent; border: 0; cursor: pointer;
}
.nav__toggle span {
  display: block; height: 3px; width: 100%; border-radius: 2px;
  background: #fff; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== FLOATING ORDER ===================== */
.floating-order {
  position: fixed; right: 24px; bottom: 24px; z-index: 120;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 14px 24px;
  border: 3px solid var(--red); border-radius: 999px;
  background: #fff; color: var(--red);
  font-family: "Heavy", sans-serif; text-transform: uppercase; font-size: 1rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.floating-order:hover {
  transform: translateY(-2px);
  background: var(--red); color: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,0.45);
}
.floating-order__icon {
  width: 24px; height: 24px; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url("../newhero-black.png") center/cover no-repeat;
  text-align: center;
  padding: 120px 20px 60px;
}
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.58); }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero__logo { width: 300px; max-width: 70vw; margin-bottom: 4px; }
.hero__title {
  font-family: "Madness", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  color: #fff;
  text-shadow: 4px 5px 0 var(--shadow-red);
  margin-bottom: 28px;
}
.hero__title .line { display: block; }

/* ===================== INTRO (why) ===================== */
.intro { background: var(--black); padding: 70px 0; }
.intro__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.intro__text { flex: 1; }
.intro__text p {
  margin-top: 22px; max-width: 460px;
  font-size: 1rem; line-height: 1.6; color: #eee;
}
.intro__image { flex: 1; }
.intro__image img { width: 100%; }

.heading-shadow {
  font-family: "Freaky", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.95;
  text-shadow: 4px 5px 0 var(--shadow-red);
}
.intro__text h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.intro__text h2 span { display: block; }

/* ===================== MENU CATEGORIES ===================== */
.menu {
  background: #fff url("../assets/img/menu-bg.jpg") center/cover no-repeat;
}
.menu__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 60px 24px;
  display: flex; gap: 30px; align-items: center;
}
.menu__intro { flex: 0 0 320px; }
.menu__title {
  font-family: "Freaky", sans-serif; font-weight: 400; text-transform: uppercase;
  color: var(--red); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 0.9;
  -webkit-text-stroke: 1.5px #7a1010;
}
.menu__title span { display: block; }
.menu__sub { color: #111; font-weight: 700; margin: 14px 0 10px; max-width: 240px; }
.menu__tagline {
  font-family: "Freaky", sans-serif; text-transform: uppercase;
  color: #111; font-size: 1.5rem; line-height: 1.05; margin-bottom: 22px;
}
.menu__grid {
  flex: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 18px;
}
.cat { text-align: center; color: #111; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.cat img { height: 170px; width: 100%; max-width: 210px; margin: 0 auto 12px; object-fit: contain; }
.cat span {
  display: block; font-family: "Freaky", sans-serif; text-transform: uppercase;
  font-size: clamp(1.45rem, 2.3vw, 2rem); color: #111; line-height: 0.95;
}

/* ===================== FEATURES (why) ===================== */
.features {
  background: url("../assets/img/why-features-bg.jpg") center/cover no-repeat;
  padding: 60px 0 70px;
}
.features__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.30); }
.features__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.features__title {
  text-align: center; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 40px;
}
.features__row { display: flex; gap: 30px; justify-content: center; }
.feature { flex: 1; max-width: 320px; text-align: center; }
.feature__icon { height: 80px; width: auto; margin: 0 auto 16px; }
.feature h3 {
  font-family: "Freaky", sans-serif; font-weight: 400; text-transform: uppercase;
  color: var(--orange); font-size: 1.3rem; margin-bottom: 8px;
}
.feature p { font-size: 0.92rem; line-height: 1.5; color: #f0f0f0; }

/* ===================== HOT & FRESH ===================== */
.hotfresh { background: var(--cream); padding: 60px 0; }
.hotfresh__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 30px;
}
.hotfresh__text { flex: 1; }
.hotfresh__title { text-transform: uppercase; font-family: "Freaky", sans-serif; line-height: 0.9; }
.hotfresh__hot {
  display: block; color: var(--red); font-size: clamp(2.6rem, 6vw, 4.4rem);
  -webkit-text-stroke: 1.5px #7a1010;
}
.hotfresh__grill { display: block; color: #111; font-size: clamp(1.4rem, 3vw, 2.2rem); margin-top: 4px; }
.hotfresh__avail {
  display: inline-block; margin-top: 16px;
  background: var(--orange); color: #111; font-family: "Freaky", sans-serif;
  text-transform: uppercase; font-size: 1.4rem; padding: 4px 14px;
}
.hotfresh__logos { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 22px; }
.hotfresh__logos img { height: 40px; width: auto; max-width: 220px; object-fit: contain; }
.hotfresh__images { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
.hotfresh__splash { position: absolute; width: 80%; opacity: 0.9; z-index: 1; }
.hotfresh__coke { position: relative; z-index: 2; width: 170px; margin-right: -20px; }
.hotfresh__plate { position: relative; z-index: 2; width: 340px; max-width: 60%; }

/* ===================== GALLERY ===================== */
.gallery { background: var(--black); padding-bottom: 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery__grid img { width: 100%; height: 230px; object-fit: cover; }
.gallery .btn--photos { position: relative; display: block; width: max-content; margin: -36px auto 0; z-index: 5; }

/* ===================== FOLLOW US ===================== */
.follow {
  background: var(--red-deep); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 16px; margin-top: 28px;
}
.follow__label { font-family: "Freaky", sans-serif; text-transform: uppercase; font-size: 1.4rem; }
.follow a img { height: 26px; width: auto; }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--black); padding: 60px 0; }
.reviews__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; gap: 40px; }
.reviews__head { flex: 0 0 320px; }
.reviews__title {
  font-family: "Freaky", sans-serif; font-weight: 400; text-transform: uppercase;
  color: var(--orange); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 0.9; margin-bottom: 24px;
}
.reviews__title span { display: block; }
.reviews__list { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 40px; align-content: start; }
.review { }
.review__stars { height: 22px; width: auto; margin-bottom: 10px; }
.review p { font-family: "Review", serif; font-size: 0.92rem; line-height: 1.5; color: #eaeaea; margin-bottom: 10px; }
.review__name { font-family: "Review", serif; font-weight: 800; color: #fff; }

/* ===================== CONTACT ===================== */
.contact {
  background: url("../assets/img/contact-bg.jpg") center/cover no-repeat;
  padding: 60px 0;
}
.contact__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.contact__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; gap: 30px; align-items: flex-start; }
.contact__logo { flex: 0 0 300px; display: flex; justify-content: center; }
.contact__logo img { width: 300px; max-width: 100%; }
.contact__body { flex: 1; }
.contact__title {
  font-family: "Freaky", sans-serif; font-weight: 400; text-transform: uppercase;
  color: var(--orange); font-size: clamp(2rem, 4vw, 3rem); display: flex; align-items: center; gap: 12px;
}
.contact__pin { height: 34px; width: auto; }
.contact__intro { margin: 14px 0; max-width: 560px; font-size: 0.95rem; line-height: 1.55; color: #f0f0f0; }
.contact__email {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
  font-family: "Freaky", sans-serif; text-transform: uppercase; color: #fff;
  font-size: clamp(0.85rem, 4.2vw, 1.4rem); word-break: break-word;
}
.contact__email img { height: 30px; width: auto; flex-shrink: 0; }

.locations {
  display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, auto);
  grid-auto-flow: column; gap: 30px 40px; max-width: 620px;
}
.location { position: relative; padding-top: 18px; }
.location__awning { height: 40px; width: auto; margin-bottom: -6px; }
.location h3 {
  font-family: "Freaky", sans-serif; font-weight: 400; text-transform: uppercase;
  color: var(--orange); font-size: 2rem; line-height: 1;
}
.location__addr, .location__phone {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: "Freaky", sans-serif; text-transform: uppercase;
  color: #fff; font-size: 0.85rem; line-height: 1.2; margin-top: 8px;
}
.location__addr img { height: 22px; width: auto; flex-shrink: 0; }
.location__phone { align-items: center; }
.location__phone img { height: 22px; width: auto; flex-shrink: 0; }

/* ===================== FOOTER ===================== */
.footer { background: var(--black); text-align: center; padding: 18px; }
.footer p { font-size: 0.85rem; color: #ccc; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .intro__inner, .menu__inner, .hotfresh__inner, .reviews__inner, .contact__inner { flex-direction: column; }
  .menu__intro, .reviews__head, .contact__logo { flex: 1 1 auto; width: 100%; }
  .menu__grid { grid-template-columns: repeat(4, 1fr); }
  .features__row { flex-wrap: wrap; }
  .feature { flex: 1 1 240px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__list { grid-template-columns: 1fr; }
  .contact__logo { margin-bottom: 10px; }
}
/* ---- mobile hamburger nav ---- */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__inner { justify-content: flex-end; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 14px rgba(0,0,0,0.5);
  }
  .nav.open .nav__links { max-height: 420px; }
  .nav__links li { border-top: 1px solid rgba(255,255,255,0.08); }
  .nav__links a { display: block; padding: 16px 24px; font-size: 1.05rem; }
  .nav__links a.nav__order {
    display: flex; margin: 12px 24px 16px; min-height: 46px; padding: 12px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .menu__intro { flex: 1 1 auto; text-align: center; }
  .menu__sub, .menu__tagline { max-width: none; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); gap: 46px 18px; }
  .cat { min-height: 245px; }
  .cat img { height: 180px; max-width: 220px; margin-bottom: 14px; }
  .cat span { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .hotfresh__images { min-height: 240px; }
  .gallery__grid img { height: 160px; }
  .locations { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .location h3 { font-size: 1.5rem; }
  .location__addr, .location__phone { font-size: 0.72rem; }
  .floating-order {
    right: 16px; bottom: 16px;
    width: 58px; height: 58px; min-height: 58px; padding: 0;
    border-radius: 50%;
  }
  .floating-order span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .floating-order__icon { width: 28px; height: 28px; }
}
