:root {
  --bg-body: #020617;
  --accent: #f97316;
  --accent-2: #ec4899;
  --accent-3: #6366f1;
  --accent-gold: #fbbf24;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
html { scroll-behavior: smooth; }
body { background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%); color: var(--text-main); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.85);
}

/* ============================= */
/* NAV (desktop: alles 1 regel)  */
/* ============================= */
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a { opacity: 0.9; position: relative; padding-bottom: 0.2rem; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-2));
  transition: width 0.18s ease-out;
}
.nav-links a:hover::after { width: 100%; }

.nav-right{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
}

.nav-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -6px;
}

.nav-logo img{
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
  opacity: .98;
  display: block;
}

.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: 0 12px 30px rgba(248, 113, 22, 0.55);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(234, 179, 8, 0.55); filter: brightness(1.05); }

.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-outline:hover { background: rgba(15, 23, 42, 0.95); border-color: var(--accent-gold); color: var(--accent-gold); }

main { max-width: 1100px; margin: 0 auto; padding: 1.5rem; }
section { padding: 4rem 0 3.25rem; border-bottom: 1px solid rgba(30, 64, 175, 0.32); scroll-margin-top: 110px; }

.section-alt {
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.5), rgba(15, 23, 42, 0.98));
  border-radius: 1.6rem;
  padding: 2.3rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-top: 2.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.hero { position: relative; margin-top: 2rem; }

/* =========================== */
/* HERO – achtergrondafbeelding */
/* =========================== */
.hero-full {
  position: relative;
  min-height: 90vh;
  border-radius: 1.8rem;
  overflow: hidden;

  background-image:
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.75) 40%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    radial-gradient(
      circle at top left,
      rgba(249, 115, 22, 0.45),
      transparent 55%
    ),
    radial-gradient(
      circle at top right,
      rgba(236, 72, 153, 0.35),
      transparent 55%
    ),
    url('/youri-hero.jpg');

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 40%;

  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(248, 250, 252, 0.15);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 2.8rem 2.2rem 2.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.45);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.8rem;
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
}
.badge-dot { width: 7px; height: 7px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 14px rgba(34, 197, 94, 0.9); }

.hero-title { font-size: clamp(2.4rem, 4.2vw, 3.3rem); font-weight: 900; margin-bottom: 1rem; letter-spacing: 0.04em; }
.hero-title span { background: linear-gradient(135deg, #fef3c7, #facc15, #fb7185, #a855f7); -webkit-background-clip: text; color: transparent; }
.hero-sub { font-size: 1rem; color: #fef9c3; margin-bottom: 1.5rem; max-width: 34rem; }
.hero-meta { font-size: 0.9rem; color: #f9fafb; margin-top: 1.5rem; max-width: 32rem; }

.section-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 65%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-2), var(--accent-3));
}
.section-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 44rem; }

.bio-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 2rem; }
.bio-text { font-size: 0.98rem; color: #e5e7eb; white-space: normal; }
.bio-p { margin: 0 0 0.9rem 0; }
.bio-p:last-child { margin-bottom: 0; }

.bio-photo {
  width: 300px;
  height: 420px;
  justify-self: end;
  border-radius: 22px;
  overflow: hidden;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  /* ✅ gezicht weer in beeld */
  object-position: center 50%;

  /* ✅ minder agressief inzoomen (voorkomt “kop eraf”) */
  transform: scale(1.00);
  transform-origin: center;

  background: #ffffff;
}

}

.ref-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; }
.ref-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  padding: 1rem;
  background: rgba(15, 23, 42, 0.97);
  font-size: 0.9rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}
.ref-card strong { font-size: 0.85rem; color: #e5e7eb; }
.stars { color: var(--accent-gold); font-size: 0.85rem; margin-bottom: 0.3rem; }

.review-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 1.2rem;
  margin-top: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.86rem; }
.form-group label { color: #e5e7eb; }

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.9rem;
}
.review-form textarea { min-height: 120px; resize: vertical; }
.review-form small { color: var(--text-muted); font-size: 0.78rem; }

