/* =========================================================
   artiesten.css - Artiesten pagina in dezelfde luxe opbouw
   als de fotopagina: panel, grid, overlay, hover en popup.
   ========================================================= */

:root{
  --artist-bg: #0b0b0b;
  --artist-panel: rgba(13,13,13,.92);
  --artist-text: rgba(255,255,255,.92);
  --artist-muted: rgba(255,255,255,.72);
  --artist-gold: #c8a96a;
  --artist-gold-2: #e3d3a3;
  --artist-line: rgba(200,169,106,.24);
  --artist-line-strong: rgba(200,169,106,.46);
  --artist-radius: 22px;
  --artist-radius-card: 18px;
  --artist-shadow: 0 18px 45px rgba(0,0,0,.38);
  --artist-shadow-card: 0 14px 34px rgba(0,0,0,.32);
}

.artists-page-content{
  padding-bottom: 74px;
}

.artist-showcase{
  position: relative;
  margin: 34px 0 0;
  color: var(--artist-text);
  font-family: var(--ds-font-body);
}

.artist-showcase__panel{
  position: relative;
  overflow: hidden;
  padding: 30px 30px 28px;
  border: 1px solid var(--artist-line);
  border-radius: var(--artist-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(200,169,106,.12), transparent 34%),
    linear-gradient(180deg, rgba(18,18,18,.96), rgba(7,7,7,.96));
  box-shadow: var(--artist-shadow);
}

.artist-showcase__panel::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 560px;
  max-width: 72%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, rgba(227,211,163,.75), transparent);
  pointer-events: none;
}

.artist-showcase__intro{
  max-width: 800px;
  margin: 0 auto 26px;
  text-align: center;
}

.artist-showcase__kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--artist-gold-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.artist-showcase__kicker::before,
.artist-showcase__kicker::after{
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(200,169,106,.62);
}

.artist-showcase__intro h2{
  margin: 0;
  color: #fff;
  font-family: var(--ds-font-heading);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.artist-showcase__intro p{
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--artist-muted);
  font-size: 16px;
  line-height: 1.65;
}

.artist-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.artist-card{
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--artist-radius-card);
  background: #080808;
  box-shadow: var(--artist-shadow-card);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.artist-card--featured{
  grid-column: span 2;
}

.artist-card img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center top;
  background: #050505;
  filter: brightness(.86) contrast(1.08) saturate(1.04);
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.artist-card--featured img{
  aspect-ratio: 8 / 5;
}

.artist-card::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(227,211,163,.18), transparent 38%),
    linear-gradient(180deg, transparent 38%, rgba(0,0,0,.94));
  opacity: .76;
  transition: opacity .32s ease;
  pointer-events: none;
}

.artist-card__overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  align-items: end;
  padding: 18px;
  color: #fff;
}

