/*******************************************
  Matty G's Steakburgers – Prototype v7
  ----------------------------------------------------------------
  All original inline styles extracted & grouped for clarity.
  Functionality and specificity are preserved one‑to‑one.
*******************************************/

html {
    scroll-behavior: smooth;
  }
  
  :root {
    --clr-bg: #0d0d0d;
    --clr-surface: #181818;
    --clr-primary: #ec1b2e;
    --clr-primary-dark: #c41527;
    --clr-text: #fff;
    --clr-muted: #9a9a9a;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Poppins", system-ui, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
  }
  
  /* ===============================================================
     NAVBAR
  ================================================================*/
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    transition: transform 0.35s;
  }
  
  .navbar.nav--hidden {
    transform: translateY(-100%);
  }
  
  .nav__wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav__logo img {
    height: 70px;
    width: auto;
  }
  
  .nav__links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  
  .nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.25s;
  }
  
  .nav__link:hover {
    opacity: 1;
  }
  
  /* --------------------------------------------------------------
     Buttons / CTA
  ----------------------------------------------------------------*/
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.33rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.93rem;
    font-weight: 600;
    background: var(--clr-primary);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }
  
  .btn:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
  }
  
  .btn__icon {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .btn:hover .btn__icon {
    transform: translateX(4px);
  }
  
  /* --------------------------------------------------------------
     Burger icon (mobile)
  ----------------------------------------------------------------*/
  .burger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
    background: none;
    display: none;
  }
  
  .burger span,
  .burger::before,
  .burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-text);
    transition: transform 0.35s, top 0.35s, opacity 0.35s;
  }
  
  .burger::before {
    top: 0;
  }
  
  .burger span {
    top: 8px;
  }
  
  .burger::after {
    top: 16px;
  }
  
  .burger.open::before {
    top: 8px;
    transform: rotate(45deg);
  }
  
  .burger.open span {
    opacity: 0;
  }
  
  .burger.open::after {
    top: 8px;
    transform: rotate(-45deg);
  }
  
  /* --------------------------------------------------------------
     Dropdown
  ----------------------------------------------------------------*/
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 0.6rem 0;
    display: flex;
    flex-direction: column;
    min-width: 160px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s;
  }
  
  .dropdown-menu a {
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  /* --------------------------------------------------------------
     Mobile overlay navigation
  ----------------------------------------------------------------*/
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.45s ease;
    z-index: 999;
  }
  
  body.nav-open .mobile-nav {
    transform: translateX(0);
  }
  
  /* ===============================================================
     GENERIC LAYOUT UTILS
  ================================================================*/
  section {
    padding: 3.5rem 1.25rem;
    margin-bottom: 4rem;
  }
  
  .container {
    max-width: 1320px;
    margin: 0 auto;
  }
  
  .card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }
  
  /* ===============================================================
     HERO SECTION
  ================================================================*/
  .hero {
    padding-top: 110px;
  }
  
  .hero-card {
    position: relative;
    overflow: hidden;
  }
  
  .hero-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.2rem;
    backdrop-filter: brightness(0.75);
  }
  
  .hero-card h1 {
    font-size: clamp(1.9rem, 6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    max-width: 15ch;
  }
  /* ===============================================================
   MENU MARQUEE / CAROUSEL – Edge-to-edge + Mobile fade (v3)
================================================================*/

/* Make the carousel area full-bleed even inside .container  */
.marquee {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;        /* edge-to-edge */
  overflow: hidden;
  padding: 2rem 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
/* If your HTML keeps ".card", neutralize it */
.marquee.card {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* track row */
.track {
  display: inline-flex;
  gap: 2rem;
  will-change: transform;
}

/* Desktop marquee (slowed down) */
:root { --marquee-speed: 28s; }     /* increase for slower scroll */
.marquee--running .track {
  animation: marquee var(--marquee-speed) linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--scroll-distance, -50%)); }
}

