/* ============================================================
   DIERENS VERHUUR — MAIN CSS
   Custom Properties, Reset, Typography, Layout, Buttons
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Kleuren */
  --primary:          #F47B20;
  --primary-light:    #F89540;
  --primary-dark:     #D4640D;
  --accent:           #1E3A5F;
  --accent-hover:     #162D4E;
  --gold:             #F5A623;
  --success:          #22C55E;
  --danger:           #EF4444;
  --dark:             #1A1A2A;
  --gray:             #6B7280;
  --light-gray:       #F3F4F6;
  --light:            #FFF5EE;
  --border:           #E5E7EB;
  --white:            #FFFFFF;
  --overlay:          rgba(26, 26, 42, 0.72);

  /* Typografie */
  --font-heading:     'Poppins', sans-serif;
  --font-body:        'Inter', sans-serif;

  /* Layout */
  --container-max:    1280px;
  --container-pad:    clamp(1rem, 4vw, 2rem);
  --container-narrow: 760px;

  /* Border radius */
  --radius-sm:        4px;
  --radius:           10px;
  --radius-lg:        18px;
  --radius-xl:        28px;
  --radius-full:      9999px;

  /* Schaduwen */
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.08);
  --shadow:           0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:        0 10px 40px rgba(0,0,0,0.14);
  --shadow-xl:        0 20px 60px rgba(0,0,0,0.18);
  --shadow-card:      0 2px 12px rgba(26,26,42,0.08);
  --shadow-card-hover:0 8px 32px rgba(244,123,32,0.18);

  /* Transities */
  --transition:       0.3s ease;
  --transition-fast:  0.15s ease;

  /* Header */
  --topbar-height:    40px;
  --header-height:    90px;
  --total-header:     calc(var(--topbar-height) + var(--header-height));

  /* Secties */
  --section-py:       clamp(3rem, 7vw, 5rem);
  --section-py-sm:    clamp(1.5rem, 3vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--primary-dark); }
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

ul, ol { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ---- Typografie ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

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

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}
.section        { padding: var(--section-py) 0; }
.section-sm     { padding: var(--section-py-sm) 0; }
.section-bg-light { background-color: var(--light-gray); }
.section-bg-accent { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); }
.section-bg-accent h2, .section-bg-accent h3 { color: var(--white); }
.section-bg-accent .section-label { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.text-center  { text-align: center; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-4 { margin-top: 2rem; }

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border: 1.5px solid currentColor;
  border-radius: var(--radius-full);
  padding: 0.2em 0.85em;
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.section-subtitle {
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}
.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---- Knoppen ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,123,32,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ---- Header topbar ---- */
.header-topbar {
  background: var(--accent);
  color: var(--white);
  height: var(--topbar-height);
  font-size: 0.8125rem;
}
.header-topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}
.header-topbar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
}
.header-topbar__link {
  text-decoration: none;
  transition: color var(--transition-fast);
}
.header-topbar__link:hover { color: var(--primary-light); }
.header-topbar__inner .header-topbar__item:first-child { margin-right: auto; }

/* ---- Header main ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow);
}
.header-spacer {
  height: var(--total-header);
}
.header-main {
  height: var(--header-height);
}
.header-main__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  padding: 0.5rem 0;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo__link {
  display: flex;
  align-items: center;
}
.site-logo__link img { height: 74px; width: auto; max-width: 260px; object-fit: contain; }
.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* Nav */
.site-nav { flex: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-menu .menu-item a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}
.nav-menu .menu-item a:hover,
.nav-menu .menu-item.current-menu-item a,
.nav-menu .menu-item.current-menu-ancestor a {
  color: var(--primary);
  background: var(--light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}
.header-main__cta { flex-shrink: 0; }
.header-main__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Homepage hero — hoogte bepaald door afbeelding */
.hero--home {
  background: linear-gradient(135deg, var(--accent) 0%, #142540 100%);
  color: var(--white);
  display: block; /* img bepaalt hoogte */
}

/* Kleine hero (interne pagina's) */
.hero--small {
  min-height: 260px;
}
.hero--gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #142540 100%);
  color: var(--white);
}
.hero--light {
  background: var(--light-gray);
}
.hero--success {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: var(--white);
}

/* Hero achtergrond IMG (homepage) — volledige breedte, hoogte door beeld */
.hero__bg-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(45%) brightness(0.9);
}

/* Overlay over de afbeelding */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,37,64,0.62);
  z-index: 1;
}
.hero--gradient .hero__overlay,
.hero--light .hero__overlay,
.hero--success .hero__overlay { display: none; }

