/* =============================================
   Music and Friends — Publieke stylesheet
   Vintage vinyl / platenzaak sfeer
   ============================================= */

/* === CUSTOM PROPERTIES === */
:root {
  --cream:    #f2ead3;
  --cream-dk: #e8ddc4;
  --brown:    #4a2c1a;
  --brown-lt: #7a5c44;
  --orange:   #d96f32;
  --gold:     #c9a24b;
  --gold-lt:  #e4c77a;
  --dark:     #1a1410;
  --mid:      #5c4030;
  --light:    #faf6ed;
  --border:   #d4c0a0;

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, serif;
  --font-label:   'Special Elite', 'Courier New', monospace;

  --nav-h: 72px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(26,20,16,.12);
  --shadow-lg: 0 8px 40px rgba(26,20,16,.2);
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brown); }

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--brown);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT HELPERS === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === SECTION DIVIDER (vinyl ring) === */
.vinyl-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--border);
}
.vinyl-divider::before,
.vinyl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.vinyl-divider span {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

/* === NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  height: var(--nav-h);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-vinyl {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  transition: transform .4s ease;
}
.site-logo:hover .logo-vinyl { transform: rotate(90deg); }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--font-label);
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .08em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: .25rem;
}
.main-nav a {
  display: block;
  padding: .45rem .9rem;
  color: rgba(255,255,255,.8);
  font-family: var(--font-body);
  font-size: .925rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.actief {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.main-nav a.actief { color: var(--gold-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* === HERO (home) === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: grayscale(40%) brightness(.65);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,20,16,.92) 0%,
    rgba(26,20,16,.55) 45%,
    rgba(26,20,16,.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem 5rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-family: var(--font-label);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2rem;
  font-style: italic;
}
.btn {
  display: inline-block;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.btn-amber { background: var(--orange); color: #fff; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-brown { background: var(--brown); color: var(--cream); }

/* === INTRO STRIP === */
.intro-strip {
  background: var(--brown);
  color: var(--cream);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.intro-strip h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}
.intro-strip p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(242,234,211,.85);
  line-height: 1.85;
}

/* === ARTIEST CARDS GRID === */
.section { padding: 4rem 0; }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-header h2 { margin: 0; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
}
.artist-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.artist-card:hover {
  transform: translateY(-5px) rotate(-.5deg);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.artist-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--brown);
  position: relative;
}
.artist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.artist-card:hover .artist-card-img img { transform: scale(1.06); }
.artist-card-img .placeholder-vinyl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 5rem;
  color: rgba(201,162,75,.3);
}
.artist-card-body {
  padding: 1rem;
}
.artist-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: .2rem;
}
.artist-card-tagline {
  font-size: .82rem;
  color: var(--brown-lt);
  line-height: 1.4;
  font-style: italic;
}

/* === ARTIEST DETAIL PAGINA === */
.artist-hero {
  position: relative;
  height: 65vh;
  min-height: 360px;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.artist-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(35%) brightness(.6);
}
.artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.9) 0%, rgba(26,20,16,.3) 70%, transparent 100%);
}
.artist-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 3.5rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.artist-hero-content h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 4.5rem); margin-bottom: .5rem; }
.artist-hero-content .tagline { color: rgba(255,255,255,.7); font-style: italic; font-size: 1.15rem; }

.artist-content { padding: 3rem 0 5rem; }
.artist-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Bio */
.bio-text p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.bio-text p:last-child { margin-bottom: 0; }

/* Sidebar */
.artist-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }

