
/* =====================================================
   VARIABLES
===================================================== */
:root {
  --gold: #b1a073;
  --gold-hover: #dbd1b5;
  --dark: #000;
  --text-dark: #333;
  --gold-soft: rgba(177, 160, 115, 0.08);
}

/* =====================================================
   BASE
===================================================== */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3 {
  font-weight: 900;
}

p {
  line-height: 1.7;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  padding: 1.5rem 0;
  transition: background-color .3s ease, padding .3s ease;
}

.navbar-transparent {
  background: transparent;
}

.navbar-scrolled {
  background: rgba(0,0,0,.95);
  padding: .75rem 0;
}

.navbar-logo {
  height: 120px;
  transition: height .3s ease;
}

.navbar-scrolled .navbar-logo {
  height: 44px;
}

.navbar .nav-link {
  color: var(--gold) !important;
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-hover);
  transition: width .3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .bi {
  color: var(--gold);
  font-size: 1.2rem;
}

.navbar .bi:hover {
  color: var(--gold-hover);
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 80vh;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
	margin-top: 40px;
  letter-spacing: .03em;
  line-height: 1.05;
  font-weight: 900;
	max-width: 800px;
	display: inline-block;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-hero,
.btn-artists,
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
}

.btn-hero {
  padding: .9rem 2.2rem;
  background: var(--gold);
  color: #000;
  border-radius: .25rem;
}

.btn-hero:hover {
  background: var(--gold-hover);
  color: var(--text-dark);
}

.btn-artists {
  padding: .6rem 1.4rem;
  border: 1px solid #837a5c;
  color: #837a5c;
  background: transparent;
}

.btn-artists:hover {
  background: #837a5c;
  color: #fff;
}

.btn-about {
  padding: .6rem 1.4rem;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

.btn-about:hover {
  background: var(--text-dark);
  color: #dbd1b5;
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform .25s ease;
}

.btn-hero:hover .btn-arrow,
.btn-artists:hover .btn-arrow,
.btn-about:hover .btn-arrow {
  transform: translateX(6px);
}

/* =========================
   NAV CTA BUTTONS
========================= */

/* Basis: beide knoppen exact gelijk */
.navbar .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 44px;              /* ⬅️ vaste hoogte */
  padding: 0 1.5rem;
  font-weight: 500;
  border-radius: .25rem;
  line-height: 1;
}

/* BUTTON 1 – OPEN */
.navbar .btn-outline-light {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.navbar .btn-outline-light:hover {
  background: var(--gold-hover);
  color: #000;
  border-color: var(--gold-hover);
}

/* BUTTON 2 – SOLID */
.navbar .btn-warning {
  background: #0f4f55;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.navbar .btn-warning:hover {
  background: #123f44;
  color: var(--gold-hover);
  border-color: var(--gold-hover);
}

/* Arrow consistent met andere buttons */
.navbar .btn .btn-arrow {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform .25s ease;
}

.navbar .btn:hover .btn-arrow {
  transform: translateX(4px);
}

.navbar .btn-warning {
  box-shadow: 0 0 0 0 rgba(15,79,85,.4);
}

.navbar .btn-warning:hover {
  box-shadow: 0 0 0 3px rgba(177,160,115,.25);
}


/* =====================================================
   INTRO
===================================================== */
.bg-teal {
  background: #0f4f55;
}

.intro-text {
  max-width: 920px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
	padding-bottom: 25px;
}

@media (min-width: 992px) {
  .intro-text {
    font-size: 1.25rem;
  }
}

/* =====================================================
   ARTISTS SLIDER
===================================================== */
.artists-title {
  color: #837a5c;
}

.artists-slider-section {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
}

.artists-swiper {
  padding-left: 20vw;
}

@media (min-width: 992px) {
  .artists-swiper {
    padding-left: 40vw;
  }
}

.swiper-slide {
  width: 360px;
  padding-right: 32px;
  box-sizing: content-box;
  border-radius: 14px;
  overflow: hidden;
}

.artist-slide img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .4s ease;
	min-width: 360px
}

.artist-slide:hover img {
  transform: scale(1.05);
}

/* Fade */
.artists-slider-section::before,
.artists-slider-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.artists-slider-section::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.artists-slider-section::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* =====================================================
   SLIDER CONTROLS (ONDER SLIDER)
