  /* =========================
   PALETTE / VARIABLES
   ========================= */
:root {
    --bg-dark: #1f1a17;
    --bg-overlay: rgba(28, 20, 16, 0.68);
    --surface: rgba(255, 248, 240, 0.92);
    --surface-strong: #fffaf4;
    --text-light: #fff8f0;
    --text-dark: #2f241d;
    --text-muted: #6e5b4f;
    --accent: #CE1126;
    --accent-dark: #a30d1e;

    /* FOR THE BUTTONS */
    /* PREVIOUS COLOR: #c0392b */
    --accent-2: #166534; 
    --accent-3: #22c55e;

    --border: rgba(255, 255, 255, 0.16);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    --radius: 18px;
    --radius-sm: 12px;
    --max-width: 1200px;
}

/* =========================
   RESPONSIVE MEDIA QUERIES (top-level shortcuts)
   * These were grouped near the top in your original; kept intact.
   ========================= */
@media (max-width: 900px) {
    .navigation {
        justify-content: center;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .gallery-slider {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 1rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-links {
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.55rem 0.8rem;
        font-size: 0.95rem;
    }

    .hero-section {
        padding-top: 9rem;
    }

    .card.info-card {
        padding: 1.5rem;
    }

    .hero-title {
        letter-spacing: 0.03em;
    }

    .gallery-slide img {
        height: 300px;
    }

    .gallery-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .left-arrow {
        left: 0.6rem;
    }

    .right-arrow {
        right: 0.6rem;
    }
}

@media (min-width: 768px) {
    .logo {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 720px) {
      .location {
      padding: 3rem 1.25rem;
    }
  .location-row {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    column-gap: 0;
    align-items: start;
  }
    .location-left,
    .location-right {
        flex: 1 1 auto;
        min-width: 100%;
    }

    .location-title {
        font-size: clamp(2.4rem, 9vw, 4.4rem);
        margin-bottom: 0.75rem;
    }


  .location-summary {
    margin-bottom: 0.5rem;
  }

  .location-right {
    gap: 1rem;                 
  }
}

@media (max-width: 480px) {
  .back-to-top { width: 64px; height: 64px; font-size: 0.85rem; }
  .back-to-top::before {
    top: 12%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 9px solid var(--bg-dark);
  }
  .back-to-top .back-label { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top { transition: none; }
    .back-to-top:hover { transform: none; box-shadow: 0 10px 30px rgba(0,0,0,0.28); }
    .marquee-content {
        animation: none;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-social a {
        display: inline-block;
        margin-top: 0.25rem;
    }
    
    .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-bottom: 1rem;
  }
  .back-to-top { margin-left: 0; }
}

/* =========================
   GLOBAL RESET & BASE
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =========================
   HEADER / NAVIGATION
   ========================= */
.site-header {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
}

.navigation {
    width: min(100%, 1320px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 0.5rem 1.75rem;
    background: rgba(31, 26, 23, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.nav-logo {
    font-size: 2.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-light);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.nav-cta {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 10px 24px rgba(192, 57, 43, 0.35);
}

.nav-cta:hover {
    background-color: var(--accent-dark);
}

/* =========================
   HAMBURGER / MOBILE NAV
   (kept here so header/nav are grouped)
   ========================= */
/* Base hamburger button */
.menu-toggle {
  display: none;                  /* shown at smaller widths */
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;        /* no pill */
  border: none;                   /* no border */
  cursor: pointer;
  padding: 0;                     /* let nav padding handle spacing */
  flex-shrink: 0;
}

/* The three lines */
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-light);  /* white lines on dark nav */
  border-radius: 2px;
}

@media (max-width: 1150px) {
 .menu-toggle {
    display: flex;
    /* keep background, border-radius, etc. from base */
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(31, 26, 23, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    padding: 0.75rem 1rem 1rem;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.7rem 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }
}

/* =========================
   HERO / HERO SECTION
   ========================= */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(var(--bg-overlay), var(--bg-overlay)),
        url("images/dishes.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 3rem;
}

.hero-overlay {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.hero-content {
    max-width: 760px;
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: #f6e7d9;
    max-width: 620px;
    margin: 0 auto;
}

/* =========================
   CARDS (Hero cards)
   ========================= */
.hero-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.card.info-card {
    background: var(--surface);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.card-title {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.card-text {
    font-size: large;
    color: var(--text-muted);
    margin-bottom: 1.35rem;
}

.card-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent);
    color: white;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    transition: background-color 0.25s ease, transform 0.25s ease;
    font-size: larger;
}

.card-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* =========================
   GALLERY / SLIDER
   ========================= */
.gallery-section {
    padding: 5rem 2rem;
    background: #fff7f1;
}

.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-text {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
}

.gallery-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    color: #2f241d;
}

.gallery-description {
    font-size: 1.1rem;
    color: #6e5b4f;
    margin: 0 auto;
    max-width: 600px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-track {
  width: 100%;
  display: flex;
  overflow-x: auto;          /* must NOT be hidden */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  border-radius: 18px;
  scrollbar-width: none;     /* Firefox */
}

.gallery-track::-webkit-scrollbar {
  display: none;             /* Chrome/Safari/Edge */
}

.gallery-slide {
  min-width: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.gallery-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-arrow:hover {
    background: var(--accent-dark);
    transform: translateY(-50%) scale(1.06);
}

.left-arrow {
    left: 1rem;
}

.right-arrow {
    right: 1rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: var(--accent-dark);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.gallery-dot.active {
    background: var(--accent);
    transform: scale(1.15);
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes titlePopIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ANIMATION ACTION (Title Pop In) */
.hero-title,
.hero-subtitle,
.hero-cards .card.info-card,
.menu-title h1,
.home-hero,
.faq-hero-inner,
.hours-title,
.hours-subtitle,
.contact-title,
.contact-subtitle{
    animation: titlePopIn 0.75s ease-out forwards;
}

/* =========================
   SCROLL EFFECTS
   ========================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.85) rotate(-2deg);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s cubic-bezier(0.22, 1.25, 0.32, 1.0);
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}

/* =========================
   LOCATION SECTION
   ========================= */
.location {
    padding: 5rem 2rem;
    background: #1f1a17;
    color: #fff8f0;
}

.location-row {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.location-left {
    flex: 1 1 360px;
    min-width: 280px;
}

.location-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #f4e8db;
}

.location-summary {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f6e7d9;
    max-width: 520px;
}

/* RIGHT SIDE: address + hours + button */
.location-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.location-address h3,
.location-hours h3 {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-3);
    margin-bottom: 0.6rem;
}

.location-address p,
.location-hours p {
    color: #f6e7d9;
    line-height: 1.5;
}

.location-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff8f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, background 0.2s ease;
}

.location-link:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* =========================
   MARQUEE SECTION
   ========================= */
.marquee-section {
    padding: 4rem 0;
    overflow: hidden;
    background-color: var(--accent);
}

.marquee {
    display: flex;
    gap: 2rem;
    background-color: var(--accent-2);
    padding: 4rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee-scroll 13s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-size: 3rem;
    font-weight: 1000;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 2.5rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-tagline {
    color: #f6e7d9;
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer-address,
.footer-hours {
    color: #f6e7d9;
    font-size: 1.2rem;
    line-height: 1.5;
}

.footer-phone,
.footer-social a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.footer-phone:hover,
.footer-social a:hover {
    text-decoration: underline;
}

.footer-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-3);
    margin-bottom: 0.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links a {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px; 
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;        /* direction of underline */
    transition: transform 0.3s ease;
}

.footer-links a:hover{
    font-weight: bold;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #bbb;

  display: flex;
  flex-direction: column;   
  align-items: center;     
  gap: 0.75rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;               /* scale circle */
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.06em;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
  font-size: 0.95rem;
  margin-top: 3rem;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid var(--text-light); 
}

.back-to-top .back-label {
  display: block;
  margin-top: 14px;
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.34);
  outline: none;
}
.back-to-top:focus {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06), 0 16px 36px rgba(0,0,0,0.34);
}

.footer-bottom p { margin: 0; font-size: 0.95rem; color: #bbb; }

/* =========================
   MENU / MENU TITLE
   ========================= */
.menu-title {
  text-align: left;
  margin: 0;
  padding: 7rem 0rem 0rem 7rem;
  border-bottom: 15px solid var(--bg-dark);
  background-color: var(--accent);
  color: var(--text-light);
}

.menu-title h1 {
  font-size: 5.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

/* =========================
   MENU LAYOUT: SIDEBAR + CONTENT
   ========================= */
.menu-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 3rem 3rem;   /* big desktop padding */
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-left: 3rem;           /* desktop offset to the right */
}


/* ===== Sidebar filter card ===== */
.category-card {
  background: #f3e7d8;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 2rem;

  /* shift it a bit to the right */
  margin-left: 1.5rem;
}

.filter-label {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #555;
}

.category-card h2 {
  margin: 0 0 1.25rem;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

/* Category buttons in sidebar */
.category-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  margin: 0.35rem 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #444;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.category-btn:hover {
  background: #e5d2be;
}

.category-btn.active {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

/* =========================
   MENU CONTENT / RIGHT-SIDE SECTIONS
   ========================= */

.menu-category-section {
  scroll-margin-top: 4rem;
  margin-bottom: 4rem;
}

.menu-category-title {
  margin: 0 0 0.3rem;
  font-size: 3.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 1000;
}

.menu-category-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: -0.5rem 0 2rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

/* Optional subheading (e.g., "Tacos") inside Main */
.menu-category-section h2 {
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

/* =========================
   TEXT-ONLY ITEMS (no image)
   ========================= */
.text-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 4rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.menu-text-item {
    padding: 0;
    background: transparent;
    color: var(--text-dark);
}

.menu-text-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: capitalize;
}

.menu-text-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 40ch;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Image cards */
.image-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-card {
  background: var(--bg-dark);
  border-radius: 22px;
  overflow: hidden;
  color: var(--text-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.menu-card:hover img {
  transform: scale(1.04);
}

.menu-card-body {
  padding: 1rem 1.25rem;
}

.menu-card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.menu-card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #ddd;
}

/* =========================
   RESPONSIVE ADJUSTMENTS (menu + general)
   ========================= */
/* @media (max-width: 1000px) {
  .menu-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 3rem;
  }

    .category-card {
    display: none;
  }

  .text-items,
  .image-items {
    grid-template-columns: 1fr;
  }

  .menu-title h1 {
    font-size: 2.4rem;
  }
} */

/* =========================
   ABOUT / SECTION STYLES
   ========================= */
.about section {
  padding: 5rem 2rem;
  /* max-width: var(--max-width);
  margin: 0 auto; */
}

.about > section:first-child {
    margin-top: 6rem;
}

/* ---------- HOME HERO (grid variant) ---------- */
.home-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 6rem !important;
    padding-bottom: 5rem !important;
    max-width: var(--max-width);
    margin: 0 auto;
}

.home-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.home-hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

/* Buttons (if you don't already have .btn styles) */
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(206, 17, 38, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background-color: #151110;
  transform: translateY(-2px);
}

.home-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f7ede5;
}

/* ---------- FEATURES ---------- */
.home-features {
  width: 100%;
  background: var(--bg-dark);
  padding: 3rem 0;
}

.home-features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem; 
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface-strong);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(206, 17, 38, 0.25);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- HIGHLIGHTS ---------- */
.home-highlights {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  color: var(--text-dark);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.home-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.img-subtitle {
  padding: 0.9rem 1rem 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-light);
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}

/* ---------- ABOUT ---------- */
.home-about {
    max-width: var(--max-width);
    margin: 0 auto;
  padding: 3rem 0;                   
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;                    
  padding: 0 2rem;                   
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.home-about-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f7ede5;
}

.home-about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.home-about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.about-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-size: 0.98rem;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  top: 0.05em;
}

/* ---------- RESPONSIVE (home/features/about adjustments) ---------- */
@media (max-width: 1000px) {
  .home-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-highlights-grid {
    grid-template-columns: 1fr;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-features-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title,
  .home-about-content h2 {
    font-size: 1.6rem;
  }

  .gallery-arrow {
    display: none;
  }
}

/* =========================
   FEATURES SCROLL DELAY (staggered reveal)
   ========================= */
.scroll-reveal.show.delay-1 {
  transition-delay: 0.1s;
}

.scroll-reveal.show.delay-2 {
  transition-delay: 0.25s;
}

.scroll-reveal.show.delay-3 {
  transition-delay: 0.4s;
}

.scroll-reveal.show.delay-4 {
  transition-delay: 0.55s;
}

/* =========================
   FAQ PAGE STYLES
   ========================= */
.faq-hero {
  padding: 8rem 0 3rem;
  background: var(--bg-dark);
  color: var(--text-light);
}

.faq-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.faq-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: #f6e7d9;
}

.faq-content {
  padding: 3rem 0 4rem;
  background: var(--surface-strong);
}

.faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-item h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.faq-item p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* =========================
   HOURS PAGE
   ========================= */
.hours-hero {
  padding: 8rem 0 3rem;
  background: var(--bg-dark);
  color: var(--text-light);
}

.hours-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hours-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hours-subtitle {
  font-size: 1.05rem;
  color: #f6e7d9;
  max-width: 540px;
}

/* CONTENT SECTION */
.hours-content {
  padding: 3rem 0 4rem;
  background: var(--surface-strong);
}

.hours-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.hours-column h2 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

/* Hours list */
.hours-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.98rem;
}

.day-label {
  font-weight: 700;
  color: var(--text-dark);
}

.time-label {
  color: var(--text-muted);
}

/* Notes and location text */
.hours-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.location-main {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.location-address {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.location-extra {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.location-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.location-link:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 800px) {
  .hours-inner {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT PAGE
   ========================= */
.contact-hero {
  padding: 8rem 0 3rem;
  background: var(--bg-dark);
  color: var(--text-light);
}

.contact-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: #f6e7d9;
}

/* FORM + INFO SECTION */
.contact-content {
  padding: 3rem 0 4rem;
  background: var(--surface-strong);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Form card */
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-form-card h2 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.65rem 0.75rem;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fffaf4;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(206, 17, 38, 0.18);
}

.contact-form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Info card */
.contact-info-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  color: var(--text-light);
}

.contact-info-card h2 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.contact-info-block {
  margin-bottom: 1.2rem;
}

.contact-info-block h3 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 0.4rem;
}

.contact-info-block p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 700;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-info-card .location-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-info-card .location-link:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

}

/* =========================
   SMALL-SCREEN / ADDITIONAL HAMBURGER RULE (duplicate match kept)
   ========================= */
@media (max-width: 500px) {

  .menu-toggle {
    padding: 8px;
  }

  .site-header {
    padding: 0.75rem 0.75rem;
  }

  .navigation {
    padding: 0.65rem 0.9rem;
    border-radius: 18px;
  }

  .nav-logo {
    font-size: 2rem;
    gap: 0.55rem;
  }

  .logo {
    width: 60px !important;
    height: 60px !important;
  }

  .menu-toggle {
    padding: 8px;
  }
}

@media (min-width: 1024px) {
  .hero-cards {
    flex-direction: row;
  }

  .card.info-card {
    flex: 1 1 0;
  }
}

/* Base (desktop/tablet) stays as you have it */

/* ===== Phone tweaks (<= 640px) ===== */
@media (max-width: 1000px) {
  /* Make the whole menu a centered single column */
  .menu-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem 3rem;  /* smaller, symmetric padding */
  }

  .category-card {
    margin-left: 0;
    margin-right: 0;
    display: none;
  }

  .menu-content {
    margin-left: 0;             /* remove desktop offset */
  }

  /* Category sections & items (from before) */
  .menu-category-section {
    margin-bottom: 2.5rem;
  }

  .menu-category-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .menu-category-description {
    font-size: 1rem;
    margin: 0.75rem auto 1.25rem;
    max-width: 32rem;
    text-align: center;
  }

  .text-items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .menu-text-item p {
    max-width: none;
  }

  .image-items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
    .menu-title {
    padding: 6rem 1.5rem 0 1.5rem;  /* less left indent, more even */
    text-align: center;
  }

  .menu-title h1 {
    font-size: 2.8rem;              /* smaller but still bold */
    letter-spacing: 0.04em;
  }
}

@media (max-width: 400px) {
  .site-header {
    padding: 0.6rem 0.6rem;
  }

  .navigation {
    padding: 0.5rem 0.8rem;
    border-radius: 16px;
  }

  .nav-logo {
    font-size: 1.6rem;        /* shrink "TACO TOM'S" text */
    gap: 0.4rem;
  }

  .logo {
    width: 44px;
    height: 44px;             /* smaller logo image */
  }

  .menu-toggle {
    /* keep simple three-line look, just a bit smaller */
    gap: 3px;
  }

  .hamburger-line {
    width: 16px;
    height: 2px;
  }
}

.error,
.success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}


.error {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: #ff9b9b;
}


.success {
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.6);
  color: var(--accent-2);
}