* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f7f3e3;
  --cream-bg: #fdfaf2;
  --gold: #9a7c1f;
  --gold-light: #c9a227;
  --gold-pale: #f0e6b8;
  --blue: #1b4a8a;
  --blue-light: #2563b8;
  --blue-pale: #e8f0fb;
  --ink: #111827;
  --ink-mid: #374151;
  --ink-muted: #6b7280;
  --border: #e5e1ce;
  --white: #ffffff;
}

html {
  line-height: 1.5;
}

body {
  /* background: #f1ede0; */
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background-image: url("/static/background.c81ff7b5901b.gif");
}

.site {
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  max-width: 1600px;
}

a {
  color: var(--ink-mid);
  text-decoration: underline;
}

li {
  list-style-position: inside;
}

img {
  max-width: stretch;
  max-height: fit-content;
}

/* NAV */
nav {
  background: var(--white);
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-name {
  line-height: 1.15;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-left: 20px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  font-weight: 500;
}

.nav-links a:hover {
  background: var(--cream);
  color: var(--ink);
}

.nav-links a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-cta {
  margin-left: auto;
  background: var(--blue);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-light);
}

/* HERO */
.hero {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}

.hero-left {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  background: rgba(201, 162, 39, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  width: fit-content;
}

.hero-h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.hero-h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
}

.btn-primary {
  background: var(--gold-light);
  color: var(--ink);
  padding: 0.5rem 1.25rem;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #dbb82a;
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.hero-right {
  background: linear-gradient(135deg, #1a2744 0%, #0f1a30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201, 162, 39, 0.04) 30px,
    rgba(201, 162, 39, 0.04) 31px
  );
}

.target-svg {
  opacity: 0.9;
}

/* UPDATE STRIP */
.update-strip {
  background: var(--blue);
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
}

.strip-label {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-text {
  color: rgba(255, 255, 255, 0.85);
}

.strip-date {
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
  white-space: nowrap;
}

/* CONTENT */
.content {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.side-nav {
  flex: 0 0 220px;
}
.main {
  flex: 1 1 0%;
  min-width: 0;
}
.right-sidebar {
  flex: 0 0 260px;
}

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

/* LEFT NAV */
.side-nav {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
  background: var(--cream-bg);
}

@media (max-width: 1024px) {
  .side-nav {
    display: flex;
    flex: 1 0 100%;
    flex-direction: row;
    justify-content: space-around;
    border-bottom: 1px solid var(--border);
    .nav {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: baseline;
      column-gap: 1rem;
      row-gap: 0.6rem;
    }
    img {
      display: none;
    }
  }
}

.side-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
  padding: 0 0.5rem;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  font-weight: 400;
}

.side-nav a:hover {
  background: var(--cream);
  color: var(--ink);
}

.side-nav a.active {
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 500;
}

.side-nav a i {
  font-size: 15px;
  opacity: 0.6;
  width: 16px;
}

.side-nav a.active i {
  opacity: 1;
}

.side-nav-sep {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

/* MAIN */
.main {
  padding: 2rem 2rem;
}

.main-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.main-meta {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.main-meta a {
  color: var(--blue);
  text-decoration: none;
}

.welcome-text {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.welcome-text strong {
  color: var(--ink);
}

.updates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.updates-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.updates-all {
  font-size: 0.78rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.update-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  cursor: pointer;
  transition: background 0.1s;
}

.update-row:last-child {
  border-bottom: none;
}

.update-row-title {
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.4;
  flex: 1;
}

.update-row:hover .update-row-title {
  color: var(--blue);
}

.update-row-date {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

/* RIGHT SIDEBAR */
.right-sidebar {
  padding: 1.5rem 1.25rem;
  border-left: 1px solid var(--border);
  background: var(--cream-bg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1280px) {
  .right-sidebar {
    flex: 0 0 100%;
    border-top: 1px solid var(--border);
    flex-direction: row-reverse;
    justify-content: space-around;
  }
}

.widget-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.target-widget {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  /* overflow: hidden; */
  text-align: center;
  padding: 1rem;
}

.btn-sm {
  display: block;
  text-align: center;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  margin-top: 0.5rem;
  background: var(--white);
}

.btn-sm:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.contact-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  color: var(--ink-mid);
  margin-left: 16px;
}

.contact-row a {
  color: var(--blue);
  text-decoration: none;
}

.privacy-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.78rem;
  color: var(--ink-mid);
  text-decoration: none;
}

.privacy-row:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-evenly;
  justify-items: center;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.stat {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.2rem;
  font-family: "Lora", serif;
}

.stat-l {
  font-size: 0.68rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-left strong {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.footer-right {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  line-height: 1.8;
}

.footer-right a {
  color: rgba(201, 162, 39, 0.7);
  text-decoration: none;
}

/* Table */
table {
  border-collapse: collapse;
  background-color: white;

  caption {
    margin-bottom: 8px;
  }
  tr:first-child {
    border-bottom: 1px solid var(--ink-muted);
    font-weight: 600;
  }
  td {
    padding: 4px 8px;
  }
}
/* .persoonlijk-gemiddelde { */
table {
  td {
    border-right: 1px dashed var(--ink-muted);
    &:first-child {
      border-right: 1px solid var(--ink-muted);
    }

    &:last-child {
      border-right: none;
    }
  }
  /* tr:first-child {
      td {
        border-right: none;
      }
    } */
  tr:nth-child(even) {
    background-color: #fafafa;
  }
}
/* } */

.block-member_details {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
