:root{
  --red:#C0392B;
  --amber:#F4B400;
  --cream:#FFF8F0;
  --white:#FFFFFF;
  --dark:#2B2B2B;
  --muted:#6B6B6B;
  --card:#FFFFFF;
  --border:rgba(43,43,43,.12);
  --shadow:0 12px 30px rgba(43,43,43,.10);
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
  background:var(--cream);
  color:var(--dark);
}
/* Accessibility: Skip link */
.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:#fff;
  border:2px solid var(--red);
  border-radius:12px;
  font-weight:900;
  z-index:9999;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 32px)); margin:0 auto}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,248,240,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--red),var(--amber));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
}
/* Header logo inside brand-mark */
.brand-logo{
  background:transparent;        /* remove gradient */
  padding:0;
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;            /* fit inside square */
  display:block;
}

.brand-text strong{font-size:16px}
.brand-text span{font-size:12px;color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav a{
  padding:9px 12px;
  border-radius:12px;
  font-weight:700;
}

.nav a:hover,
.nav a.active{
  background:rgba(244,180,0,.18);
}

.mobile-toggle{
  display:none;
  border:1px solid var(--border);
  border-radius:12px;
  width:44px;
  height:44px;
  padding:0;
  background:#fff;
  color:var(--dark);
  font-weight:900;
}

.hamburger-icon{
  display:block;
  position:relative;
  width:24px;
  height:18px;
  flex:0 0 24px;
}

.hamburger-icon span{
  position:absolute;
  left:0;
  display:block;
  height:3px;
  width:24px;
  border-radius:999px;
  background:currentColor;
}

.hamburger-icon span:nth-child(1){top:0;}
.hamburger-icon span:nth-child(2){top:7.5px;}
.hamburger-icon span:nth-child(3){bottom:0;}

/* Mobile nav hidden by default */
.mobile-nav{display:none}

@media (max-width:860px){
  .nav{display:none}
  .mobile-toggle{display:inline-flex}

  .mobile-nav{
    display:none;
    padding:10px 0 16px;
  }
  .mobile-nav.open{display:block}
  .mobile-nav a{
    display:block;
    padding:12px;
    border-radius:12px;
    font-weight:900;
  }
  .mobile-nav a:hover{background:rgba(244,180,0,.18)}
}



/* Mobile nav reliability + touch polish */
@media (max-width:860px){
  .site-header{position:sticky; top:0; z-index:1000;}
  .mobile-toggle{cursor:pointer; align-items:center; justify-content:center;}
  .mobile-nav.open{display:grid; gap:6px;}
  .mobile-nav .btn{justify-content:center;}
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.btn-primary{
  background:var(--red);
  color:#fff;
  border-color:transparent;
}

.btn-ghost{
  background:rgba(255,255,255,.7);
}

/* small button variant (used in footer) */
.btn-small{
  padding:8px 12px;
  font-size:13px;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

.btn-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

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

.hero{
  position:relative;
  min-height:400px;
  height:400px;
  max-height:4000px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(244,180,0,.18),var(--cream));
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  transition:opacity .35s ease;
}

.hero-bg.is-fading{opacity:0}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,248,240,.95),
    rgba(255,248,240,.6),
    rgba(255,248,240,.15)
  );
  z-index:0;
}

.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr; /* single hero card */
  gap:24px;
  align-items:stretch;
  padding:34px 0;
}

.hero-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* Hero card with embedded logo (DESKTOP: side-by-side) */
.hero-card-with-logo{
  display:grid;
  grid-template-columns: 1fr 180px; /* text | logo */
  gap:18px;
  align-items:start;
}

.hero-card-text{
  display:flex;
  flex-direction:column;
}

.hero-card-logo{
  display:flex;
  align-items:flex-start;     /* top */
  justify-content:flex-end;   /* right */
}

.hero-card-logo img{
  max-height:180px;   /* was 150 */
  max-width:210px;    /* was 180 */
  width:100%;
  height:auto;
  object-fit:contain;
}

/* (This block is fine to keep even if unused) */
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== HERO SEARCH (FIXED / WIDER) =====
   Works inside .btn-row: makes the form take space,
   and the input expands to fill it.
*/
.hero-search{
  position:relative;
  margin:0;
  flex: 1 1 440px;        /* "start around 440px" and flex */
  max-width: 560px;       /* cap so it doesn’t dominate */
  min-width: 280px;       /* prevents tiny squish on mid widths */
}