===================================================== */
.artists-controls {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.artists-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid #837a5c;
  background: none;
  color: #837a5c;
  display: grid;
  place-items: center;
}

.artists-controls button:hover {
  background: #837a5c;
  color: #fff;
}

/* =====================================================
   ABOUT
===================================================== */
.about-section {
  background: #dbd1b5;
}

.about-text {
  max-width: 820px;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* =====================================================
   INFO + LOGOS
===================================================== */
.info-logos-section {
  border-top: 1px solid rgba(0,0,0,.08);
}

.info-block {
  text-align: right;
	padding-right: 40px;
}

.info-block p {
  max-width: 820px;
  margin-left: auto;
  font-size: 1.2rem;
 line-height: 2rem;
}
.info-block p a { color: #333; text-decoration: none;  transition: .3s;}
.info-block p a:hover { color: #dbd1b5;; text-decoration: underline; transition: .3s; }

.partner-logo {
padding: 50px 0;
}

.partner-logo img {
  max-height: 125px;
  opacity: .75;
  transition: opacity .2s ease, transform .2s ease;
}

.partner-logo:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: #000;
  color: var(--gold);
}

.footer-menu a {
  color: var(--gold);
  text-decoration: none;
  font-size: .9rem;
}

.footer-menu a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.footer-logo img {
  width: 48px;
  opacity: .8;
}

.footer-logo:hover img {
  opacity: 1;
}

/* FOOTER SOCIALS */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  color: var(--gold);
  font-size: 1.8rem;
}

.footer-socials a:hover {
  color: var(--gold-hover);
  transform: translateY(-2px);
}

/* FOOTER LOGO CENTER */
.footer-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
	width: 30px;
}

/* =========================
   MOBILE MENU OVERLAY
========================= */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(4px);
  z-index: 2000;

  display: flex;
  flex-direction: column;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* CLOSE BUTTON */
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
}

/* MENU LINKS */
.mobile-menu-nav {
  margin-top: 25vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mobile-menu-link:hover {
  color: var(--gold-hover);
}

/* CTA BUTTONS */
.mobile-menu-ctas {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-ctas .btn {
  min-width: 220px;
  justify-content: center;
}

/* SOCIALS BOTTOM */
.mobile-menu-socials {
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}

.mobile-menu-socials a {
  color: var(--gold);
  font-size: 1.4rem;
}

.mobile-menu-socials a:hover {
  color: var(--gold-hover);
}

/* DESKTOP: overlay uit */
@media (min-width: 992px) {
  .mobile-menu-overlay {
    display: none;
  }
}




/* =========================
   MOBILE MENU OPEN BUTTON
========================= */

.navbar-toggler {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: .25rem;
  padding: 0;
  transition: background-color .2s ease, border-color .2s ease;
}

/* EIGEN hamburger (goud) */
.navbar-toggler-icon {
  width: 22px;
  height: 2px;
  background-color: var(--gold);
  position: relative;
  background-image: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: var(--gold);
  transition: background-color .2s ease;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

/* HOVER */
.navbar-toggler:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background-color: var(--text-dark);
}

.navbar-toggler {
  transition: background-color .2s ease, border-color .2s ease;
}

/* =========================
   MOBILE MENU – BUTTON STYLES
   (override Bootstrap defaults)
========================= */

/* BUTTON 1 – OPEN (GOUD) */
.mobile-menu-ctas .btn-outline-light {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.mobile-menu-ctas .btn-outline-light:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--text-dark);
}

/* BUTTON 2 – SOLID (GROEN + GOUD) */
.mobile-menu-ctas .btn-warning {
  background: #0f4f55;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.mobile-menu-ctas .btn-warning:hover {
  background: #123f44;
  border-color: var(--gold-hover);
  color: var(--gold-hover);
}

/* ARROW CONSISTENT */
.mobile-menu-ctas .btn .btn-arrow {
  font-size: 1.3rem;
  transition: transform .25s ease;
}

.mobile-menu-ctas .btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* =========================
   SUBPAGE HERO
========================= */

.hero--subpage {
  min-height: 40vh;   /* halve homepage hero */
}

.hero--subpage h1 {
  letter-spacing: .02em;
	font-weight: 900;
	text-transform: uppercase;
	margin-top: 80px;
}

/* =========================
   ARTISTS FILTER
========================= */

.artists-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: .45rem 1.2rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  border-radius: .25rem;
  transition: all .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-hover);
  color: var(--text-dark);
  border-color: var(--gold-hover);
}

