* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #4b2dd6, #2bb0ff);
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

/* ========================= */
/* Header */
/* ========================= */

.site-header {
  text-align: center;
  padding: 4rem 1rem 3rem;
}

.site-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.site-header p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ========================= */
/* City Grid */
/* ========================= */

.city-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.city-button {
  position: relative;
  height: 140px;
  text-align: center;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05)
  );

  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.city-button:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.15)
  );
}

/* ========================= */
/* Links */
/* ========================= */

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #e0e6ff;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* ========================= */
/* Top navigation */
/* ========================= */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

  background: rgba(20, 10, 60, 0.5);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Nav logo als link */
.nav-logo a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
}

.nav-menu a:hover {
  opacity: 1;
}

/* Actieve pagina in navigatie */
.nav-menu a[aria-current="page"] {
  opacity: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 2px;
}

/* ========================= */
/* Hero */
/* ========================= */

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("images/hero.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.hero-button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #2b1d7a;

  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

#steden {
  margin-top: 1rem;
  padding-bottom: 1rem;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  max-width: 720px;
  animation: fadeSlideUp 1s ease-out forwards;
  opacity: 0;
}

/* ========================= */
/* Main content */
/* ========================= */

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem;
}

main p {
  line-height: 1.8;
  font-size: 1.05rem;
  opacity: 0.95;
  margin-top: 1rem;
}

main h2,
main h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

main h2 {
  font-size: 2rem;
}

main h3 {
  font-size: 1.4rem;
  opacity: 0.95;
}

/* Interne links in content */
main a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
}

main a:hover {
  opacity: 1;
}

/* FAQ sectie */
.faq-section {
  margin-top: 4rem;
}

.faq-item {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.faq-item p {
  margin-top: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* ========================= */
/* Werkwijze */
/* ========================= */

.werkwijze {
  margin-top: 0;
}

.werkwijze h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.werkwijze h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.werkwijze h2:hover {
  transform: translateX(6px);
  opacity: 1;
}

.werkwijze p {
  line-height: 1.8;
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.werkwijze .container {
  padding: 3rem;
}

.werkwijze ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.werkwijze li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
  list-style: none;
}

.werkwijze li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  opacity: 0.8;
  font-size: 1.2rem;
}

/* Over ons content secties */
.content-section {
  margin-top: 3rem;
}

.content-section ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.content-section li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
  list-style: none;
}

.content-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  opacity: 0.8;
  font-size: 1.2rem;
}

/* ========================= */
/* Login & Admin */
/* ========================= */

/* ========================= */
/* Login pagina              */
/* ========================= */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 3rem;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.auth-card h1 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}

