@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --red: #e31f26;
  --red-dark: #b80f16;
  --orange: #ff9d1c;
  --gold: #ffc94a;
  --black: #080808;
  --ink: #171717;
  --cream: #fff7eb;
  --paper: #fffdf9;
  --muted: #6d6d6d;
  --border: rgba(10, 10, 10, .09);
  --shadow: 0 20px 60px rgba(23, 16, 12, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(227,31,38,.10), transparent 30rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
img { max-width: 100%; }
a { text-decoration: none; }

.site-nav {
  background: rgba(7, 7, 7, .96);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.navbar-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.9);
}
.brand-wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: .95;
  letter-spacing: .7px;
  color: #fff;
  font-size: 1.18rem;
}
.brand-wordmark span { color: var(--red); display: block; font-size: .78rem; letter-spacing: 1.8px; margin-top: 5px; }
.navbar .nav-link { color: rgba(255,255,255,.82); font-weight: 700; padding: .8rem 1rem !important; border-radius: 999px; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: #fff; background: rgba(255,255,255,.09); }
.navbar-toggler { border-color: rgba(255,255,255,.35); }

.btn-brand, .btn-brand-outline, .btn-whatsapp, .btn-call {
  border-radius: 999px;
  font-weight: 800;
  padding: .82rem 1.25rem;
  transition: .2s ease;
}
.btn-brand { background: var(--red); color: #fff; border: 1px solid var(--red); box-shadow: 0 12px 28px rgba(227,31,38,.28); }
.btn-brand:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-brand-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.65); }
.btn-brand-outline:hover { background: #fff; color: var(--black); transform: translateY(-2px); }
.btn-whatsapp { background: #18a957; color: #fff; border: 0; }
.btn-whatsapp:hover { background: #118645; color: #fff; transform: translateY(-2px); }
.btn-call { background: var(--black); color: #fff; border: 0; }
.btn-call:hover { background: #2b2b2b; color: #fff; transform: translateY(-2px); }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.91) 42%, rgba(0,0,0,.48) 70%, rgba(0,0,0,.30) 100%),
    url('../images/fried-chicken.jpg') center right / cover no-repeat;
}
.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(255,157,28,.30), transparent 24rem),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.018) 18px 20px);
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -175px;
  left: -5%;
  width: 110%;
  height: 260px;
  background: var(--cream);
  transform: rotate(-3deg);
}
.hero-content { position: relative; z-index: 2; padding: 8rem 0 10rem; }
.eyebrow {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}
.display-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.2rem, 9vw, 8.7rem);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.2rem 0 1.5rem;
}
.display-title .accent { color: var(--red); }
.hero-copy { max-width: 650px; color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.8; }
.hero-badge {
  width: min(335px, 75vw);
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(0,0,0,.42);
  border: 5px solid rgba(255,255,255,.92);
}

.page-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}
.page-hero:before { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.64), rgba(0,0,0,.28)), var(--hero-image) center/cover no-repeat; }
.page-hero:after { content:''; position:absolute; right:-100px; top:-100px; width:360px; height:360px; border-radius:50%; background:rgba(227,31,38,.18); }
.page-hero .container { position: relative; z-index: 2; }
.page-title { font-family:'Anton',sans-serif; font-size:clamp(3.6rem,7vw,6.8rem); line-height:.92; text-transform:uppercase; }
.page-subtitle { max-width:650px; color:rgba(255,255,255,.78); font-size:1.05rem; line-height:1.75; }

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-kicker { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: 1.6px; font-size: .78rem; }
.section-title { font-family:'Anton',sans-serif; font-size:clamp(2.7rem,5vw,4.8rem); text-transform:uppercase; line-height:1; letter-spacing:.4px; }
.section-copy { color: var(--muted); line-height: 1.85; }