.form-success, .form-error {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
}
.form-success { background: rgba(22, 163, 74, 0.15); border: 1px solid rgba(22, 163, 74, 0.6); color: #bbf7d0; }
.form-error { background: rgba(220, 38, 38, 0.15); border: 1px solid rgba(220, 38, 38, 0.6); color: #fecaca; }

.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.package-card {
  border-radius: 1.4rem;
  padding: 1.3rem;
  background: radial-gradient(circle at top, rgba(248, 113, 22, 0.28), rgba(30, 64, 175, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
}
.package-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.1rem; }
.package-time { font-size: 0.85rem; color: #e5e7eb; margin-bottom: 0.5rem; }
.package-price { font-weight: 700; margin-top: 0.5rem; margin-bottom: 0.8rem; color: #fed7aa; }
.package-features { list-style: none; font-size: 0.88rem; color: #e5e7eb; }
.package-features li::before { content: "• "; color: var(--accent); }

/* ============================= */
/* FIX: geen horizontale page-scroll */
/* ============================= */
html, body { overflow-x: hidden; }

/* ---- Sliders ---- */
.slider-wrap { position: relative; padding: 0 56px; }
.slider {
  display: flex;
  gap: 1.2rem;
  padding: 0.2rem 0;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider::-webkit-scrollbar { width: 0; height: 0; display: none; }

.slider-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(148,163,184,.7);
  background:rgba(15,23,42,.75);
  color:#f9fafb; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px rgba(15,23,42,.75);
  z-index:5;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.slider-wrap.has-overflow .slider-btn { opacity: 1; pointer-events: auto; }
.slider-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.slider-left{ left:10px; }
.slider-right{ right:10px; }

/* ============================= */
/* INSTAGRAM – GROOT (terug)     */
/* ============================= */
/* gebruik in HTML: <div class="slider ig-slider"> ... */
.ig-slider { gap: 1.4rem; }

/* grote premium card */
.ig-card{
  flex: 0 0 calc((100% - 2.8rem)/3);   /* ✅ 3 naast elkaar op desktop */
  min-width: 360px;                    /* ✅ groter */
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(2,6,23,0.98));
  box-shadow: 0 22px 55px rgba(15,23,42,0.95);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* wrapper voorkomt rare scrollbars in de iframe */
.ig-frame-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.ig-frame-wrap iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  background: #000;
}

/* caption */
.ig-cap{
  padding: .85rem 1rem;
  color: #e5e7eb;
  font-size: .9rem;
  border-top: 1px solid rgba(148,163,184,.22);
  background: rgba(15,23,42,.95);
}

/* Agenda cards */
.ag-card{
  flex: 0 0 calc((100% - 3rem)/4);
  min-width: 220px;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.45), rgba(15, 23, 42, 0.97));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  padding: 0.85rem;
}
.ag-date{ font-weight:800; color: var(--accent-gold); font-size: .92rem; }
.ag-title{ font-weight:800; margin-top:.2rem; font-size: .95rem; }
.ag-meta{ color: var(--text-muted); font-size:.84rem; margin-top:.35rem; }
.ag-note{ color:#e5e7eb; font-size:.88rem; margin-top:.55rem; }

/* YouTube cards */
.yt-card{
  flex: 0 0 calc((100% - 2rem)/3);
  min-width: 320px;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}
.yt-iframe{
  width:100%;
  aspect-ratio: 16 / 9;
  border:0;
  display:block;
  background:rgba(15,23,42,.95);
}
.yt-cap{
  padding:.8rem .95rem;
  border-top:1px solid rgba(148,163,184,.22);
}
.yt-title{ font-weight:800; }
.yt-text{ color: var(--text-muted); font-size:.9rem; margin-top:.25rem; }

footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  font-size: 0.8rem;
  color: #6b7280;
}
footer a { color: #9ca3af; text-decoration: underline; text-decoration-style: dotted; }

@media (max-width: 980px){
  .ag-card { flex:0 0 calc((100% - 1rem)/2); }
  .yt-card { flex:0 0 calc((100% - 1rem)/2); }
  .bio-photo { justify-self: start; width: 340px; height: 420px; }
  .slider-wrap { padding: 0 54px; }

  /* ✅ Instagram op tablet: 2 naast elkaar */
  .ig-card{ flex: 0 0 calc((100% - 1rem)/2); min-width: 320px; }

  .nav-links { flex-wrap: wrap; white-space: normal; }
  .nav-logo img { height: 92px; }
}

@media (max-width: 540px){
  .ig-card, .ag-card, .yt-card { flex:0 0 100%; min-width: 0; }
  .slider-wrap { padding: 0 48px; }
  .slider-left{ left:6px } .slider-right{ right:6px }
  .bio-photo { width: 100%; height: 420px; }
  .bio-photo img { object-position: center 70%; transform: scale(1.10); }

  /* ✅ Instagram op mobiel: vierkant voelt nicer */
  .ig-frame-wrap{ aspect-ratio: 1 / 1; }
}

@media (max-width: 768px) {
  .hero-full { background-position: center 55%; }
  .hero-inner { padding: 2.4rem 1.5rem 2rem; }
}

@media (max-width: 800px) {
  .nav { flex-wrap: wrap; align-items: flex-start; }
  .nav-right { width: 100%; justify-content: flex-start; }
  .section-alt { margin-top: 2rem; padding: 2.2rem 1.5rem; }
  .nav-logo img { height: 78px; }
}
/* Admin login – finetune, bovenop site.css */

.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

/* wrapper */
.auth-wrap {
  width: 100%;
  display: grid;
  place-items: center;
}

/* card */
.auth-card {
  width: min(520px, 92vw);
  background: linear-gradient(180deg, rgba(15,23,42,.82), rgba(2,6,23,.88));
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  padding: 22px 22px 18px;
}

.auth-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.auth-logo {
  width: 84px;            /* grootte logo in card */
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.5));
  opacity: .98;
}

.auth-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .02em;
}

/* form */
.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

/* toegankelijk label verbergen */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* input field wrapper */
.field {
  position: relative;
  width: 100%;
}

/* inputs strak binnen card houden */
.field input {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 12px 46px 12px 14px; /* ruimte rechts voor icon */
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.40);
  background: rgba(2,6,23,.70);
  color: #e5e7eb;
  outline: none;
  line-height: 1.2;
}

.field input::placeholder {
  color: rgba(229,231,235,.55);
}

.field input:focus {
  border-color: rgba(251,191,36,.75);
  box-shadow: 0 0 0 4px rgba(251,191,36,.15);
}

/* icon rechts in veld */
.field-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(248,250,252,.10);
  border: 1px solid rgba(148,163,184,.28);
  font-size: 14px;
  opacity: .95;
  pointer-events: none;
}

