/* Beiaard Harderwijk — Clean Minimal Theme 2026 */

:root {
  --bg: #f8f6f2;
  --bg-white: #ffffff;
  --text: #1a1a1a;
  --muted: #666;
  --accent: #7a5c2e;
  --accent-dark: #5c4221;
  --border: #e2ddd6;
  --hf: 'Playfair Display', Georgia, serif;
  --bf: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--bf);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); }

/* ── HEADER ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(248,246,242,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.site-logo {
  font-family: var(--hf);
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 0.85rem;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

/* ── MOBILE NAV ──────────────────────────── */
@media (max-width: 960px) {
  .menu-toggle { display: flex; align-items: center; }
  .main-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0 1.5rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; }
  .main-nav a {
    display: block;
    padding: 0.8rem 2.5rem;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
  .main-nav ul li:last-child a { border-bottom: none; }
}

/* ── HERO (homepage) ─────────────────────── */
.hero {
  margin-top: 64px;
  position: relative;
  height: 76vh;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.78) 0%, rgba(8,6,4,0.1) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  padding: 3rem 3.5rem;
  color: white;
  max-width: 860px;
}

.eyebrow-light {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.hero-content h1 {
  font-family: var(--hf);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: white;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-hero:hover { background: var(--accent); color: white; }

/* ── PAGE HERO (interior pages) ──────────── */
.page-hero {
  margin-top: 64px;
  background: #17140f;
  color: white;
  padding: 4.5rem 3.5rem 3.5rem;
}

.page-hero .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-family: var(--hf);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

/* ── LAYOUT ──────────────────────────────── */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section { padding: 5rem 0; }
.section-white { background: var(--bg-white); }
.section-dark { background: #17140f; color: white; }

.section-hd { margin-bottom: 2.5rem; }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-dark .eyebrow { color: rgba(255,255,255,0.45); }

h2.stitle {
  font-family: var(--hf);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-dark h2.stitle { color: white; }

/* ── CONCERT LIST ────────────────────────── */
.concert-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.concert-item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.concert-item:hover .cname { color: var(--accent); }

.cdate {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.cname {
  font-family: var(--hf);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.carrow {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
}

/* ── ARCHIVE ─────────────────────────────── */
.archive-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.archive-section h3 {
  font-family: var(--hf);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1rem;
}

.archive-links { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.archive-link {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.18s;
}
.archive-link:hover { border-color: var(--text); color: var(--text); background: var(--bg-white); }

/* ── POSTER SECTION ──────────────────────── */
.poster-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.poster-img a { display: block; }
.poster-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.poster-img a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.22);
}

@media (max-width: 800px) {
  .poster-section { grid-template-columns: 1fr; }
  .poster-img { max-width: 300px; margin: 0 auto 2.5rem; }
}

/* ── CARDS (homepage features) ───────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.04); }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.card-body h3 {
  font-family: var(--hf);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s;
}
.btn:hover { background: var(--accent-dark); color: white; }

/* ── PERFORMER PAGE ──────────────────────── */
.performer-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.performer-photo {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

.perf-date {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.perf-name {
  font-family: var(--hf);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.perf-time {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.bio {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

.prog-title {
  font-family: var(--hf);
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.program-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.program-item {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  align-items: start;
}

.pnum {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  padding-top: 0.15em;
}

.pinfo strong { display: block; font-weight: 500; }
.pinfo span { color: var(--muted); font-size: 0.83rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

/* ── MAP ─────────────────────────────────── */
.map-wrap {
  margin-top: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; width: 100%; }

/* ── INFO STRIP ──────────────────────────── */
.info-strip { background: #17140f; padding: 2.5rem 0; }

.info-strip-grid { display: flex; flex-wrap: wrap; gap: 0.25rem 0; }

.info-strip-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem 0.4rem 0;
  transition: color 0.2s;
}
.info-strip-link:hover { color: rgba(255,255,255,0.9); }

/* ── PROSE (info pages) ──────────────────── */
.prose { max-width: 760px; }
.prose h2 {
  font-family: var(--hf);
  font-size: 1.3rem;
  margin: 2.25rem 0 0.5rem;
}
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose p:first-of-type { color: var(--text); }
.prose a { color: var(--accent); }
.prose img { border-radius: 4px; max-width: 100%; }

/* ── PHOTO GRID ──────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.photo-grid a { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-grid a:hover img { transform: scale(1.06); }

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: #0d0b08;
  color: rgba(255,255,255,0.38);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}
.site-footer a { color: rgba(255,255,255,0.58); text-decoration: none; }
.site-footer a:hover { color: white; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 700px) {
  .section { padding: 3rem 0; }
  .hero-content { padding: 2rem; }
  .page-hero { padding: 3.5rem 1.5rem 2.5rem; }
  .container { padding: 0 1.5rem; }
  .performer-layout { grid-template-columns: 1fr; }
  .performer-photo { max-width: 240px; }
  .concert-item { grid-template-columns: 1fr auto; }
  .cdate { display: none; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
