:root{
  --bg:#050509;
  --bg-alt:#0b0b10;
  --card:#11121a;
  --card-soft:#171826;
  --accent:#e11d48;
  --accent-soft:rgba(225,29,72,0.18);
  --accent-grad:linear-gradient(135deg,#e11d48,#f97316);
  --text:#f9fafb;
  --muted:#9ca3af;
  --border:#1f2933;
  --radius-lg:18px;
  --radius-xl:26px;
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  background:radial-gradient(circle at top,#111827 0,#020617 52%,#020617 100%);
  color:var(--text);
  line-height:1.6;
}
a{color:#bae6fd;text-decoration:none}
a:hover{text-decoration:none}
img{max-width:100%;display:block}

/* Layout container */
.container,
main{
  max-width:1650px;
  margin:0 auto;
  padding:0 32px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(16px);
  background:linear-gradient(to bottom,rgba(15,23,42,0.96),rgba(15,23,42,0.9),transparent);
  border-bottom:1px solid rgba(148,163,184,0.18);
  box-shadow:0 4px 20px rgba(0,0,0,0.4);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header-inner{
  max-width:1650px;
  margin:0 auto;
  padding:14px 24px 16px; /* iets compacter */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
}

/* Logo */
.centered-logo img.logo{
  height:auto;
  width:550px;           /* minder breed */
  max-width:80vw;        /* op kleine schermen nooit breder dan viewport */
  border-radius:18px;
  box-shadow:0 0 0 1px rgba(148,163,184,0.1);
  transition:transform 0.2s ease;
}
.centered-logo img.logo:hover{
  transform:scale(1.03);
}

/* Menu */
.centered-menu{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:26px;
  margin-top:10px;
}
.centered-menu a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s ease;
}
.centered-menu a:hover {
  color: var(--text);
}
.centered-menu a::after {
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--accent-grad);
  transition:width .18s ease;
}
.centered-menu a:hover::after {
  width:100%;
}

@media(max-width:800px){
  .centered-logo img.logo{
    height:80px;
    width:auto;
  }
  .centered-menu{
    gap:14px;
  }
  .centered-menu a{
    font-size:14px;
  }
}

/* Generiek brand-blok (voor als het nog ergens gebruikt wordt) */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo{
  height:200px;
  width:auto;
  border-radius:16px;
  box-shadow:0 0 0 1px rgba(148,163,184,0.1);
}
@media(max-width:700px){
  .logo{height:80px}
}
.brand-text h1{
  font-size:18px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.brand-text p{
  font-size:12px;
  color:var(--muted);
}

/* Oude nav (admin/header) */
nav a{
  margin-left:14px;
  font-size:14px;
  color:var(--muted);
  text-decoration:none;
  position:relative;
}
nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--accent-grad);
  transition:width .18s ease;
}
nav a:hover{
  color:var(--text);
}
nav a:hover::after{width:100%}

/* Buttons */
.btn,button{
  border:none;
  background:var(--accent-grad);
  color:white;
  border-radius:999px;
  padding:8px 16px;
  font-size:14px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.55);
  transition:transform .12s ease,box-shadow .12s ease,background .2s ease;
}
.btn:hover,button:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(0,0,0,.65);
}
.btn-outline{
  background:transparent;
  border:1px solid var(--border);
  color:var(--muted);
  box-shadow:none;
}
.btn-outline:hover{
  border-color:var(--accent);
  color:var(--text);
}