/* button breder en strak */
.auth-submit {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
}

/* debug */
.auth-debug {
  margin-top: 6px;
  font-size: .82rem;
  color: rgba(156,163,175,.95);
}

/* kleine screens */
@media (max-width: 420px) {
  .auth-card { padding: 18px 16px 14px; }
  .auth-logo { width: 74px; height: 74px; }
}
/* Admin dashboard – zelfde vibe als admin-login.css + site.css */

.admin-auth{
  min-height: 100vh;
}

/* topbar */
.admin-topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.admin-topbar-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* brand */
.admin-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.admin-brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
  opacity: .98;
}
.admin-brand-text{ min-width: 0; }
.admin-brand-title{
  font-weight: 900;
  letter-spacing: .02em;
}
.admin-brand-sub{
  color: rgba(156,163,175,.95);
  font-size: .9rem;
  margin-top: 2px;
}

/* buttons */
.admin-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-btn{ white-space: nowrap; }

/* main */
.admin-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 16px 40px;
}

.admin-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* card */
.admin-card{
  background: linear-gradient(180deg, rgba(15,23,42,.82), rgba(2,6,23,.90));
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  padding: 18px;
}

.admin-card-title{
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.admin-card-sub{
  margin: 0 0 14px 0;
  color: rgba(156,163,175,.95);
  font-size: .92rem;
}

/* status list */
.status-list{
  display: grid;
  gap: 10px;
}

.status-row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.40);
}