.info-strip { margin-top: -4rem; position: relative; z-index: 5; }
.info-card { background:#fff; border:1px solid var(--border); border-radius:24px; padding:1.35rem; height:100%; box-shadow:var(--shadow); }
.info-icon { width:48px; height:48px; display:grid; place-items:center; border-radius:15px; background:rgba(227,31,38,.10); color:var(--red); font-size:1.35rem; }
.info-card strong { display:block; font-weight:800; margin-top:.85rem; }
.info-card span { color:var(--muted); font-size:.92rem; }

.food-card, .deal-card, .contact-card, .value-card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 16px 45px rgba(31,23,18,.085);
  overflow: hidden;
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.food-card:hover, .deal-card:hover, .contact-card:hover, .value-card:hover { transform: translateY(-5px); box-shadow: 0 25px 58px rgba(31,23,18,.14); }
.food-image { width:100%; aspect-ratio: 16/10; object-fit:cover; background:#fff; }
.food-card-body { padding: 1.2rem; }
.food-card h3 { font-size:1.08rem; font-weight:800; margin-bottom:.35rem; }
.food-card p { color:var(--muted); font-size:.88rem; margin:0; }
.price-tag { display:inline-flex; align-items:center; justify-content:center; min-width:78px; padding:.48rem .72rem; border-radius:999px; background:var(--red); color:#fff; font-weight:900; }
.category-pill { display:inline-flex; padding:.38rem .7rem; border-radius:999px; background:rgba(255,157,28,.15); color:#9f5500; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.7px; }

.category-tile { position:relative; border-radius:28px; overflow:hidden; min-height:310px; box-shadow:var(--shadow); color:#fff; }
.category-tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.category-tile:hover img { transform:scale(1.06); }
.category-tile:after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.86)); }
.category-content { position:absolute; inset:auto 1.5rem 1.5rem; z-index:2; }
.category-content h3 { font-family:'Anton',sans-serif; font-size:2rem; text-transform:uppercase; }

.brand-panel { background:linear-gradient(135deg,var(--black),#242424); color:#fff; border-radius:34px; overflow:hidden; box-shadow:var(--shadow); }
.brand-panel img { width:100%; height:100%; min-height:430px; object-fit:cover; }
.brand-panel .content { padding:clamp(2rem,5vw,4.5rem); }

.deal-banner { background:linear-gradient(135deg,var(--red),#9f080e); color:#fff; border-radius:34px; padding:clamp(2rem,5vw,4rem); position:relative; overflow:hidden; box-shadow:0 25px 60px rgba(184,15,22,.25); }
.deal-banner:after { content:''; position:absolute; width:330px; height:330px; border-radius:50%; right:-120px; top:-120px; background:rgba(255,255,255,.08); }
.deal-banner > * { position:relative; z-index:2; }

.delivery-card { background:#080808; border-radius:22px; padding:1.2rem; height:100%; border:1px solid rgba(255,255,255,.08); }
.delivery-card img { width:100%; height:72px; object-fit:contain; border-radius:14px; }
.delivery-card small { color:rgba(255,255,255,.58); }

.menu-toolbar { position:sticky; top:82px; z-index:20; background:rgba(255,247,235,.92); backdrop-filter:blur(14px); border-bottom:1px solid var(--border); }
.filter-btn { border:1px solid var(--border); background:#fff; border-radius:999px; padding:.6rem 1rem; font-weight:800; white-space:nowrap; }
.filter-btn:hover, .filter-btn.active { background:var(--red); border-color:var(--red); color:#fff; }
.search-box { border-radius:999px; border:1px solid var(--border); padding:.75rem 1rem .75rem 2.8rem; background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.398 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.114-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 1rem center; }

.deal-day { font-family:'Oswald',sans-serif; text-transform:uppercase; font-weight:700; color:var(--red); letter-spacing:.5px; }
.deal-price { font-family:'Anton',sans-serif; font-size:2.15rem; color:var(--red); }
.deal-image { width:100%; aspect-ratio:16/9; object-fit:cover; }

.contact-card { padding:1.6rem; }
.contact-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:16px; background:var(--red); color:#fff; font-size:1.35rem; }
.form-control, .form-select { border-radius:15px; border:1px solid var(--border); padding:.85rem 1rem; }
.form-control:focus, .form-select:focus { border-color:rgba(227,31,38,.5); box-shadow:0 0 0 .25rem rgba(227,31,38,.12); }
.map-frame { width:100%; min-height:470px; border:0; border-radius:28px; box-shadow:var(--shadow); }

.value-card { padding:1.6rem; }
.value-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:18px; background:rgba(227,31,38,.10); color:var(--red); font-size:1.5rem; }

.quote-panel { background:#fff; border-left:6px solid var(--red); border-radius:0 25px 25px 0; padding:2rem; box-shadow:var(--shadow); }

.footer { background:#050505; color:rgba(255,255,255,.68); }
.footer-logo { width:92px; height:92px; object-fit:cover; border-radius:50%; border:2px solid rgba(255,255,255,.9); }
.footer h5 { color:#fff; font-weight:800; }
.footer a { color:rgba(255,255,255,.72); }
.footer a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.10); }

.floating-whatsapp { position:fixed; right:20px; bottom:20px; width:58px; height:58px; display:grid; place-items:center; background:#18a957; color:#fff; border-radius:50%; font-size:1.65rem; box-shadow:0 14px 30px rgba(24,169,87,.38); z-index:100; transition:.2s ease; }
.floating-whatsapp:hover { color:#fff; transform:translateY(-3px) scale(1.03); }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 991.98px) {
  .navbar-collapse { padding: 1rem 0; }
  .hero { min-height:auto; background-position:center; }
  .hero-content { padding:7rem 0 9rem; }
  .hero:before { background:linear-gradient(90deg,rgba(0,0,0,.96),rgba(0,0,0,.72)); }
  .hero-badge { margin-top:2rem; }
  .menu-toolbar { top:74px; }
  .section { padding:4.5rem 0; }
}
@media (max-width: 575.98px) {
  .brand-wordmark { font-size:1rem; }
  .navbar-brand img { width:48px; height:48px; }
  .display-title { font-size:3.8rem; }
  .page-title { font-size:3.3rem; }
  .info-strip { margin-top:-2.5rem; }
  .category-tile { min-height:250px; }
  .food-card-body { padding:1rem; }
}