/* Hero (indien gebruikt) */
.hero{
  margin-top:8px;
  margin-bottom:24px;
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:radial-gradient(circle at top,var(--accent-soft),#020617 52%,#020617 100%);
  border:1px solid rgba(148,163,184,.2);
  box-shadow:0 24px 80px rgba(15,23,42,.8);
}
.hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
  gap:18px;
  padding:22px 22px 22px 22px;
}
.hero-copy h2{
  font-size:32px;
  line-height:1.1;
  margin-bottom:10px;
}
.hero-copy p{
  color:var(--muted);
  max-width:420px;
  font-size:14px;
}
.hero-meta{
  display:flex;
  gap:18px;
  margin-top:18px;
  flex-wrap:wrap;
}
.hero-pill{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.8);
  border:1px solid rgba(148,163,184,.3);
  font-size:11px;
  color:var(--muted);
}
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-stat{
  font-size:11px;
  color:var(--muted);
}
.hero-image-wrap{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  background:radial-gradient(circle at top,#1f2937 0,#020617 70%);
}
.hero-tag{
  position:absolute;
  left:14px;
  top:14px;
  background:rgba(15,23,42,.85);
  border-radius:999px;
  padding:4px 10px;
  font-size:11px;
  color:var(--muted);
  border:1px solid rgba(148,163,184,.35);
}
.hero-main-img{
  width:100%;
  height:260px;
  object-fit:cover;
  transform:scale(1.03);
}
@media(max-width:700px){
  .hero-inner{grid-template-columns:1fr}
  .hero-image-wrap{height:220px}
  .hero-main-img{height:220px}
}

/* Secties, filter, badges */
.section-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.section-heading h2{
  font-size:18px;
}
.section-heading small{
  color:var(--muted);
  font-size:12px;
}
.filterbar{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
  margin:4px 0 16px;
}
.filterbar strong{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(148,27,27,.65);
  color:#fee2e2;
  margin:2px 2px;
  font-size:11px;
  text-decoration:none;
}
.badge:hover{
  text-decoration:none;
  background:#b91c1c;
}
.badge-soft{
  background:rgba(30,64,175,.4);
  color:#dbeafe;
}

/* Grid kaarten (home) */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px;
}
.card{
  background:var(--card);
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,.9);
  overflow:hidden;
  position:relative;
  text-decoration:none;
  color:inherit;
  box-shadow:0 16px 55px rgba(0,0,0,.7);
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 80px rgba(0,0,0,.85);
  border-color:rgba(248,113,113,.8);
}
.card-thumb{
  position:relative;
  height:180px;
  background-size:cover;
  background-position:center;
}
.card-thumb::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(15,23,42,.82),transparent);
}
.card-chip{
  position:absolute;
  left:10px;
  bottom:10px;
  padding:4px 8px;
  font-size:11px;
  border-radius:999px;
  background:rgba(15,23,42,.8);
  color:#e5e7eb;
  border:1px solid rgba(148,163,184,.45);
}
.card-body{
  padding:10px 12px 12px;
}
.card-body h3{
  font-size:15px;
  margin-bottom:4px;
}
.card-body p{
  font-size:13px;
  color:var(--muted);
}

/* Post basis */
.post{
  margin-top:8px;
}
.post h1{
  font-size:26px;
  margin-bottom:6px;
}
.catline{
  margin-bottom:6px;
}

/* Gallerij/masonry (oude) */
.gallery{
  margin:18px 0;
}
.masonry{
  column-count:1;
  column-gap:10px;
}
@media(min-width:700px){.masonry{column-count:2}}
@media(min-width:1000px){.masonry{column-count:3}}
.masonry .ph-item{
  break-inside:avoid;
  margin-bottom:10px;
  position:relative;
}
.masonry img{
  width:100%;
  border-radius:16px;
}

/* EXIF & tags (als nog ergens gebruikt) */
.exif-toggle{
  margin:4px 0 10px;
  background:var(--card-soft);
  border-radius:999px;
  padding:6px 14px;
  font-size:13px;
}
.exif{
  position:absolute;
  left:10px;
  bottom:10px;
  background:rgba(0,0,0,.7);
  color:#e5e7eb;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  display:flex;
  gap:6px;
}
.tags{
  margin:10px 0 18px;
  font-size:13px;
}
.tags strong{
  margin-right:4px;
}