.status-label{
  color: rgba(229,231,235,.90);
  font-size: .9rem;
  font-weight: 700;
}

.status-value{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .92rem;
}

.status-path{
  color: rgba(156,163,175,.95);
  font-size: .85rem;
  word-break: break-word;
}

/* pills */
.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid rgba(148,163,184,.22);
}
.pill-ok{
  color: #bbf7d0;
  background: rgba(22,163,74,.14);
  border-color: rgba(22,163,74,.42);
}
.pill-bad{
  color: #fecaca;
  background: rgba(220,38,38,.14);
  border-color: rgba(220,38,38,.42);
}

.admin-hint{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15,23,42,.45);
  border: 1px solid rgba(148,163,184,.18);
  color: rgba(229,231,235,.92);
  font-size: .88rem;
}

/* tiles */
.admin-tiles{
  display: grid;
  gap: 10px;
}

.tile{
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.20);
  background: rgba(2,6,23,.40);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.tile:hover{
  transform: translateY(-1px);
  border-color: rgba(251,191,36,.40);
  background: rgba(2,6,23,.52);
}

.tile-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: .06em;
  background: radial-gradient(circle at top left, rgba(251,191,36,.22), rgba(236,72,153,.14));
  border: 1px solid rgba(148,163,184,.18);
}

.tile-title{
  font-weight: 900;
}
.tile-sub{
  margin-top: 2px;
  color: rgba(156,163,175,.95);
  font-size: .9rem;
}
.tile-arrow{
  font-size: 1.2rem;
  opacity: .9;
}

/* responsive */
@media (max-width: 920px){
  .admin-grid{ grid-template-columns: 1fr; }
  .status-row{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .admin-topbar-inner{ flex-direction: column; align-items: flex-start; }
}
/* =========================
   AGENDA – zelfde kleur vibe als pakketten (paars/roze)
   ========================= */
.agenda-month-card{
  margin-top: 1.5rem;
  padding: 1.6rem 1.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(248,250,252,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.38);
  background:
    radial-gradient(circle at top left, rgba(236,72,153,.18), transparent 55%),
    radial-gradient(circle at top right, rgba(168,85,247,.20), transparent 55%),
    linear-gradient(180deg, rgba(88,28,135,.45), rgba(15,23,42,.92));
  overflow: hidden;
  position: relative;
}
.agenda-month-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 10%, rgba(217,70,239,.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,.12), transparent 55%);
  pointer-events:none;
  opacity:.9;
}
.agenda-list{
  position: relative;
  display:flex;
  flex-direction:column;
  gap:0.2rem;
  border-top: 1px solid rgba(248,250,252,.10);
}

.agenda-row{
  display:flex;
  align-items:center;
  gap: 1.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(248,250,252,.08);
}

.agenda-datebox{
  min-width: 62px;
  text-align: left;
  line-height: 1.05;
}
.agenda-day{
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: .01em;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  color: transparent;
}
.agenda-month{
  font-size: 0.80rem;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  color: rgba(229,231,235,.70);
  margin-top: 2px;
}

.agenda-body{
  flex: 1;
  display:flex;
  flex-direction:column;
  gap: 0.25rem;
  min-width: 0;
}
.agenda-title{
  font-weight: 800;
  font-size: 0.98rem;
  color: #f9fafb;
}
.agenda-repeat{
  font-size: 0.78rem;
  color: rgba(229,231,235,.65);
  font-weight: 600;
}
.agenda-meta{
  font-size: 0.90rem;
  color: rgba(229,231,235,.70);
  display:flex;
  align-items:center;
  gap: .45rem;
  flex-wrap:wrap;
}
.agenda-note{
  font-size: 0.88rem;
  color: rgba(229,231,235,.92);
}

@media (max-width: 540px){
  .agenda-row{ gap: .9rem; }
  .agenda-datebox{ min-width: 56px; }
}

