/* ================================
   GLOBAL BASE
================================== */

:root {
  --bg: #fcf8f4;
  --bg-soft: #fff7ee;
  --bg-softer: #fffaf4;
  --text-main: #2b1a14;
  --text-muted: #7a5f52;
  --accent: #b32024;
  --accent-soft: rgba(179, 32, 36, 0.12);
  --border-soft: #efe0d4;
  --shadow-soft: 0 10px 25px rgba(15, 8, 3, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--text-main);
}

p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Layout helpers */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
  background: var(--bg);
}

.section-alt {
  padding: 3.5rem 0;
  background: var(--bg-soft);
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  padding: 2.7rem 0 1.8rem;
  background: var(--bg-soft);
}

.page-hero .container {
  max-width: 820px;
}

.centered {
  text-align: center;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(179, 32, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(179, 32, 36, 0.34);
  text-decoration: none;
}

.btn-outline {
  background: #ffffff;
  color: var(--accent);
  border-color: rgba(179, 32, 36, 0.22);
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

/* =================================
   GIFT BANNER
=================================== */

.gift-banner {
  background: #fff5e8;
  color: var(--text-main);
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: 1px solid #f5e0c8;
}

.gift-banner a {
  font-weight: 600;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-softer);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.main-nav .active {
  color: var(--accent);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(179, 32, 36, 0.18);
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.04);
}

/* Mobile menu button */

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
  border: none;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #3d261a;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* hamburger active */

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */

.mobile-nav {
  display: none;
}

/* =================================
   HERO TOP CAROUSEL
=================================== */

.hero-carousel {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #000;
}

.hero-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-carousel-slide.active {
  opacity: 1;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.hero-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-carousel-dots .dot.active {
  background: #ffffff;
}

/* =================================
   MAIN HERO SECTION
=================================== */

.hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 520px;
  margin-left: 8%;
  padding: 2rem 2.2rem;
  border-radius: 28px;
  background: rgba(5, 3, 1, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.44);
  color: #ffffff;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #f5efe7;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.hero .tagline {
  font-size: 1rem;
  color: #f7f1e7;
  margin-bottom: 1.1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.hero-hours {
  font-size: 0.9rem;
  color: #f3e6d2;
}

/* =================================
   POPULAR PICKS CAROUSEL
=================================== */

.popular-carousel {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.popular-carousel::-webkit-scrollbar {
  height: 6px;
}

.popular-carousel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 999px;
}

.popular-track {
  display: flex;
  gap: 1rem;
}

.popular-card {
  flex: 0 0 210px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.popular-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.popular-card h3 {
  margin: 0.7rem 0.9rem 0.2rem;
}

.popular-card p {
  margin: 0 0.9rem 0.9rem;
  font-size: 0.9rem;
}

/* =================================
   SMALL TESTIMONIAL CARDS
=================================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1e2d4;
}

.testimonial h4 {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* =================================
   MENU HIGHLIGHTS
=================================== */

.menu-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.menu-highlight-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0e2d6;
  display: flex;
  flex-direction: column;
}

.menu-highlight-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.menu-highlight-card-inner {
  padding: 0.9rem 1.1rem 1.1rem;
}

.link-inline {
  font-size: 0.9rem;
  font-weight: 600;
}

/* =================================
   BIG TESTIMONIAL CAROUSEL
=================================== */

.testimonial-carousel {
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0e0d1;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
}

.testimonial-slide .testimonial {
  box-shadow: none;
  border-radius: 14px;
  border: none;
  padding: 0;
}

.stars {
  color: #f6b300;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.testimonial-name {
  margin-top: 0.5rem;
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0 1rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0cfc0;
  border: none;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--accent);
}

/* =================================
   ORDER / LOCATION GRID
=================================== */

.info-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.8rem;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

/* =================================
   MENU PAGE LAYOUT
=================================== */

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

.menu-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1e2d4;
}

.menu-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0.6rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 0.18rem 0;
}

.protein-tags {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.small-note,
.note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =================================
   DEALS
=================================== */

.deal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}

.deal-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.deal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.deal-content {
  padding: 1.4rem 1.4rem 1.2rem;
}

/* =================================
   GALLERY
=================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Fullscreen modal */

.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-modal.open {
  display: flex;
}

.img-modal img {
  max-width: 92%;
  max-height: 92vh;
  border-radius: 10px;
}

.img-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
}

/* =================================
   ABOUT PAGE
=================================== */

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* =================================
   ORDER PAGE
=================================== */

.order-info {
  max-width: 640px;
}

/* =================================
   CATERING & CONTACT
=================================== */

.narrow {
  max-width: 640px;
  margin: 0 auto;
}

.catering-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

/* Forms */

form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e3d3c4;
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(179, 32, 36, 0.1);
}

/* =================================
   GIFTCARDS
=================================== */

.giftcard-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.giftcard-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* =================================
   LOYALTY
=================================== */

.loyalty-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

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

.site-footer {
  background: #1e1410;
  color: #f5eee7;
  margin-top: 3rem;
  padding: 2.4rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.site-footer a {
  color: #ffe0c0;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  text-align: center;
  color: #c1b1a3;
}

/* =================================
   RESPONSIVE
=================================== */

@media (max-width: 960px) {
  .menu-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .giftcard-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .catering-options,
  .loyalty-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: 66px;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem 1.4rem 1.2rem;
    gap: 0.9rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    font-size: 1rem;
  }

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

  .menu-btn {
    display: inline-flex;
  }

  .hero-carousel {
    height: 200px;
  }

  .hero-content {
    margin: 0 1.25rem 2rem;
    padding: 1.4rem 1.3rem;
    background: rgba(5, 3, 1, 0.86);
  }

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

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

  .testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-highlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .deal-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 180px;
  }

  .hero-content {
    margin-inline: 1rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* TACO TUESDAY HERO BANNER */
.taco-banner {
    position: relative;
    height: 360px;
    background: url("../images/taco-3.jpg") center/cover no-repeat;
    border-radius: 18px;
    margin: 120px auto 40px;
    max-width: 1200px;
    overflow: hidden;
}

.taco-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.taco-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.taco-banner-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.taco-banner-content p {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.btn-banner {
    display: inline-block;
    background: #b70000;
    padding: 14px 32px;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.2s;
}

.btn-banner:hover {
    background: #8a0000;
}

/* MOBILE BANNER */
@media (max-width: 768px) {
    .taco-banner {
        height: 260px;
        border-radius: 12px;
        margin-top: 100px;
    }

    .taco-banner-content h1 {
        font-size: 2rem;
    }

    .taco-banner-content p {
        font-size: 1rem;
    }
}
/* DEAL CARD SUBTEXT */
.deal-subtext {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: -8px;
    margin-bottom: 16px;
}

/* Deal Card Improvements */
.deal-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-bottom: 28px;
    align-items: center;
}

.deal-card img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
}

.deal-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a2b21;
    margin-bottom: 6px;
}

.btn-red {
    display: inline-block;
    background: #b70000;
    padding: 10px 22px;
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-red:hover {
    background: #8a0000;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .deal-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .deal-card img {
        width: 100%;
        height: 180px;
    }

    .deal-card h2 {
        font-size: 1.3rem;
    }
}
.giftcard-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.giftcard-img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