.artist-card__eyebrow{
  grid-column: 1;
  color: var(--artist-gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .92;
}

.artist-card__title{
  grid-column: 1;
  color: #fff;
  font-family: var(--ds-font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.artist-card__zoom{
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, #f1d8a0 0%, #d6b36a 52%, #b98c3f 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: transform .28s ease, filter .28s ease;
}

.artist-card:hover,
.artist-card:focus{
  transform: translateY(-4px);
  border-color: var(--artist-line-strong);
  box-shadow: 0 22px 52px rgba(0,0,0,.46), 0 0 22px rgba(200,169,106,.10);
  outline: none;
}

.artist-card:hover img,
.artist-card:focus img{
  transform: scale(1.07);
  filter: brightness(.72) contrast(1.12) saturate(1.12);
}

.artist-card:hover::before,
.artist-card:focus::before{
  opacity: .98;
}

.artist-card:hover .artist-card__zoom,
.artist-card:focus .artist-card__zoom{
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.05);
}

.artist-showcase__bottom{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

.artist-showcase__bottom p{
  margin: 0;
  color: var(--artist-muted);
  font-size: 14px;
  letter-spacing: .04em;
}

/* Fancybox inline content hoort verborgen te zijn op de normale pagina. */
.rock_dj_profile,
.artist-profile-popup{
  display: none;
  width: 900px;
  max-width: calc(100vw - 44px);
  padding: 24px;
  color: var(--artist-text);
  border: 1px solid var(--artist-line);
  border-radius: var(--artist-radius-card);
  background:
    radial-gradient(circle at 50% 0%, rgba(200,169,106,.10), transparent 34%),
    linear-gradient(180deg, rgba(18,18,18,.98), rgba(7,7,7,.98));
  box-shadow: var(--artist-shadow);
}

.fancybox-inner .rock_dj_profile,
.fancybox-wrap .rock_dj_profile,
.fancybox-inner .artist-profile-popup,
.fancybox-wrap .artist-profile-popup{
  display: block;
}

.rock_dj_profile .row{
  margin-left: -10px;
  margin-right: -10px;
}

.rock_dj_profile [class*="col-"]{
  padding-left: 10px;
  padding-right: 10px;
}

.rock_dj_profile img{
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.rock_dj_profile h2{
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--ds-font-heading);
  font-size: 34px;
  line-height: 1.08;
}

.rock_dj_profile h3{
  margin-top: 22px;
  color: #fff;
  font-size: 16px;
}

.rock_dj_profile h4{
  margin-top: 14px;
  color: var(--artist-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.rock_dj_profile p{
  color: var(--artist-muted);
  line-height: 1.7;
}

.rock_dj_profile .rock_social ul{
  padding-left: 0;
  margin-left: 0;
}

.rock_dj_profile .rock_social ul li a:hover{
  background: var(--artist-gold) !important;
  color: #0b0b0b !important;
}

/* Backwards compatibility: oude artist classes blijven netjes wanneer ze nog ergens voorkomen. */
.rock_about_offer{
  background: rgba(14,14,16,.86);
  border: 1px solid var(--artist-line);
  border-radius: var(--artist-radius-card);
  box-shadow: var(--artist-shadow-card);
  overflow: hidden;
}

@media (max-width: 991px){
  .artists-page-content{
    padding-bottom: 62px;
  }

  .artist-showcase{
    margin: 28px 0 0;
  }

  .artist-showcase__panel{
    padding: 24px 22px 24px;
  }

  .artist-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .artist-card--featured{
    grid-column: span 2;
  }
}

@media (max-width: 767px){
  .artists-page-content{
    padding-bottom: 50px;
  }

  .artist-showcase{
    margin: 20px 0 0;
  }

  .artist-showcase__panel{
    padding: 18px 14px 18px;
    border-radius: 18px;
  }

  .artist-showcase__kicker{
    font-size: 10px;
    letter-spacing: .14em;
  }

  .artist-showcase__kicker::before,
  .artist-showcase__kicker::after{
    width: 20px;
  }

  .artist-showcase__intro{
    margin-bottom: 18px;
  }

  .artist-showcase__intro h2{
    font-size: 30px;
  }

  .artist-showcase__intro p{
    font-size: 14px;
    line-height: 1.6;
  }

  .artist-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .artist-card--featured{
    grid-column: span 1;
  }

  .artist-card img,
  .artist-card--featured img{
    aspect-ratio: 4 / 3;
  }

  .artist-card__overlay{
    padding: 15px;
  }

  .artist-card__title{
    font-size: 21px;
  }

  .artist-card__zoom{
    width: 40px;
    height: 40px;
  }

  .rock_dj_profile,
  .artist-profile-popup{
    width: auto;
    max-width: calc(100vw - 28px);
    padding: 18px;
  }

  .rock_dj_profile img{
    margin-bottom: 16px;
  }

  .rock_dj_profile h2{
    font-size: 28px;
  }
}

/* =========================================================
   UNIFIED PAGE OVERRIDES - artiesten
   ========================================================= */
.artist-showcase,
.artists-page-content{
  color: var(--ds-text);
  font-family: var(--ds-font-body);
}

.artist-showcase__intro h2,
.artist-card__title,
.rock_dj_profile h2{
  color: #fff !important;
  font-family: var(--ds-font-heading) !important;
}

.artist-showcase__intro p,
.artist-card__meta,
.rock_dj_profile p{
  color: var(--ds-muted) !important;
}
