/* ─── WoodZ Kebab House — Shared Styles ──────────────────────── */
/* Barlow Condensed — hosted locally */
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('fonts/barlow-condensed-700-italic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
/* Open Sans — hosted locally */
@font-face { font-family: 'Open Sans'; src: url('fonts/open-sans-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Open Sans'; src: url('fonts/open-sans-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Open Sans'; src: url('fonts/open-sans-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

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

:root {
  --yellow:      #ffcc19;
  --yellow-dark: #e6b800;
  --red:         #C2292B;
  --red-dark:    #a02020;
  --black:       #000000;
  --black-soft:  #111111;
  --gray-dark:   #1a1a1a;
  --gray-mid:    #333333;
  --gray:        #666666;
  --gray-light:  #f5f5f5;
  --white:       #ffffff;
  --font-h:      'Barlow Condensed', Helvetica, Arial, sans-serif;
  --font-b:      'Open Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); font-size: 14px; line-height: 1.6; color: var(--black); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Utility ─── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.btn { display: inline-block; font-family: var(--font-h); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 14px 36px; border-radius: 9px; border: 3px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-sm { font-size: 15px; padding: 10px 24px; }

.section-tag { display: inline-block; font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.section-title { font-family: var(--font-h); font-weight: 800; text-transform: uppercase; line-height: 1.05; color: var(--black); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { font-size: clamp(36px, 5vw, 58px); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ─── Top Bar ─── */
.top-bar { background: var(--red); color: var(--white); text-align: center; padding: 10px 20px; font-family: var(--font-h); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.top-bar a { color: var(--yellow); text-decoration: underline; margin-left: 8px; }

/* ─── Header ─── */
#header { position: sticky; top: 0; z-index: 1000; background: var(--black); box-shadow: 0 2px 12px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 72px; }
.logo img { height: 48px; width: auto; display: block; }
nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
nav ul li a { font-family: var(--font-h); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); padding: 8px 14px; border-radius: 6px; transition: color .2s, background .2s; }
nav ul li a:hover, nav ul li a.active { color: var(--yellow); background: rgba(255,204,25,.08); }
.nav-order-btn { font-family: var(--font-h); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: var(--yellow); color: var(--black); padding: 10px 22px; border-radius: 9px; transition: background .2s, transform .15s; }
.nav-order-btn:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background-color:black; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; }

/* ─── Page Hero (inner pages) ─── */
.page-hero { position: relative; min-height: 420px; display: flex; align-items: center; background: var(--black); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.2) 100%), var(--bg-img, none) center/cover no-repeat; }
.page-hero-content { position: relative; z-index: 2; padding: 80px 5%; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(52px, 7vw, 90px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: .95; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--yellow); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 540px; margin-top: 12px; }

/* ─── Breadcrumb ─── */
.breadcrumb { background: var(--gray-light); padding: 14px 0; border-bottom: 1px solid #e8e8e8; }
.breadcrumb ul { list-style: none; display: flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.breadcrumb li { color: var(--gray); }
.breadcrumb li a { color: var(--gray); transition: color .2s; }
.breadcrumb li a:hover { color: var(--red); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.breadcrumb li:last-child { color: var(--black); }

/* ─── Promo Marquee ─── */
.promo-banner { background: var(--black); padding: 18px 0; overflow: hidden; }
.promo-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 22s linear infinite; }
.promo-item { display: flex; align-items: center; gap: 16px; font-family: var(--font-h); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); flex-shrink: 0; }
.promo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Quality Strip ─── */
.quality-strip { background: var(--yellow); }
.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quality-item { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(0,0,0,.12); }
.quality-item:last-child { border-right: none; }
.quality-icon { font-size: 32px; margin-bottom: 10px; }
.quality-title { font-family: var(--font-h); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--black); }
.quality-sub { font-size: 13px; color: rgba(0,0,0,.6); margin-top: 4px; }

/* ─── Footer ─── */
footer { background: var(--black-soft); }
.footer-top { background: var(--black-soft); padding: 60px 0; }
.footer-top-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background .2s; }
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-col h4 { font-family: var(--font-h); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { background: var(--black); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--yellow); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--black); padding: 20px; z-index: 999; }
  nav.open ul { flex-direction: column; gap: 4px; }
  nav.open ul li a { display: block; padding: 12px 16px; }
  .hamburger { display: flex; }
  .header-cta .nav-order-btn { display: none; }
  .footer-top-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .quality-grid { grid-template-columns: 1fr 1fr; }
}