/* =========================
   ARTISTS GRID
========================= */

.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.artist-card {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
}

.artist-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s ease;
}

.artist-card:hover img {
  transform: scale(1.04);
}

.artist-name {
  display: block;
  margin-top: .75rem;
  font-weight: 600;
  text-align: center;
}

/* FILTERS */
.artists-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; /* mobiel netjes */
}

/* buttons behouden jouw stijl */
.artists-filters .filter-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 1.2rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all .25s ease;
	text-decoration: none;
}

.artists-filters .filter-btn:hover,
.artists-filters .filter-btn.active {
  background-color: var(--gold);
  color: #000;
}

.artists-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  .artists-page {
    padding-top: 6.5rem;
    padding-bottom: 7.5rem;
  }
}

/* GRID */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

/* CARD BASIS */
.artist-card {
  transition:
    opacity .35s ease,
    transform .35s ease;
  will-change: opacity, transform;
}

/* VERBORGEN */
.artist-card.is-hidden {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
 display:none;
}

/* ZICHTBAAR */
.artist-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* =========================
   ARTISTS SEARCH BAR
========================= */

.artists-search-bar {
  background-color: #0f4f55;
  padding: 1.25rem 0;
}

.search-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;

  padding: .65rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;

  background: rgba(255,255,255,.08);
}

.search-inner i {
  color: var(--gold);
  font-size: 1.1rem;
}

.search-inner input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;

  color: #fff;
  font-size: .95rem;
}

.search-inner input::placeholder {
  color: rgba(255,255,255,.6);
}

/* =========================
   ARTIST HERO
========================= */