/* Trivia card */
.card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card-title {
  font-family: var(--font-label);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.card-title::before { content: '●'; font-size: .6rem; }

.trivia-list {
  list-style: none;
  padding: 0;
}
.trivia-list li {
  padding: .5rem 0 .5rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  position: relative;
  line-height: 1.5;
}
.trivia-list li:last-child { border-bottom: none; }
.trivia-list li::before { content: '◈'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .7rem; }

/* Whiskey pairing card — ticket-stub stijl */
.whiskey-card {
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.whiskey-card-header {
  background: var(--orange);
  padding: .75rem 1.25rem;
  font-family: var(--font-label);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.whiskey-card-body {
  padding: 1.25rem;
}
.whiskey-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-lt);
  margin-bottom: .75rem;
}
.whiskey-card-body p {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(242,234,211,.85);
  margin-bottom: 0;
}
.whiskey-dashes {
  border: none;
  border-top: 2px dashed rgba(255,255,255,.15);
  margin: .75rem 0;
}

/* Discografie */
.discography { padding: 3rem 0; background: var(--cream-dk); }
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.album-card {
  cursor: pointer;
  text-align: center;
}
.album-cover {
  aspect-ratio: 1 / 1;
  background: var(--brown);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: .6rem;
  box-shadow: 3px 3px 12px rgba(0,0,0,.3);
  transition: transform .25s, box-shadow .25s;
}
.album-cover:hover { transform: scale(1.05) rotate(-1deg); box-shadow: 6px 6px 20px rgba(0,0,0,.4); }
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-cover .placeholder-vinyl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  color: rgba(201,162,75,.4);
}
.album-year {
  font-family: var(--font-label);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: .2rem;
}
.album-title {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--brown);
  line-height: 1.3;
}
.album-note { font-size: .8rem; color: var(--brown-lt); margin-top: .2rem; font-style: italic; }

/* Embeds */
.embeds-section { padding: 3rem 0; }
.embeds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.embed-wrap iframe {
  width: 100%;
  border-radius: var(--radius);
  border: none;
}
.embed-label {
  font-family: var(--font-label);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

/* === OVER ONS PAGINA === */
.page-hero {
  background: var(--brown);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--gold-lt); margin-bottom: .75rem; }
.page-hero p { color: rgba(242,234,211,.8); max-width: 580px; margin: 0 auto; font-style: italic; font-size: 1.1rem; }

.over-content { padding: 4rem 0; }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.over-grid.reverse { direction: rtl; }
.over-grid.reverse > * { direction: ltr; }
.over-text h2 { margin-bottom: 1rem; }
.over-text p { color: var(--mid); }
.over-visual {
  background: var(--brown);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(201,162,75,.3);
  overflow: hidden;
}
.over-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pillar {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.pillar-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.pillar h3 { font-size: 1rem; color: var(--brown); margin-bottom: .5rem; }
.pillar p { font-size: .9rem; color: var(--brown-lt); margin: 0; }

/* === ARTIESTEN OVERZICHT === */
.archive-header {
  background: var(--brown);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.archive-header h1 { color: var(--gold-lt); }
.archive-header p { color: rgba(242,234,211,.7); margin-top: .5rem; font-style: italic; }
.archive-content { padding: 3rem 0 5rem; }

/* === LIGHTBOX === */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,3,.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-height: 70vh;
  max-width: 90vw;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.lightbox-info { text-align: center; color: #fff; }
.lightbox-info strong { font-family: var(--font-display); font-size: 1.1rem; }
.lightbox-info span { display: block; font-size: .85rem; color: rgba(255,255,255,.6); }
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(242,234,211,.6);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.footer-logo .logo-vinyl { font-size: 2rem; color: var(--gold); }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-tagline {
  font-style: italic;
  font-size: .9rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.footer-nav { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.footer-nav a { color: rgba(242,234,211,.6); font-size: .875rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }

/* === FADE-IN ANIMATION === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === 404 === */
.notfound {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.notfound-vinyl { font-size: 6rem; color: var(--gold); margin-bottom: 1rem; }
.notfound h1 { font-size: 6rem; color: var(--brown); line-height: 1; }
.notfound p { color: var(--brown-lt); font-style: italic; margin: 1rem 0 2rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .artist-layout { grid-template-columns: 1fr; }
  .embeds-grid { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; gap: 2rem; }
  .over-grid.reverse { direction: ltr; }
  .pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--brown);
    padding: .5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: .75rem 1.5rem; border-radius: 0; }

  .site-header { position: relative; }

  .hero { min-height: 80vh; }
  .album-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .pillars { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
}
