/* ==========================================================================
   The Don — American Streetfood, mafia-inspired styling
   ========================================================================== */

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

:root {
  --color-bg: #0b0a09;
  --color-surface: #161311;
  --color-surface-alt: #1e1a17;
  --color-border: rgba(245, 239, 230, 0.1);
  --color-text: #f5efe6;
  --color-text-muted: #b6a998;
  --color-brass: #c9a24b;
  --color-brass-light: #e0c07a;
  --color-brass-dark: #8f7230;

  --color-ubereats: #06c167;
  --color-thuisbezorgd: #ff8000;
  --color-whatsapp: #25d366;

  --font-display: 'Medula One', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--color-text-muted);
  max-width: 620px;
  font-size: 1.05rem;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--color-brass);
  margin: 20px 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Buttons — order / contact CTAs
   ========================================================================== */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--color-brass);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--ubereats { border-left: 3px solid var(--color-ubereats); }
.btn--thuisbezorgd { border-left: 3px solid var(--color-thuisbezorgd); }
.btn--whatsapp { border-left: 3px solid var(--color-whatsapp); }

.btn--gold {
  background: linear-gradient(135deg, var(--color-brass-light), var(--color-brass-dark));
  color: #12100e;
  border: none;
  font-weight: 700;
}

.btn--gold:hover {
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

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

.brand img {
  height: 38px;
  width: auto;
}

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

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-text);
  border-color: var(--color-brass);
}

.header-ctas {
  display: flex;
  gap: 10px;
}

.header-ctas .btn {
  padding: 9px 14px;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(11,10,9,0.55) 0%, rgba(11,10,9,0.55) 40%, rgba(11,10,9,0.96) 100%),
              url('../images/hero.jpg') center 30% / cover no-repeat;
}

.hero__content {
  max-width: 640px;
}

.hero__logo {
  width: 130px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-brass-light);
}

.hero p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ==========================================================================
   Sections (generic)
   ========================================================================== */

section {
  padding: 88px 0;
}

.section--alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Intro (Home)
   ========================================================================== */

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.intro__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 20%;
}

.intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-brass);
  outline: 10px solid var(--color-bg);
  outline-offset: -20px;
  pointer-events: none;
}

.intro__text p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.intro__text p:last-of-type {
  margin-bottom: 28px;
}

/* ==========================================================================
   Highlights (Home)
   ========================================================================== */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.highlight-card:hover {
  border-color: var(--color-brass);
  transform: translateY(-3px);
}

.highlight-card__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  color: var(--color-brass);
}

.highlight-card__icon svg {
  width: 100%;
  height: 100%;
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.highlight-card__price {
  font-family: var(--font-display);
  color: var(--color-brass-light);
  font-size: 1.05rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 32px;
}

.cta-band .btn {
  padding: 15px 26px;
  font-size: 1rem;
}

/* ==========================================================================
   Menu page
   ========================================================================== */

.menu-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}

.menu-category__title {
  font-size: 1.5rem;
  color: var(--color-brass-light);
  margin-bottom: 6px;
}

.menu-category .divider {
  margin-top: 0;
  margin-bottom: 22px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__name {
  font-weight: 600;
  font-size: 1.02rem;
}

.menu-item__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brass);
  border: 1px solid var(--color-brass-dark);
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.menu-item__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-brass-light);
  white-space: nowrap;
}

.menu-category--wide {
  grid-column: 1 / -1;
}

.menu-category--wide .menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
}

.menu-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 48px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-card + .contact-card {
  margin-top: 24px;
}

.contact-card h3 {
  font-size: 1.15rem;
  color: var(--color-brass-light);
  margin-bottom: 16px;
}

.contact-card__row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-card__row:last-child {
  margin-bottom: 0;
}

.contact-card__row svg {
  width: 20px;
  height: 20px;
  color: var(--color-brass);
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  color: var(--color-text-muted);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.map-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: 16px;
}

.footer-list li {
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.footer-list a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

/* ==========================================================================
   Mobile order bar
   ========================================================================== */

.mobile-order-bar {
  display: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .main-nav,
  .header-ctas {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
  }

  .site-header.is-open .header-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 232px;
    background: var(--color-bg);
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--color-border);
  }

  .site-header.is-open .header-ctas .btn {
    justify-content: center;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__media {
    aspect-ratio: 16 / 10;
  }

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

  .menu-categories {
    grid-template-columns: 1fr;
  }

  .menu-category--wide .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body {
    padding-bottom: 66px;
  }

  .mobile-order-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
  }

  .mobile-order-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px 12px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    border-top: 2px solid transparent;
  }

  .mobile-order-bar a svg {
    width: 20px;
    height: 20px;
  }

  .mobile-order-bar a.ubereats { border-color: var(--color-ubereats); }
  .mobile-order-bar a.thuisbezorgd { border-color: var(--color-thuisbezorgd); }
  .mobile-order-bar a.whatsapp { border-color: var(--color-whatsapp); }
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}