/* Pause only on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .track { animation-play-state: paused; }
}

/* ===== Cards ===== */
.menu-card {
  flex: 0 0 320px;
  height: 440px;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.menu-card:hover { transform: scale(1.05); }

.img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  display: block;
  overflow: hidden;
}
.img-wrap--empty { background: linear-gradient(135deg, #222, #151515); }
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card__body {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 1.5rem;
  display: flex; flex-direction: column;
  background: rgba(24,24,24,.55);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  color: #fff;
}
.menu-card__body h4 {
  font-size: 1rem; margin-bottom: .25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.menu-card__body p {
  font-size: .8rem; margin-bottom: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.menu-card__body .btn {
  align-self: flex-start; margin-top: .75rem;
  padding: .5rem 1rem; font-size: .85rem;
  background: transparent; border: 1px solid #fff; color: #fff;
  border-radius: var(--radius-md);
  transition: background .25s ease, transform .25s ease;
}
.menu-card__body .btn:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ===== Breakpoints ===== */
@media (max-width: 1024px) {
  .menu-card { flex: 0 0 280px; height: 400px; }
}

/* Mobile = cross-fade slides with arrows */
@media (max-width: 768px) {
  .marquee { padding: 1rem 0 3.5rem; }
  .menu-card:hover { transform: none; }

  /* no marquee on mobile */
  .marquee--running .track { animation: none; }
  .track {
    position: relative;
    min-height: var(--mobile-slide-height, 480px);
    width: 100%;
  }

  .menu-card {
    position: absolute; inset: 0;
    width: 100%; height: var(--mobile-slide-height, 480px);
    opacity: 0; pointer-events: none;
    transition: opacity .6s ease;
  }
  .menu-card.show { opacity: 1; pointer-events: auto; }

  .img-wrap { height: 100%; aspect-ratio: auto; }

  .nav-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px;
    border: 1px solid rgba(255,255,255,.9);
    background: rgba(0,0,0,.35);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; line-height: 1;
    z-index: 1000; opacity: .95;
    backdrop-filter: blur(6px);
  }
  .nav-arrow.left { left: 1rem; }
  .nav-arrow.right { right: 1rem; }
}

@media (min-width: 769px) {
  .nav-arrow { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee--running .track { animation-duration: 60s; }
}

  
  /* ===============================================================
     FEATURE BLOCKS
  ================================================================*/
  .feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 4.5rem;
  }
  
  .feature--reverse .feature__img {
    order: 2;
  }
  
  /* ===============================================================
     PHOTO GRID
  ================================================================*/
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
  
  @media (max-width: 900px) {
    .photo-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 580px) {
    .photo-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .photo-grid img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transform: translateY(0) scale(0.97);
    filter: brightness(0.95) saturate(95%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.21, 0.8, 0.37, 1),
      box-shadow 0.45s, filter 0.45s, opacity 0.6s;
  }
  
  .photo-grid img.in-view {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  
  .photo-grid img:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
    filter: brightness(1) saturate(110%);
  }
  
  /* ===============================================================
     CTA SECTION
  ================================================================*/
  .cta {
    position: relative;
    margin-bottom: 4.5rem;
  }
  
  .cta__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(24, 24, 24, 0.55);
    backdrop-filter: blur(8px) saturate(120%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 420px;
  }
  
  /* ===============================================================
     CONTACT / MAP / FORM
  ================================================================*/
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 4.5rem;
  }
  
  .map-wrapper,
  .contact-card {
    height: 100%;
  }
  
  .map-wrapper iframe {
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
  }
  
  .contact-card {
    display: flex;
    flex-direction: column;
  }
  
  .contact-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
  }
  
  .hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }
  
  .hours-grid span {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    background: #222;
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-md);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    background: #222;
    color: #fff;
    font-family: inherit;
    margin-bottom: 0.9rem;
  }
  
  .contact-form textarea {
    min-height: 110px;
    resize: vertical;
  }
  
  /* ===============================================================
     FAQ
  ================================================================*/
  .faq {
    margin-bottom: 4.5rem;
  }
  
  .faq details {
    border-bottom: 1px solid #222;
    padding: 1rem 0;
    overflow: hidden;
  }
  
  .faq summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .faq summary::-webkit-details-marker {
    display: none;
  }
  
  .faq summary::after {
    content: "➜";
    transition: transform 0.35s;
  }
  
  .faq details[open] summary::after {
    transform: rotate(90deg);
  }
  
  .faq-content {
    opacity: 0;
    height: 0;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, height 0.28s ease, transform 0.28s ease;
  }
  
  .faq details[open] .faq-content {
    opacity: 1;
    height: auto;
    padding-top: 0.75rem;
    transform: translateY(0);
  }
  
  .faq p {
    color: var(--clr-muted);
    max-width: 60ch;
    font-size: 0.9rem;
  }
  
  /* ===============================================================
     REVIEWS
  ================================================================*/
  .reviews-wrapper {
    overflow: hidden;
    margin-bottom: 4.5rem;
  }
  
  .reviews-track {
    display: flex;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .reviews-track::-webkit-scrollbar {
    display: none;
  }
  
  .review {
    scroll-snap-align: start;
    flex: 0 0 300px;
    background: var(--clr-surface);
    padding: 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }
  
  .stars {
    color: #ffc60a;
    margin-bottom: 0.4rem;
  }
  
  .review cite {
    display: block;
    margin-top: 0.6rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.83rem;
  }
  
  /* Google rating bar */
  .google-rating {
    --icon-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0 0 1.2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
  }
  
  .google-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    flex-shrink: 0;
  }
  
  .google-rating .score {
    margin-right: 0.1rem;
  }
  
  .google-rating .stars {
    color: #ffc60a;
  }
  
  .google-rating .source {
    font-weight: 500;
    color: var(--clr-muted);
    white-space: nowrap;
  }
  
  @media (max-width: 480px) {
    .google-rating {
      font-size: 0.9rem;
      --icon-size: 18px;
    }
  }
  
  /* ===============================================================
     FOOTER
  ================================================================*/
  footer .footer-card {
    padding: 2.3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) 180px;
    gap: 1.7rem;
    align-items: start;
    border-radius: var(--radius-lg);
    background: var(--clr-surface);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
  }
  
  .footer-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.83rem;
  }
  
  .social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
  }
  
  .social a {
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    padding: 0.65rem 1rem;
    background: #090909;
  }
  
  /* Footer meta row */
  .footer-meta {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .footer-meta a {
    color: var(--clr-muted);
    transition: color 0.25s;
  }
  
  .footer-meta a:hover {
    color: var(--clr-text);
  }
  
  .meta-left {
    justify-self: start;
  }
  
  .meta-center {
    text-align: center;
  }
  
  .meta-right {
    justify-self: end;
    text-align: right;
  }
  
  @media (max-width: 600px) {
    .footer-meta {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .meta-left,
    .meta-right {
      justify-self: center;
      margin-bottom: 0.4rem;
    }
  }
  
  /* ===============================================================
     GLOBAL BREAKPOINTS
  ================================================================*/
  @media (max-width: 768px) {
    .burger {
      display: block;
    }
  
    .nav__links {
      display: none;
    }
  
    .nav__logo img {
      height: 48px;
    }
  
    .btn {
      padding: 0.4rem 0.9rem;
      font-size: 0.8rem;
    }
  
    .hours-grid {
      grid-template-columns: 1fr;
    }
  
    section {
      margin-bottom: 3rem;
    }
  }




  .best-seller {
  background-color: #222; /* light gray for contrast */
  padding: 4rem 2rem;
  border-radius: 16px; /* optional */
}

  