.hero-search input{
  height:44px;
  padding:0 14px;
  width:100%;             /* IMPORTANT: fill the form */
  min-width:0;            /* IMPORTANT: allow flexbox to size properly */
  border-radius:10px;
  border:1px solid rgba(0,0,0,.15);
  font-size:15px;
  background:#fff;
}

.hero-search input:focus{
  outline:none;
  border-color:var(--red);
  box-shadow:0 0 0 2px rgba(192,57,43,.15);
}

/* Mobile: search becomes full width under buttons */
@media (max-width: 640px){
  .hero-search{
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }
}

.hero h1{font-size:42px;margin:0 0 10px}
.hero p{margin:0 0 18px;color:rgba(43,43,43,.78)}

/* === HERO PROMO GRID (Deal / Coupon / Restaurant) === */
.hero-promo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  align-items:stretch;
}

.hero-promo-grid .promo-card{
  /* keep them visually lighter than regular cards */
  background:rgba(255,255,255,.86);
  border:1px solid rgba(43,43,43,.10);
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.hero-promo-grid .promo-body{
  padding:12px;                 /* tighter inside hero */
  display:flex;
  flex-direction:column;
  height:100%;                  /* equal heights */
  min-height:120px;             /* baseline */
}

.hero-promo-grid .promo-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.hero-promo-grid .promo-title{
  margin:0;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:950;
  color:rgba(43,43,43,.68);
}

.hero-promo-grid .promo-main{
  flex:1;                       /* pushes footer down */
  min-height:0;
}

.hero-promo-grid .promo-line{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.hero-promo-grid .promo-footer{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.hero-promo-grid .promo-footer .btn-small,
.hero-promo-grid .promo-footer .btn{
  padding:7px 11px;
  font-size:12.5px;
  box-shadow:0 6px 14px rgba(0,0,0,.07);
}

/* Make "Copy" look like an action, not a big link */
.hero-promo-grid a.link.small{
  font-weight:950;
  text-decoration:underline;
  text-decoration-color:rgba(192,57,43,.22);
  text-underline-offset:3px;
}
.hero-promo-grid a.link.small:hover{
  text-decoration-color:rgba(192,57,43,.7);
}

/* Responsive: 3 -> 2 -> 1 columns */
@media (max-width: 980px){
  .hero-promo-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .hero-promo-grid{ grid-template-columns:1fr; }
}

/* HERO mobile behavior (logo stacks under text ONLY on mobile) */
@media (max-width:860px){
  .hero h1{font-size:34px}

  .hero-card-with-logo{
    grid-template-columns:1fr;
    text-align:left;
  }

  .hero-card-logo{
    margin-top:12px;
    justify-content:flex-start;
  }

  .hero-card-logo img{
    max-height:120px;
    max-width:220px;
    width:auto;
  }
}

/* ================= SECTIONS ================= */

.section{padding:28px 0}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:14px;
}

.section-head h2{margin:0;font-size:22px}
.section-head .link{font-weight:900}

.grid{display:grid;gap:14px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}

@media (max-width:980px){.grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.grid{grid-template-columns:1fr}}

/* ================= CARDS ================= */

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.card-body{padding:14px}

.card-img{
  position:relative;                /* FIX: anchor badges */
  aspect-ratio:1/1;
  overflow:hidden;
  background:#f6f1ea;
}

.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* BADGES – now correctly attached to card image */
.badges{
  position:absolute;
  left:10px;
  bottom:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  z-index:2;
}

.badge{
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  background:rgba(244,180,0,.25);
  border:1px solid var(--border);
  backdrop-filter:blur(6px);
}

.badge-amber{background:rgba(244,180,0,.35)}
.badge-red{background:rgba(192,57,43,.25); color:#222}
.badge-dark{background:rgba(43,43,43,.18)}

/* Outline badge (used for coupon code pill) */
.badge-outline{
  background:rgba(255,255,255,.65);
  border:1px solid rgba(43,43,43,.18);
}

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

.menu-search{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.menu-search input{
  flex:1;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:800;
}

.cat-tabs{
  display:flex;
  gap:8px;
  margin-top:12px;
  overflow:auto;
}

.cat-tabs .tab{
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  background:rgba(255,255,255,.7);
}

.cat-tabs .tab.active{
  background:var(--amber);
}

/* Menu category tabs: keep labels readable on phones */
.cat-tabs .tab{
  white-space:nowrap;
  flex:0 0 auto;
}
@media (max-width:620px){
  .cat-tabs{
    padding-bottom:6px;
    -webkit-overflow-scrolling:touch;
  }
  .cat-tabs .tab{
    font-size:13px;
    padding:9px 11px;
  }
}


.menu-list{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

@media (max-width:860px){
  .menu-list{grid-template-columns:1fr}
}

.menu-item{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
}

.menu-item .thumb{
  width:72px;
  height:72px;
  border-radius:14px;
  overflow:hidden;
}

.menu-item .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.menu-item-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

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

/* Upgraded footer: clean grid + map + today highlight */
.site-footer{
  padding:30px 0 38px;
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.55);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.25fr 1fr .9fr 1.15fr; /* brand, hours, links, map */
  gap:22px;
  align-items:start;
}

.footer-col{min-width:0}

.site-footer h4{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:950;
  color:rgba(43,43,43,.70);
}

/* Brand spacing */
.site-footer .brand{ gap:10px; }
.site-footer .brand-mark{ width:42px; height:42px; border-radius:14px; }

/* Footer links */
.footer-links{
  display:grid;
  gap:10px;
}
.site-footer a.link{
  text-decoration: underline;
  text-decoration-color: rgba(192,57,43,.25);
  text-underline-offset: 3px;
  font-weight:800;
}
.site-footer a.link:hover{
  text-decoration-color: rgba(192,57,43,.75);
}
.footer-socials{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.footer-socials a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.7);
  border:1px solid var(--border);
  transition:all .2s ease;
}

.footer-socials a:hover{
  background:rgba(244,180,0,.25);
  transform:translateY(-2px);
}

.footer-socials svg{
  width:18px;
  height:18px;
  fill:#2b2b2b;
}
/* Footer social icons */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3f3;
  transition: transform .2s ease, background .2s ease;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: #555;
  transition: fill .2s ease;
}

/* Facebook */
.footer-socials a[aria-label="Facebook"]:hover {
  background: #1877f2;
}
.footer-socials a[aria-label="Facebook"]:hover svg {
  fill: #fff;
}

/* Instagram */
.footer-socials a[aria-label="Instagram"]:hover {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
}
.footer-socials a[aria-label="Instagram"]:hover svg {
  fill: #fff;
}

/* Subtle lift */
.footer-socials a:hover {
  transform: translateY(-2px);
}



/* Hours list */
.footer-hours{
  margin-top:6px;
  display:grid;
  gap:8px;
}

.footer-hours .hours-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:6px 0;
  border-bottom:1px dashed rgba(43,43,43,.16);
  font-size:13px;
  font-weight:850;
}

.footer-hours .hours-row:last-child{ border-bottom:0; }

.footer-hours .hours-row span:first-child{
  min-width:90px;
  color:rgba(43,43,43,.65);
  font-weight:950;
}

.footer-hours .hours-row span:last-child{
  text-align:right;
  white-space:nowrap;
}

/* Highlight today's hours */
.footer-hours .hours-row.is-today{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(244,180,0,.30);
  background:rgba(244,180,0,.14);
}

/* Footer mini map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(43,43,43,.12);
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}
.footer-map iframe{
  width:100%;
  height:150px;
  border:0;
  display:block;
}

/* Bottom row */
.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(43,43,43,.10);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-weight:850;
}