/* Deprecated .hero__bg (kleine hero's zonder img-element) */
.hero__bg { display: none; }

/* Tekstlaag boven afbeelding */
.hero__container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Voor kleine hero's: .hero__container is gewoon in de flow */
.hero--small .hero__container,
.hero--gradient .hero__container,
.hero--light .hero__container,
.hero--success .hero__container {
  position: relative;
  inset: auto;
  display: block;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.hero__content { max-width: 640px; }
.hero__content--center { text-align: center; margin: 0 auto; }
.hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}
.hero--light .hero__label { color: var(--primary); }
.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero--light .hero__title { color: var(--dark); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero--light .hero__subtitle { color: var(--gray); }
.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero__content--center .hero__actions { justify-content: center; }
.hero__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero__content--center .hero__badges { justify-content: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-full);
}

/* ---- Grid systeem ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ---- Two column layout ---- */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col-layout--reverse { direction: rtl; }
.two-col-layout--reverse > * { direction: ltr; }

/* ---- Prose (rich text) ---- */
.prose h2 { margin: 1.5em 0 0.5em; }
.prose h3 { margin: 1.25em 0 0.4em; }
.prose p  { margin-bottom: 1em; color: var(--gray); }
.prose ul, .prose ol { padding-left: 1.25em; margin-bottom: 1em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.35em; color: var(--gray); }
.prose a  { color: var(--primary); text-decoration: underline; }
.prose-center { text-align: center; }

/* ---- Checklist ---- */
.checklist { padding: 0; }
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Breadcrumb ---- */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.8125rem;
}
.breadcrumb__item { display: flex; align-items: center; }
.breadcrumb__link { color: var(--gray); }
.breadcrumb__link:hover { color: var(--primary); }
.breadcrumb__sep { margin: 0 0.4rem; color: var(--border); font-size: 1.1em; }
.breadcrumb__current { color: var(--dark); font-weight: 500; }

/* ---- Tags ---- */
.tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  border: 1px solid rgba(244,123,32,0.25);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---- Status badges ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35em 0.85em;
  border-radius: var(--radius-full);
}
.status-badge--available { background: #dcfce7; color: #16a34a; }
.status-badge--unavailable { background: #fee2e2; color: #dc2626; }

/* ---- Success icon ---- */
.success-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

/* ---- Info box ---- */
.info-box {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-box__icon {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: var(--radius);
}
.info-box__content h3 { margin-bottom: 0.35rem; }
.info-box__content p { color: var(--gray); margin-bottom: 0.75rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-banner__subtitle {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.cta-banner__meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.cta-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---- Pickup banner ---- */
.pickup-banner {
  background: #FFF3CD;
  border-top: 1px solid #F5A623;
  border-bottom: 1px solid #F5A623;
  padding: 1rem 0;
}
.pickup-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pickup-banner__icon { color: var(--gold); font-size: 1.25rem; flex-shrink: 0; }
.pickup-banner__text { flex: 1; font-size: 0.9375rem; }

/* ---- USP Bar ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.usp-item__icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.usp-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.usp-item__text { font-size: 0.85rem; color: var(--gray); }

/* ---- Footer ---- */
.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
}
.footer-main { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
}
.footer-col__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col__subtitle {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.25rem 0 0.75rem;
}
.footer-logo img { filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.footer-logo--text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: background var(--transition-fast);
}
.footer-social__link:hover { background: var(--primary); color: var(--white); }
.footer-social__link--whatsapp:hover { background: #25D366; }
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; }
.footer-contact-list i { color: var(--primary-light); margin-top: 0.15em; flex-shrink: 0; width: 1.1em; }
.footer-contact-list a { color: rgba(255,255,255,0.85); }
.footer-contact-list a:hover { color: var(--primary-light); }
.footer-contact-list span { color: rgba(255,255,255,0.75); }
.footer-hours { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.875rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-hours__day { color: rgba(255,255,255,0.65); }
.footer-hours__time { color: var(--white); font-weight: 500; }
.footer-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
}
.footer-notice i { color: var(--primary-light); }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.footer-copyright a { color: rgba(255,255,255,0.7); }
.footer-copyright a:hover { color: var(--primary-light); }
.footer-bottom-nav { display: flex; gap: 1rem; }
.footer-bottom-nav a { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.footer-bottom-nav a:hover { color: rgba(255,255,255,0.9); }

/* ---- Hover effect ---- */
.card-hover {
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* ---- Overige ---- */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
}
.empty-state__icon {
  font-size: 3.5rem;
  color: var(--border);
  margin-bottom: 1rem;
}

.admin-notice { padding: 0.5rem; }
