/* The Spuds — "pub session craic"
   green #1f4636 · amber #d99a2b · rust #b23a26 · cream #f2e8d0 · espresso #211b16 */
:root {
  --green: #1f4636;
  --amber: #d99a2b;
  --rust: #b23a26;
  --cream: #f2e8d0;
  --espresso: #211b16;
  --ink: #2b2622;
  --max: 1040px;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

.display {
  font-family: "Alfa Slab One", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

a { color: inherit; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(33, 27, 22, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 154, 43, 0.25);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-brand img { height: 2.4rem; width: auto; }
.nav-brand .wordmark {
  font-family: "Alfa Slab One", Georgia, serif;
  color: var(--cream); font-size: 1.25rem; letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a {
  color: var(--cream); opacity: 0.85; text-decoration: none;
  font-size: 0.95rem; letter-spacing: 0.02em;
}
.nav-links a:hover { opacity: 1; color: var(--amber); }
.lang-toggle {
  background: none; border: 1px solid var(--amber); color: var(--amber);
  font-size: 0.75rem; letter-spacing: 0.1em; padding: 0.25rem 0.55rem;
  cursor: pointer; font-family: inherit; border-radius: 3px;
}
.lang-toggle:hover { background: var(--amber); color: var(--espresso); }
.nav-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.8rem 1.8rem; border-radius: 4px;
  font-size: 0.95rem; letter-spacing: 0.04em; text-decoration: none;
  text-transform: uppercase; font-weight: 600; cursor: pointer; transition: transform 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--espresso); border: 2px solid var(--amber); }
.btn-secondary { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn-secondary:hover { background: var(--cream); color: var(--espresso); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 4rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(217, 154, 43, 0.28), transparent 55%),
    linear-gradient(165deg, #2c2118 0%, var(--espresso) 70%);
  color: var(--cream);
  overflow: hidden;
}
.hero::after { /* subtle vignette */
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 -120px 160px -60px rgba(0,0,0,0.6);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 4rem); margin-bottom: 1.4rem; }
.hero .payoff {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: #f0e3c4; opacity: 0.92;
  max-width: 640px; margin: 0 auto 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-place {
  margin-top: 2.2rem; font-size: 0.85rem; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.6;
}

/* ── Next-gig strip ───────────────────────────────────────── */
.next-gig { background: var(--amber); color: var(--espresso); }
.next-gig-inner {
  max-width: var(--max); margin: 0 auto; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.next-gig-label {
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.8rem; background: var(--espresso); color: var(--amber);
  padding: 0.25rem 0.6rem; border-radius: 3px;
}
.next-gig-info { font-weight: 600; }
.next-gig-cta { font-weight: 700; text-decoration: none; }
.next-gig-all { margin-left: auto; font-size: 0.85rem; text-decoration: underline; opacity: 0.8; }
.next-gig-empty .next-gig-label { background: var(--espresso); color: var(--cream); }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-dark { background: var(--green); color: var(--cream); }
.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--green);
  margin-bottom: 1.8rem; text-align: center;
}
.section-dark h2 { color: var(--amber); }
.eyebrow {
  display: block; text-align: center; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.78rem; color: var(--rust); margin-bottom: 0.5rem;
}
.section-dark .eyebrow { color: var(--amber); }
.link-arrow { color: var(--rust); font-weight: 600; text-decoration: none; }
.section-dark .link-arrow { color: var(--amber); }
.link-arrow:hover { text-decoration: underline; }

/* Who we are (two-col) */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.about-grid p { font-size: 1.1rem; margin-bottom: 1.2rem; }
.taster {
  aspect-ratio: 16 / 10; border-radius: 8px;
  background: var(--espresso) radial-gradient(circle at 50% 45%, rgba(217,154,43,0.25), transparent 60%);
  color: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; border: 1px solid rgba(0,0,0,0.1);
}
.taster .play { font-size: 2.4rem; opacity: 0.9; }
.taster small { opacity: 0.6; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem; }

/* Book teaser */
.occasions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0 2rem;
}
.occasion {
  background: rgba(242, 232, 208, 0.08); border: 1px solid rgba(242, 232, 208, 0.25);
  border-radius: 6px; padding: 1rem 1.4rem; text-align: center; min-width: 120px;
}
.occasion .ic { font-size: 1.8rem; display: block; margin-bottom: 0.3rem; }
.book-line { text-align: center; opacity: 0.9; margin-bottom: 1.6rem; }
.center { text-align: center; }

/* Gallery teaser */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 1.5rem;
}
.ph-tile {
  aspect-ratio: 4 / 3; border-radius: 6px;
  background: repeating-linear-gradient(45deg, #e7d9b8, #e7d9b8 12px, #e1d2ad 12px, #e1d2ad 24px);
  border: 1px dashed #c9b894;
  display: flex; align-items: center; justify-content: center;
  color: #9a875f; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--espresso); color: var(--cream); padding: 3rem 1.5rem 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.socials { display: flex; gap: 1.4rem; justify-content: center; margin-bottom: 1.2rem; }
.socials a { color: var(--cream); opacity: 0.8; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.03em; }
.socials a:hover { opacity: 1; color: var(--amber); }
.footer-meta { font-size: 0.85rem; opacity: 0.55; margin-bottom: 1.4rem; }
.footer-meta a { color: var(--amber); }
.spud {
  max-width: 460px; margin: 0 auto 1.4rem; text-align: left;
  background: rgba(242, 232, 208, 0.05); border: 1px solid rgba(217, 154, 43, 0.25); border-radius: 6px;
}
.spud summary {
  cursor: pointer; padding: 0.7rem 1rem; font-weight: 600; color: var(--amber); list-style: none;
}
.spud summary::-webkit-details-marker { display: none; }
.spud p { padding: 0 1rem 1rem; font-size: 0.9rem; opacity: 0.85; }
.copyright { font-size: 0.78rem; opacity: 0.4; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 1rem;
    background: rgba(33, 27, 22, 0.98); padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(217, 154, 43, 0.25);
  }
  .nav-links.open { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .next-gig-all { margin-left: 0; }
}

/* ════════════════════════════════════════════════════════════════
   EXPERIMENT — pint-of-stout hero (wide photo)
   Full-bleed wide pint photo; the hero text sits on the creamy head.
   `experiment` branch.
   ════════════════════════════════════════════════════════════════ */
.hero-pint {
  background: #2c1c10 url("../images/wide-pint.png") center center / cover no-repeat;
  overflow: hidden;
}

/* content sits on the foam head (upper-centre of the pint) */
.hero-pint .hero-content {
  position: absolute; top: 34%; left: 50%; transform: translate(-50%, -50%);
  z-index: 5; width: min(86%, 540px);
}
/* soft cream halo so the text stays legible on the foam */
.hero-pint .hero-content::before {
  content: ""; position: absolute; inset: -14% -16%; z-index: -1;
  background: radial-gradient(ellipse at center,
    rgba(247,238,219,0.85) 0%, rgba(247,238,219,0.5) 50%, transparent 75%);
  filter: blur(10px);
}
.hero-pint h1 {
  color: #211710; font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  margin-bottom: 1rem; text-shadow: 0 1px 0 rgba(255,252,245,0.5);
}
.hero-pint .payoff {
  color: #3f2e1e; opacity: 1;
  font-size: clamp(1rem, 2vw, 1.35rem); margin-bottom: 1.4rem;
}
.hero-pint .btn-secondary { color: #211710; border-color: #211710; }
.hero-pint .btn-secondary:hover { background: #211710; color: var(--cream); }

.hero-pint .hero-place {
  position: absolute; bottom: 3.5%; left: 50%; transform: translateX(-50%);
  z-index: 5; margin: 0; color: rgba(242,232,208,0.7);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
