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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #1f2933;
}
h1, h2 {
    line-height: 1.25;
    color: #111827;
}

h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

h2 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 10px;
}

p {
    max-width: 70ch;
}

/* Layout helper */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    border-bottom: 1px solid #D12F26;
    padding: 18px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    font-weight: 700;
    font-size: 18px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    margin-left: 18px;
}
.main-nav a[aria-current="page"] {
  color: var(--brand-red);
  font-weight: 600;
}


.main-nav a:hover {
    text-decoration: underline;
}

/* Main */
.site-main {
    padding: 40px 0;
}

.hero {
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 14px;
}

.content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    border-top: 1px solid #ddd;
    padding: 18px 0;
    font-size: 14px;
    color: #666;
}
.content h1 { margin-bottom: 14px; }
.content h2 { margin-top: 18px; margin-bottom: 8px; }
.content p  { margin-bottom: 12px; }

a {
    color: #b91c1c;
}

a:hover {
    text-decoration: underline;
}
.site-header {
    border-bottom: 2px solid #b91c1c;
}

/* Images */
.site-header .logo img {
    display: block;
    height: 110px;
    width: auto;
}

/* Homepage team section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 14px;
}

.team-member {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}

.team-member img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 12px;
}




.team-member h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.team-member p {
    margin-bottom: 8px;
}

@media (min-width: 820px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    background: #b91c1c;
    color: #fff;
    margin-right: 10px;
}

.button:hover {
    text-decoration: none;
    filter: brightness(0.95);
}

.button-ghost {
    background: transparent;
    color: #b91c1c;
    border: 1px solid #b91c1c;
}
.hero .container {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}
/* Centered intro block */
.hero .container {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
/* Centered team section */
.content .container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
/* CTA positioning */
.cta-row {
    margin-top: 12px;
}
/* Team section background */
.team-section {
    background: #f9fafb;
    padding: 24px 0;
    border-radius: 16px;
}
.team-section .container {
    max-width: 820px;
}

/* Compact team layout */
.team-grid {
    gap: 10px;
}

.team-member {
    padding: 10px;
}
/* Foto’s kleiner en rustiger */
.team-member img {
  max-height: 135px;            /* was 150px → ~20% minder */
  margin-bottom: 8px;           /* was 12px */
}
/* Watermark background */
body {
    position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/assets/img/mapleleaf-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1200px auto;
  background-attachment: fixed;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* Zorg dat alle content boven de watermark ligt */
.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

/* Make sure body doesn't paint an opaque layer over it */
body {
  background: transparent;
}
/* Subtle transparency for background layers */
.hero .container {
  background: rgba(255, 255, 255, 0.50);
}

.team-section {
  background: rgba(249, 250, 251, 0.50);
}

.team-member {
  background: rgba(255, 255, 255, 0.70);
}