/* Formulieren – algemeen (bestaande .form) */
.form{
  max-width:100%;
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.form label{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:6px 0 10px;
  font-size:14px;
  color:#e5e7eb;
}
.form input,
.form textarea,
.form select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,0.25);
  background:rgba(15,23,42,0.75);
  color:var(--text);
  font-size:14px;
  box-shadow:inset 0 0 0 1px rgba(148,163,184,0.08);
  transition:border-color .15s,box-shadow .15s,background .15s,transform .05s;
}
.form input::placeholder,
.form textarea::placeholder{
  color:#94a3b8;
  opacity:.9;
}
.form input:hover,
.form textarea:hover,
.form select:hover{
  border-color:rgba(248,113,113,0.35);
}
.form input:focus,
.form textarea:focus,
.form select:focus{
  outline:none;
  border-color:rgba(248,113,113,0.65);
  box-shadow:0 0 0 4px rgba(248,113,113,0.14),inset 0 0 0 1px rgba(248,113,113,0.25);
  background:rgba(15,23,42,0.9);
}
.form textarea{
  border-radius:16px;
  min-height:170px;
  line-height:1.6;
  resize:vertical;
}

/* tabellen, comments, flash */
.table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
  background:var(--card);
  border-radius:16px;
  overflow:hidden;
}
.table th,.table td{
  padding:8px 10px;
  border-bottom:1px solid var(--border);
  font-size:13px;
}
.table th{
  background:var(--card-soft);
  text-align:left;
}
.comment{
  padding:8px 0;
  border-bottom:1px solid rgba(31,41,55,.6);
}
.comment strong{font-size:13px}
.comment p{font-size:13px;color:var(--muted)}
.flash{
  background:var(--accent-soft);
  border:1px solid rgba(248,113,113,.7);
  color:#fecaca;
  padding:8px 12px;
  border-radius:999px;
  margin:10px 0;
  font-size:13px;
}

/* Footer */
.site-footer{
  padding:18px 16px 26px;
  border-top:1px solid rgba(30,64,175,.35);
  text-align:center;
  color:var(--muted);
  font-size:12px;
  background:radial-gradient(circle at top,#0b1120 0,#020617 65%,#020617 100%);
}
.site-footer a{color:var(--muted)}
.site-footer a:hover{color:#e5e7eb}

/* Admin header */
.admin-header{
  background:rgba(15,23,42,.96);
  border-bottom:1px solid rgba(30,64,175,.5);
  padding:10px 16px;
}
.admin-header h1{font-size:18px}
.admin-header nav a{margin-right:10px}

/* ABOUT blok op home */
.aboutme{
  border-radius:22px;
  background:radial-gradient(circle at top left,rgba(225,29,72,0.1),rgba(15,23,42,0.6));
  border:1px solid rgba(148,163,184,0.2);
  box-shadow:0 16px 50px rgba(0,0,0,0.5);
  padding:24px;
}
.about-inner{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:24px;
  max-width:900px;
}
.about-photo img{
  width:220px;
  height:220px;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 12px 35px rgba(0,0,0,0.6);
}
.about-text h2{
  font-size:24px;
  margin-bottom:10px;
  background:linear-gradient(135deg,#e11d48,#f97316);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.about-text p{
  color:#9ca3af;
  font-size:15px;
  line-height:1.6;
  max-width:600px;
}
@media(max-width:700px){
  .about-inner{
    flex-direction:column;
    text-align:center;
  }
  .about-photo{
    max-width:260px;
    margin:0 auto 16px;
  }
}

/* HOME gecentreerd */
.home-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:32px;
  margin-top:24px;
}
.gallery-section{
  width:100%;
}
.section-heading-centered{
  display:flex;
  justify-content:center;
  text-align:center;
  margin-bottom:8px;
}
.section-heading-centered h2{
  font-size:22px;
}
.filterbar-centered{
  justify-content:center;
  text-align:center;
}
.grid-centered{
  max-width:1300px;
  margin:0 auto 40px;
}
@media(max-width:900px){
  .about-inner{
    flex-direction:column;
    text-align:center;
  }
  .about-text p{
    max-width:100%;
  }
}

/* Post page cards / overlays */
.block-card{
  border-radius:22px;
  background:radial-gradient(circle at top left,rgba(225,29,72,0.08),rgba(15,23,42,0.7));
  border:1px solid rgba(148,163,184,0.22);
  box-shadow:0 18px 60px rgba(0,0,0,0.7);
  padding:18px 18px 16px;
  margin:14px 0;
}
.post-header{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}
.post-header h1{
  font-size:24px;
  margin:0;
}
.post-excerpt{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}
.block-title{
  font-size:16px;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:500;
  color:var(--muted);
}
/* Foto-grid: max 4 naast elkaar */
.photo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:10px;
}
.photo-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
}
/* Tekst en reacties */
.body-text{
  font-size:14px;
  color:#d1d5db;
  line-height:1.7;
}
.comments-list .comment{
  padding:8px 0;
  border-bottom:1px solid rgba(31,41,55,0.6);
}
.comments-list .comment:last-child{
  border-bottom:none;
}
.no-comments{
  font-size:13px;
  color:var(--muted);
}
@media(max-width:700px){
  .block-card{
    padding:14px 14px 12px;
  }
  .post-header{
    align-items:flex-start;
  }
  .post-header h1{
    font-size:20px;
  }
}