.auth-subtitle {
  text-align: center;
  opacity: 0.65;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* ========================= */
/* Admin omgeving            */
/* ========================= */

.admin-wrapper {
  max-width: 860px;
  margin: 0 auto 4rem;
  padding: 2rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.admin-wrapper h1 {
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.admin-form {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(16px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.field-group {
  margin-bottom: 1.4rem;
}

.field-group:last-of-type {
  margin-bottom: 2rem;
}

/* Labels */
.auth-card label,
.admin-form label,
.contact-form-card label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Inputs & textareas */
.auth-card input,
.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-card input:focus,
.admin-form input:focus,
.admin-form textarea:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.auth-card input::placeholder,
.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.admin-form textarea {
  min-height: 160px;
  resize: vertical;
}

.admin-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.admin-form input[type="file"] {
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 0.9rem;
}

.admin-form input[type="file"]:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.field-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  opacity: 0.5;
}

.form-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2rem 0;
}

/* Submit knop */
.auth-card button,
.admin-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  background: #ffffff;
  color: #2b1d7a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-card button:hover,
.admin-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #f0f0ff;
}

.auth-card button:active,
.admin-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Uitlogknop */
.logout-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.logout-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ========================= */
/* Feedback berichten        */
/* (login, admin, contact)   */
/* ========================= */

/* Succes */
.form-success {
  background: rgba(40, 167, 69, 0.25);
  border: 1px solid rgba(40, 167, 69, 0.5);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-success a {
  color: #ffffff;
  font-weight: 600;
}

/* Fout */
.form-errors {
  background: rgba(220, 53, 69, 0.25);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-errors ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-errors li {
  margin-bottom: 4px;
  list-style: disc;
  padding-left: 0;
}

.form-errors li::before {
  display: none;
}

/* Waarschuwing (login vergrendeling) */
.login-error {
  background: rgba(220, 53, 69, 0.25);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.login-locked {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.5);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

/* Legacy error-message class */
.error-message {
  background: rgba(255, 80, 80, 0.2);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ========================= */
/* Blog Overzicht */
/* ========================= */

.blog-wrapper {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 2rem;
}

.blog-wrapper h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.blog-wrapper > p {
  max-width: 720px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.blog-overview {
  margin-top: 6rem;
}

.blog-overview h1 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.blog-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Blog Card */
.blog-card {
  border-radius: 20px;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );

  backdrop-filter: blur(12px);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 1.8rem;
}

.blog-meta {
  font-size: 0.85rem;
  opacity: 0.75;
}

.blog-content h2 {
  font-size: 1.4rem;
  margin: 0.8rem 0 1rem;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.blog-button {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: #ffffff;
  color: #2b1d7a;
  font-weight: 600;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========================= */
/* Individuele Blogpost */
/* ========================= */

.blog-post {
  max-width: 820px;
  margin: 0 auto 4rem;
  padding: 3rem;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.blog-post h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* time element in meta */
.blog-post-meta time {
  font-style: normal;
}

.blog-post figure {
  margin: 0 0 2rem;
}

.blog-post img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

/* Content typografie */
.blog-post-content {
  line-height: 1.9;
  font-size: 1.1rem;
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.blog-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.blog-post-content p {
  margin-bottom: 1.4rem;
}

.blog-post-content ul {
  margin: 1rem 0 1.5rem 1.2rem;
}

.blog-post-content li {
  margin-bottom: 0.6rem;
}

/* Terug naar blog link */
.blog-post a {
  color: #ffffff;
  opacity: 0.85;
}

.blog-post a:hover {
  opacity: 1;
}

/* Breadcrumb navigatie */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.3rem;
  opacity: 0.6;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  opacity: 0.6;
}

/* ========================= */
/* Contactpagina */
/* ========================= */

.contact-page {
  padding: 2rem;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.contact-intro p {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.contact-form-card,
.contact-info-card {
  padding: 2.5rem;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  border: none;
  outline: none;

  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;

  font-size: 1rem;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-card button {
  width: 100%;
  padding: 0.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;

  background: #ffffff;
  color: #2b1d7a;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-card h2 {
  margin-bottom: 1.5rem;
}

.contact-info-card p {
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.contact-info-card a {
  color: #ffffff;
  opacity: 0.9;
}

.contact-info-card a:hover {
  opacity: 1;
}

.contact-extra {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.captcha-group {
  margin-bottom: 1.2rem;
}

.captcha-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ========================= */
/* Footer */
/* ========================= */

footer {
  padding: 2rem;
  margin-top: 1rem;
}

/* ========================= */
/* Responsive */
/* ========================= */

@media (max-width: 768px) {

  .top-nav {
    padding: 0.8rem 1.2rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .werkwijze .container {
    padding: 2rem;
  }

  .werkwijze h1 {
    font-size: 2rem;
  }

  .werkwijze h2 {
    font-size: 1.4rem;
  }

  .blog-post {
    margin: 0 1rem 3rem;
    padding: 2rem 1.5rem;
  }

  .blog-post h1 {
    font-size: 1.8rem;
  }

  .blog-wrapper {
    margin: 0 auto;
    padding: 0 1rem;
  }

  .contact-page {
    padding: 1rem;
  }

  .contact-intro h1 {
    font-size: 2rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .admin-wrapper {
    margin: 0 1rem 3rem;
    padding: 1rem;
  }

  .admin-form {
    padding: 1.5rem;
  }

  .auth-card {
    padding: 1.8rem;
  }

  main {
    padding: 5rem 1rem 3rem;
  }

  .city-grid {
    padding: 1rem;
    gap: 1.2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* ========================= */
/* Dashboard                 */
/* ========================= */

.dashboard-table-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.dashboard-table thead {
  background: rgba(255, 255, 255, 0.12);
}

.dashboard-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}

.dashboard-table tbody tr:last-child {
  border-bottom: none;
}

.dashboard-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

/* Kolom breedtes */
.col-id    { width: 48px; opacity: 0.45; font-size: 0.85rem; }
.col-title { min-width: 200px; }
.col-cat   { width: 130px; }
.col-date  { width: 120px; opacity: 0.7; font-size: 0.88rem; white-space: nowrap; }
.col-actions { width: 160px; }

/* Post titel link in tabel */
.post-title-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.post-title-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Categorie badge */
.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-empty {
  opacity: 0.35;
  background: transparent;
  border-color: transparent;
}

/* Actieknopjes in tabel */
.col-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-edit,
.btn-delete {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-edit {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-edit:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-delete {
  background: rgba(220, 53, 69, 0.25);
  color: #ffb3ba;
  border: 1px solid rgba(220, 53, 69, 0.4);
}

.btn-delete:hover {
  background: rgba(220, 53, 69, 0.4);
  transform: translateY(-1px);
}

/* Lege staat */
.dashboard-empty {
  padding: 3rem;
  text-align: center;
  opacity: 0.7;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.dashboard-empty a {
  color: #ffffff;
  font-weight: 600;
}

/* ── Verwijder bevestigingspagina ── */

.delete-confirm-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(220, 53, 69, 0.35);
  background: linear-gradient(
    145deg,
    rgba(220, 53, 69, 0.15),
    rgba(220, 53, 69, 0.05)
  );
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.delete-warning {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem !important;
  opacity: 1 !important;
}

.delete-post-preview {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.delete-post-preview strong {
  font-size: 1.05rem;
}

.delete-post-preview span {
  opacity: 0.55;
  font-size: 0.85rem;
}

.delete-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-delete-confirm {
  flex: 1;
  padding: 0.9rem;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  background: rgba(220, 53, 69, 0.7);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-delete-confirm:hover {
  background: rgba(220, 53, 69, 0.9);
  transform: translateY(-2px);
}

.btn-cancel {
  flex: 1;
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ── Huidig plaatje bij bewerken ── */

.current-image {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.5rem;
}

.current-image img {
  width: 100px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.remove-image-label {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  opacity: 0.8 !important;
  cursor: pointer;
}

.remove-image-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: #ff6b6b;
}

/* Responsive dashboard */
@media (max-width: 768px) {
  .col-id,
  .col-cat { display: none; }

  .dashboard-table th,
  .dashboard-table td { padding: 0.8rem; }

  .delete-actions { flex-direction: column; }

  .current-image { flex-direction: column; align-items: flex-start; }
}

/* ========================= */
/* Stadspagina's             */
/* ========================= */

/* Intro tekstblok */
.city-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

/* Bureau grid heading */
#bureaus {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* Footer andere steden links */
footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 0 0.4rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
