/* ── Mauri Snack Pub — dark Irish gastropub theme ── */
:root {
  --bg-deep: #0a120e;
  --bg-green: #0f1a14;
  --bg-card: #141f18;
  --gold: #c9a84c;
  --gold-light: #e0c878;
  --gold-dim: rgba(201, 168, 76, 0.35);
  --cream: #e8dcc8;
  --cream-muted: #b0a494;
  --text-body: #d4c8b8;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--cream);
}

img {
  display: block;
  max-width: 100%;
}

/* ── Navigation ── */
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.nav-links a:hover {
  color: var(--gold);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 18, 14, 0.55) 0%,
      rgba(10, 18, 14, 0.75) 50%,
      var(--bg-deep) 100%
    ),
    url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?w=1920&q=80') center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.title-light {
  display: block;
  color: var(--cream);
}

.title-gold {
  display: block;
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  font-style: italic;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
}

/* ── Quote ── */
.quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3.5rem 1.5rem;
  background: var(--bg-green);
}

.quote-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

blockquote {
  text-align: center;
  max-width: 520px;
}

blockquote p {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.7;
}

blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ── Menu sections ── */
.menu-section {
  padding: 4rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.section-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  color: var(--gold);
  line-height: 1.2;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.menu-items--single {
  max-width: 560px;
  margin: 0 auto;
}

.menu-items--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.menu-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.menu-items--grid .menu-item {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.item-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.item-desc {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.55;
}

/* ── Image break ── */
.image-break {
  position: relative;
  height: 280px;
  background:
    linear-gradient(rgba(10, 18, 14, 0.6), rgba(10, 18, 14, 0.6)),
    url('https://images.unsplash.com/photo-1573080496219-bb080ddf4f69?w=1200&q=80') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break-text {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* ── Visit ── */
.visit {
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-green) 100%);
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.visit-card p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.visit-icon {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.visit-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  color: var(--gold);
}

/* ── Footer ── */
.site-footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--bg-deep);
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
  opacity: 0.7;
}

.site-footer p {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 90svh;
    padding-top: 7rem;
  }

  .quote {
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 1.25rem;
  }

  .quote-line {
    max-width: 80px;
  }

  .menu-items--grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-items--grid .menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-break {
    height: 200px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}
