/* ============================================================
   La Choza Aruba — Shared Stylesheet
   Brand: golden #F5A800 / brown #1a0800 / accent #C47A00
   ============================================================ */

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

:root {
  --gold:    #F5A800;
  --gold-dk: #C47A00;
  --brown:   #1a0800;
  --brown-2: #2e1200;
  --cream:   #FFF8EE;
  --text:    #1a1008;
  --muted:   #6b5a47;
  --border:  rgba(0,0,0,0.09);
  --radius:  12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brown);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); font-weight: 500; }
.nav-cta {
  background: var(--gold); color: var(--brown);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--brown);
  padding: 72px 40px 64px;
  text-align: center;
}
.hero-logo { height: 120px; margin: 0 auto 28px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,168,0,0.14);
  color: #F5C84A;
  border: 1px solid rgba(245,168,0,0.28);
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 42px; font-weight: 600; line-height: 1.15;
  color: #fff; margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 16px; color: rgba(255,255,255,0.62);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--brown);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-size: 15px; cursor: pointer;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.hero-meta {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-meta-item .val {
  font-size: 15px; font-weight: 600; color: var(--gold);
}
.hero-meta-item .lab {
  font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px;
}

/* ── HERO PHOTO VARIANT ──────────────────────────────────── */
.hero-photo {
  position: relative;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 60%;
  padding: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 6, 0, 0.55) 0%,
    rgba(15, 6, 0, 0.65) 50%,
    rgba(15, 6, 0, 0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 40px 64px;
  text-align: center;
}

@media (max-width: 700px) {
  .hero-content { padding: 52px 20px 48px; }
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 64px 40px; }
.section-alt { background: var(--cream); }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold-dk);
  margin-bottom: 8px;
}
.section-title {
  font-size: 28px; font-weight: 600; margin-bottom: 8px; line-height: 1.2;
}
.section-sub {
  font-size: 15px; color: var(--muted); margin-bottom: 40px; max-width: 520px;
}

/* ── HIGHLIGHT CARDS ─────────────────────────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.highlight-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(245,168,0,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 22px; color: var(--gold-dk);
}
.highlight-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.highlight-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── MENU PREVIEW TABS ───────────────────────────────────── */
.menu-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab {
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 14px; cursor: pointer;
  border: 1px solid var(--border);
  background: #fff; color: var(--muted);
  font-family: inherit; transition: all 0.15s;
}
.tab:hover { border-color: var(--gold-dk); color: var(--gold-dk); }
.tab.active { background: var(--gold); color: var(--brown); border-color: var(--gold); font-weight: 600; }

/* ── MENU ITEM CARDS ─────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.menu-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
  transition: border-color 0.15s;
}
.menu-item:hover { border-color: rgba(245,168,0,0.4); }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.menu-item p { font-size: 12px; color: var(--muted); line-height: 1.55; }
.menu-price { font-size: 14px; font-weight: 600; color: var(--gold-dk); white-space: nowrap; }

/* ── VIEW ALL CTA ────────────────────────────────────────── */
.view-all-wrap { text-align: center; margin-top: 32px; }
.view-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brown); color: #fff;
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  transition: opacity 0.15s;
}
.view-all:hover { opacity: 0.85; }

/* ── INFO CARDS ──────────────────────────────────────────── */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
}
.info-card h4 {
  font-size: 14px; font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.info-card h4 svg { color: var(--gold-dk); flex-shrink: 0; }
.info-card p, .info-card a {
  font-size: 14px; color: var(--muted); line-height: 1.9; display: block;
}
.info-card a:hover { color: var(--gold-dk); }
.info-card .map-link {
  margin-top: 10px; font-size: 13px; color: var(--gold-dk); font-weight: 500;
}

/* ── PAGE HEADER (menu pages) ────────────────────────────── */
.page-header {
  background: var(--brown);
  padding: 36px 40px;
  display: flex; align-items: center; gap: 24px;
}
.page-header img { height: 56px; width: auto; }
.page-header-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
  color: #F5C84A; font-weight: 600; margin-bottom: 6px;
}
.page-header h1 { font-size: 30px; font-weight: 600; color: #fff; line-height: 1.1; }
.page-header p { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 5px; }

/* ── MENU SECTION HEADER ─────────────────────────────────── */
.menu-section { padding: 48px 40px 40px; }
.menu-section + .menu-section { border-top: 1px solid var(--border); }
.menu-section.alt { background: var(--cream); }
.menu-section-note {
  font-size: 13px; color: var(--muted); margin-bottom: 20px; font-style: italic;
}
.menu-section-title {
  font-size: 22px; font-weight: 600; margin-bottom: 6px;
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0 40px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--brown-2);
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer p a { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 700px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta):not(:last-child) { display: none; }
  .hero { padding: 52px 20px 48px; }
  .hero-logo { height: 88px; }
  .hero h1 { font-size: 30px; }
  .hero-meta { gap: 28px; }
  .section { padding: 48px 20px; }
  .menu-section { padding: 40px 20px 32px; }
  .divider { margin: 0 20px; }
  .page-header { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer { padding: 24px 20px; flex-direction: column; }
  .info-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .info-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