/* Admin-link in menu */
.admin-link{
  color:#f87171;
  font-weight:600;
}
.admin-link:hover{
  color:#fca5a5;
  text-decoration: none;
}

/* Profielpagina layout (3 kolommen) */
.profile-grid{
  display:grid;
  grid-template-columns:2fr 1.4fr 1.8fr;
  gap:16px;
  margin-top:14px;
}
.profile-col{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.profile-center{
  align-items:center;
  text-align:center;
}
.avatar-wrap{
  display:flex;
  justify-content:center;
  margin-top:4px;
}
.profile-avatar-img{
  width:180px;
  height:180px;
  border-radius:999px;
  object-fit:cover;
  box-shadow:0 18px 50px rgba(0,0,0,0.7);
}
/* lijst met laatste reacties */
.profile-comments{
  list-style:none;
  padding:0;
  margin:0;
}
.profile-comments li{
  border-bottom:1px solid rgba(31,41,55,0.6);
  padding:6px 0 8px;
}
.profile-comments li:last-child{
  border-bottom:none;
}
.comment-post-title{
  font-size:14px;
  font-weight:500;
  color:#e5e7eb;
  text-decoration:none;
}
.comment-post-title:hover{
  color:#f97316;
}
.comment-body-snippet{
  font-size:13px;
  color:#9ca3af;
}
.comment-meta{
  font-size:11px;
  color:#6b7280;
  margin-top:2px;
}

/* Profiel & contact op mobiel */
@media(max-width:900px){
  .profile-grid{
    grid-template-columns:1fr;
  }
  .profile-center{
    align-items:flex-start;
    text-align:left;
  }
  .avatar-wrap{
    justify-content:flex-start;
  }
}

/* Contactpagina: 3 kolommen net als profiel */
.contact-grid{
  display:grid;
  grid-template-columns:2fr 1.4fr 1.8fr;
  gap:16px;
  align-items:flex-start;
  margin-top:10px;
}
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
  .contact-grid .btn{
    width:100%;
    text-align:center;
  }
}

.about-grid {
  grid-template-columns: 1.2fr 2fr 2fr !important;
}

/* Tags */
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(225,29,72,0.12);
  border: 1px solid rgba(225,29,72,0.35);
  color: #fca5a5;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.tag-chip:hover {
  background: rgba(225,29,72,0.25);
  transform: translateY(-2px);
}
.tag-mini {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(225,29,72,0.18);
  color: #fca5a5;
  font-size: 11px;
  margin-right: 4px;
}
.card:hover,
.card:hover * {
  text-decoration: none !important;
}

