/* ============================================================
   Mono Malo - Public Website
   Plum, gold, warm wood - matching the venue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ---- LIGHT PALETTE (all pages) ---- */
:root {
  --bg: #faf9f7;
  --bg-surface: #f2ede6;
  --bg-elevated: #eae4db;
  --border: rgba(0,0,0,0.07);
  --border-hover: rgba(0,0,0,0.14);
  --text: #1a1714;
  --text-muted: #6b6560;
  --text-dim: #9e9790;
  --gold: #9e7c38;
  --gold-soft: rgba(158,124,56,0.06);
  --plum: #7a4a60;
  --plum-light: #9e6880;
  --warm: #9e7c38;
  --font-display: 'Josefin Sans', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  letter-spacing: 0.01em;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--text); }

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 60px;
  width: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
}

.nav-cta {
  background: transparent;
  color: var(--gold) !important;
  padding: 10px 24px;
  border: 1px solid rgba(158,124,56,0.3);
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-color: var(--gold) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(250,249,247,0.7) 0%,
    rgba(250,249,247,0.55) 30%,
    rgba(250,249,247,0.7) 70%,
    rgba(250,249,247,1) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1515443961218-a51367888e4b?w=1600&q=80');
  filter: saturate(0.85) brightness(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 80px);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 40px;
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  display: inline-block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-hero.primary {
  background: var(--gold);
  color: #ffffff;
}

.btn-hero.primary:hover {
  opacity: 0.9;
}

.btn-hero.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.12);
}


.btn-hero.outline:hover {
  border-color: rgba(0,0,0,0.3);
}


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

section {
  padding: 100px 0;
}

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
  font-weight: 300;
}

/* ============================================================
   FEATURED DISHES (homepage dark surface)
   ============================================================ */

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

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

.menu-section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--plum);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
  margin-bottom: 64px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 3px;
  font-weight: 300;
}

.menu-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.dietary-badge {
  display: inline-block;
  font-size: 9px;
  padding: 2px 6px;
  border: 1px solid rgba(74,32,56,0.15);
  color: var(--text-dim);
  font-weight: 500;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

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

.about-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
}

.event-card {
  background: var(--bg);
  padding: 36px;
  transition: background 0.3s;
}

.event-card:hover {
  background: var(--bg-elevated);
}

.event-date {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.event-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */

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

.contact-item {
  margin-bottom: 28px;
}

.contact-item-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-item-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}

.map-container {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-surface);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  filter: invert(1);
  margin: 0 auto;
}

.footer-text {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.footer-social a {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* ============================================================
   BOOKING SECTION
   ============================================================ */

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

.booking-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   HOURS TABLE
   ============================================================ */

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

.hours-table td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

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

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

.hours-table .closed td:last-child {
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,249,247,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.mobile-open { display: flex; }
  .mobile-menu-btn { display: block; }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  section { padding: 64px 0; }

  .container { padding: 0 24px; }
}