.artist-hero {
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.artist-hero h1 {
  letter-spacing: .02em;
	font-weight: 900;
	text-transform: uppercase;
	margin-top: 80px;
	color: #fff;
	font-size: 4em;
}

@media (min-width: 992px) {
  .artist-hero {
    min-height: 50vh;
  }
}

.artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.artist-hero-content {
  position: relative;
  padding-bottom: 4rem;
}

.artist-name {
  color: #333;
}

.artist-content { padding: 4rem 0; }

/* =========================
   BIO
========================= */

.artist-bio {
  max-width: 820px;
}

.artist-bio h2 {
  margin-bottom: 1rem;
}

/* =========================
   GALLERY
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  border-radius: 12px;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* =========================
   VIDEOS
========================= */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

/* =========================
   CTA + SOCIALS
========================= */

.artist-cta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.artist-socials {
  display: flex;
  gap: 1.5rem;
}

.artist-socials a {
  font-size: 1.4rem;
  color: var(--gold);
}

.artist-socials a:hover {
  color: var(--gold-hover);
}

/* =========================
   ARTIST SIDEBAR
========================= */

.artist-sidebar {
  position: sticky;
  top: 120px; /* onder navbar */
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* BOXES */
.sidebar-box {
  padding: 1.5rem;
  border: 1px solid rgba(177, 160, 115, 0.25);
  border-radius: 12px;
  background-color: var(--gold-soft);
}

/* PRIJS */
.price-label {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #777;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* PERSKIT LINK */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.sidebar-link:hover {
  color: var(--gold-hover);
}

/* SOCIALS */
.sidebar-socials {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.sidebar-socials a {
  font-size: 1.9rem;
  color: var(--gold);
}

.sidebar-socials a:hover {
  color: var(--gold-hover);
}

/* MOBILE */
@media (max-width: 991px) {
  .artist-sidebar {
    position: static;
  }
}

/* =========================
   BOOKING MODAL
========================= */

.booking-modal {
  border-radius: 16px;
  border: 1px solid rgba(177,160,115,.25);
  background: #fff;
}

/* BOOKING MODAL – HEADER */
.booking-modal .modal-header {
  background-color: rgba(177, 160, 115, 0.08); /* lichte goudtint */
  border-bottom: 1px solid rgba(177, 160, 115, 0.25);
}

.booking-modal .modal-title {
  font-weight: 700;
}

/* FORM */
.booking-form .form-control,
.booking-form .form-select {
  border-radius: 8px;
  border-color: rgba(0,0,0,.15);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .15rem rgba(177,160,115,.25);
}

/* FOOTER */
.booking-modal .modal-footer {
  border-top: 1px solid rgba(0,0,0,.08);
}

/* MOBILE */
@media (max-width: 575px) {
  .modal-dialog {
    margin: 1rem;
  }
}

/* BOOKING MODAL – BODY */
.booking-modal .modal-body {
  padding: 2.5rem;
}

@media (max-width: 575px) {
  .booking-modal .modal-body {
    padding: 1.75rem;
  }
}

/* BOOKING MODAL – FOOTER BUTTONS */
.booking-modal .modal-footer {
  padding: 1.5rem 2.5rem;
  gap: 1rem;
}

.booking-modal .modal-footer .btn {
  min-width: 180px;
  justify-content: center;
}

/* =========================
   PAGE HERO (SUBPAGES)
========================= */

.page-hero {
  min-height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  align-items: center;        
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.page-hero-content {
  position: relative;
  padding-bottom: 3rem;
  padding-bottom: 0;            /* niet meer naar onder duwen */
  text-align: center;           /* H1 centreren */	
}

.page-hero h1 {
  color: #fff;
  margin-top: 60px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

/* =========================
   PAGE CONTENT
========================= */

.page-content .content-text {
  max-width: 820px;
  margin: 75px auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* =========================
   TEAM / SMOELENBOEK
========================= */

.team-section {
  padding: 75px 0;	
  background-color: rgba(177, 160, 115, 0.08);	
}

.team-section h2 {
	text-transform: uppercase;
	font-weight: 900;
}

.team-card {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px; 	
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
	
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.team-card h3 {
  margin-bottom: .25rem;
}

.team-role {
  display: block;
  font-size: .9rem;
  color: #777;
  margin-bottom: 1rem;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.team-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: .95rem;
}

.team-contact a:hover {
  color: var(--gold-hover);
}

/* =========================
   ARTISTS SEARCH BAR
========================= */

.artists-search-bar {
  background-color: #0f4f55; /* jouw groen */
  padding: 1.25rem 0;
}

.search-inner {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.search-inner i {
  color: var(--gold);
  font-size: 1.1rem;
}

.search-inner input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
}

.search-inner input::placeholder {
  color: rgba(255,255,255,.7);
}

.search-inner input:focus {
  outline: none;
}

/* =========================
   AUTOSUGGEST
========================= */

.search-suggestions {
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: hidden;
  display: none;
  z-index: 50;
}

.search-suggestions.active {
  display: block;
}

.suggestion-item {
  padding: .75rem 1.25rem;
  cursor: pointer;
  font-size: .95rem;
  transition: background-color .2s ease;
}

.suggestion-item:hover,
.suggestion-item.is-active {
  background-color: rgba(177,160,115,.08); /* light gold */
}

/* =========================
   SEARCH BAR – SELECT
========================= */

.search-inner select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding-right: 1.5rem;
  appearance: none;
  cursor: pointer;
}

.search-inner select option {
  color: #000;
}

.search-inner select:focus {
  outline: none;
}

/* kleine divider tussen input & select */
.search-inner::after {
  content: "";
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.25);
  margin: 0 .75rem;
}

/* =========================
   SEARCH FORM LAYOUT
========================= */

.search-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ALGEMEEN VAK */
.search-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.2rem;
  background-color: #0f4f55;
  border-radius: 999px;
  min-width: 380px;
}

/* ICONS */
.search-field i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* INPUT */
.search-field input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

.search-field input::placeholder {
  color: rgba(255,255,255,.7);
}

.search-field input:focus {
  outline: none;
}

/* SELECT */
.search-field select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  padding-right: 1.25rem;
}

.search-field select option {
  color: #000;
}

.search-field select:focus {
  outline: none;
}

/* PRIJS SELECT MAG IETS SMALLER */
.search-select {
  min-width: 220px;
}

/* =========================
   AUTOSUGGEST (blijft gelijk)
========================= */

.search-suggestions {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: hidden;
  display: none;
  z-index: 50;
}

.search-suggestions.active {
  display: block;
}

.suggestion-item {
  padding: .75rem 1.25rem;
  cursor: pointer;
  font-size: .95rem;
}

.suggestion-item:hover,
.suggestion-item.is-active {
  background-color: rgba(177,160,115,.08);
}

/* =========================
   SEARCH FIELDS – GOLD BORDER
========================= */

.search-field {
  border: 1px solid var(--gold);
  transition: border-color .25s ease, box-shadow .25s ease;
}

/* Hover */
.search-field:hover {
  border-color: var(--gold-hover);
}

/* Focus (als input/select actief is) */
.search-field:focus-within {
  border-color: var(--gold-hover);
  box-shadow: 0 0 0 1px rgba(219,209,181,.35);
}

/* SELECT – zelfde tekstkleur als input */
.search-field select {
  color: #fff;              /* exact gelijk aan input */
}

.search-field select option {
  color: #000;              /* dropdown zelf blijft leesbaar */
}

/* =========================
   PRICE RANGE FIELD
========================= */

.search-price-range {
  gap: .6rem;
  min-width: 360px;
  white-space: nowrap;
	color: #ccc;
}

.price-label {
  color: var(--gold);
  font-weight: 500;
}

.price-text {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}

/* Selects compacter maken */
.search-price-range select {
  min-width: 90px;
  padding: 0;
  font-size: .95rem;
  color: #fff;
	border-bottom: 1px dashed var(--gold);
}

/* Dropdown opties */
.search-price-range select option {
  color: #000;
}


.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Tablet */
@media (min-width: 768px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  body:not(.is-home) .navbar-collapse {
    display: none !important;
  }
}


/* Card container */
.artist-card {
  display: block;
  width: 100%;
}

/* Vaste beeldverhouding */
.artist-card .artist-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* vierkant, pas aan indien nodig */
  overflow: hidden;
  border-radius: 16px; /* jouw stijl */
}

/* Afbeelding vult altijd volledig */
.artist-card .artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* KEY */
  object-position: center;
  display: block;
}

.price-request-toggle{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin-left:.8rem;
  cursor:pointer;
  font-size:.9rem;
  color:#b1a073;
  user-select:none;
}

.price-request-toggle input{
  appearance:none;
  width:18px;
  height:18px;
  border:2px solid #b1a073;
  border-radius:4px;
  position:relative;
  cursor:pointer;
  transition:.2s;
}

.price-request-toggle input:checked{
  background:#0f4f55;
  border-color:#0f4f55;
}

.price-request-toggle input:checked::after{
  content:"";
  position:absolute;
  inset:3px;
  background:#b1a073;
}

/* prijs filter container */
.search-price-range{
  display:flex;
  align-items:center;
  gap:.6rem;
  flex-wrap:wrap;              /* 🔑 belangrijk */
}

/* checkbox blok */
.search-price-range .price-checkbox{
  display:flex;
  align-items:center;
  gap:.4rem;
  white-space:nowrap;
}


/* ===== MOBILE ===== */
@media (max-width:768px){

  .search-price-range{
    row-gap:.6rem;
  }

  /* checkbox op eigen regel onder prijs */
  .search-price-range .price-checkbox{
    width:100%;
	text-align: center;
    margin-top:.25rem;
  }

}

/* ===============================
   PAGINATION
================================ */

.pagination{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:3rem;
}

/* basis knop */
.pagination .page-link{
  min-width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  font-weight:500;
  border-radius:6px;

  transition:all .25s ease;
  background:transparent;
}

/* hover */
.pagination .page-link:hover{
  background:var(--gold);
  color:#000;
  transform:translateY(-2px);
}

/* active */
.pagination .page-link.active{
  background:#0f4f55;
  border-color:#0f4f55;
  color:#fff;
  font-weight:600;
}

/* disabled (optioneel voor later) */
.pagination .page-link.disabled{
  opacity:.35;
  pointer-events:none;
}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

  .pagination{
    gap:.4rem;
    margin-top:2rem;
  }

  .pagination .page-link{
    min-width:38px;
    height:38px;
    font-size:.9rem;
  }

}