/* Archief filter container + bar */
.archive-filter-bar {
  border-radius: 22px;
  background: radial-gradient(circle at top left,
      rgba(225,29,72,0.08),
      rgba(15,23,42,0.7));
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
  padding: 10px 14px;
  margin: 12px 0 6px;
}

/* Compacte archief filterbalk */
.archive-filter {
  max-width: 900px;
  margin: 4px auto 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.archive-filter label {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin: 0;
}
.archive-filter select {
  max-width: 150px;
}
.archive-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 0 0 auto;
}
.archive-meta {
  font-size: 11px;
  color: #9ca3af;
  margin: 2px 0 6px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.archive-empty {
  color: #9ca3af;
  font-size: 14px;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .archive-filter {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .archive-filter-actions {
    justify-content: flex-start;
  }
}


/* ===========================================================
   FORM – Universele Styling voor alle formulieren
   =========================================================== */

.form-compact label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
  font-size: 14px;
  color: #e5e7eb;
}

.form-compact input,
.form-compact textarea,
.form-compact select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(15,23,42,0.7);
  color: var(--text);
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.1);
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.form-compact input::placeholder,
.form-compact textarea::placeholder {
  color: #94a3b8;
}

.form-compact input:hover,
.form-compact textarea:hover,
.form-compact select:hover {
  border-color: rgba(248,113,113,0.35);
}

.form-compact input:focus,
.form-compact textarea:focus,
.form-compact select:focus {
  outline: none;
  border-color: rgba(248,113,113,0.65);
  box-shadow: 0 0 0 4px rgba(248,113,113,0.15),
              inset 0 0 0 1px rgba(248,113,113,0.35);
  background: rgba(15,23,42,0.85);
}

.form-compact textarea {
  min-height: 140px;
  line-height: 1.6;
  resize: vertical;
}

.form-compact button,
.form-compact .btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
}

/* Optioneel: kleine form-layout in meerdere kolommen */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-row .form-col-50 {
  flex: 1 1 calc(50% - 12px);
}
.form-row .form-col-33 {
  flex: 1 1 calc(33% - 12px);
}
@media(max-width: 700px) {
  .form-row .form-col-50,
  .form-row .form-col-33 {
    flex: 1 1 100%;
  }
}

/* Admin dashboard cards */
.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 16px;
  margin: 16px 0 24px;
}
.admin-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  border: 1px solid rgba(148,163,184,0.2);
}
.admin-card h2 {
  font-size: 15px;
  margin-bottom: 6px;
}
.admin-card p {
  font-size: 13px;
  color: var(--muted);
}
/* ============================
   Admin – fotobeheer (post_edit)
   ============================ */

/* Volgorde-lijst */
.admin-photo-order-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-photo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(15,23,42,0.9);
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.admin-photo-row-thumb {
  height: 50px;
  width: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.admin-photo-row-main {
  flex: 1;
}

.admin-photo-row-title {
  font-size: 13px;
  color: #e5e7eb;
}

.admin-photo-row-meta {
  font-size: 11px;
  color: #9ca3af;
}

.admin-photo-row-input input[type="number"] {
  width: 70px;
  text-align: right;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.85);
  color: #e5e7eb;
  font-size: 13px;
}

/* Grid voor bestaande foto's (verwijderen) */
.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.admin-photo-item {
  background: rgba(15,23,42,0.85);
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.95);
  box-shadow: 0 14px 40px rgba(0,0,0,0.7);
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-photo-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.admin-photo-meta-title {
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 2px;
}

.admin-photo-meta-sub {
  font-size: 11px;
  color: #9ca3af;
}

.admin-photo-delete-form {
  margin-top: 4px;
}

.admin-photo-delete-form .btn {
  width: 100%;
  font-size: 12px;
  padding: 6px 8px;
}