/* Responsive: stack cleanly */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap:16px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ================= TOAST ================= */

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  background:#2b2b2b;
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  opacity:0;
  pointer-events:none;
  transition:.2s;
  z-index:9999;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(-4px);
}

/* ================================
   BLOG / CMS CONTENT STYLING
   ================================ */

.prose {
  line-height: 1.7;
  font-size: 16px;
  color: #1f2937;
}

/* Headings */
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  margin: 1.4em 0 0.6em;
  font-weight: 800;
  line-height: 1.25;
}

.prose h2 { font-size: 1.6rem; }
.prose h3 { font-size: 1.25rem; }

/* Paragraphs */
.prose p { margin: 0.75em 0; }

/* Lists */
.prose ul,
.prose ol {
  margin: 0.75em 0 0.75em 1.25em;
  padding-left: 1em;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 0.4em 0; }

/* Links */
.prose a {
  color: #c2410c; /* burnt orange */
  text-decoration: underline;
  font-weight: 600;
}
.prose a:hover { color: #9a3412; }

/* Strong / emphasis */
.prose strong { font-weight: 800; }
.prose em { font-style: italic; }

/* Images if you add later */
.prose img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1em 0;
}
/* Force the 3 hero promo cards into one row (deal + coupon + restaurant) */
.hero .grid.grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}

/* ================= HELPERS ================= */

.muted{color:rgba(43,43,43,.72)}
.small{font-size:12px;color:var(--muted);font-weight:700}
.hidden{display:none}
