/* MN Management Support Ltd. — updated theme */
:root {
  --mint-1: #8ACBB3;
  --mint-2: #84CBB6;
  --teal-1: #3DB8B4;
  --teal-2: #2EA8A4;
  --accent: #2A8C88;
  --navy: #00132D;
  --ink: #002033;

  --card: rgba(255,255,255,.82);
  --card-strong: rgba(255,255,255,.92);
  --stroke: rgba(0,19,45,.14);
  --shadow: 0 10px 30px rgba(0,19,45,.18);

  --radius: 18px;
  --maxw: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background-color: #2A9E99;
  background-image: url("mn-achtergrond.jpg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: scroll;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 40, 60, 0.22);
  pointer-events: none;
  z-index: 0;
}
main, header { position: relative; z-index: 1; }

a { color: inherit; }

/* ── Header ── */
.site-header {
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Bovenste donkere strook: logo + taalvlaggen */
.header-top {
  background: #1E4F56;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  min-height: 80px;
}

.header-logo {
  display: block;
  height: 60px;
  width: auto;
}

/* Onderste lichtere strook: tekst gecentreerd */
.header-bottom {
  background: #3DBFBB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  text-align: center;
}

.header-bottom h2 {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 1.4px;
}

.header-bottom p {
  margin: 5px 0 0;
  font-size: clamp(12px, 1.3vw, 16px);
  color: rgba(255,255,255,.88);
  letter-spacing: .5px;
}

/* ── Taalvlaggen ── */
.lang { display: flex; gap: 10px; }
.flag {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(0,19,45,.15);
  box-shadow: 0 6px 16px rgba(0,19,45,.14);
  transition: transform .12s ease, background .12s ease;
  font-size: 18px;
}
.flag:hover { transform: translateY(-1px); background: rgba(255,255,255,.80); }
.flag.active {
  background: rgba(255,255,255,.90);
  border-color: rgba(0,19,45,.22);
}

/* ── Layout ── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 18px 60px;
}

/* ── Card stack ── */
.stack {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: 0 12px 26px rgba(0,19,45,.16);
}
.card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: .3px;
  color: var(--navy);
}
.card p { margin: 10px 0; line-height: 1.55; }
.card .lead { font-weight: 600; }
.preline { white-space: normal; }

/* ── About me foto ── */
.about-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.about-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,.80);
  box-shadow: 0 6px 18px rgba(0,19,45,.18);
}
.about-text { flex: 1; }

@media (max-width: 520px) {
  .about-wrap { flex-direction: column; align-items: center; }
  .about-photo { width: 110px; height: 110px; }
}

ul { margin: 10px 0 0 18px; padding: 0; }
li { margin: 8px 0; line-height: 1.45; }

/* ── Accordion ── */
.accordion-item {
  border-bottom: 1px solid rgba(0,19,45,.12);
}
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  gap: 12px;
  font-family: inherit;
}
.accordion-trigger:hover { color: var(--accent); }

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-1), var(--mint-1));
  color: white;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  transition: transform .25s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 2px 0 16px;
  color: var(--ink);
  line-height: 1.6;
}
.accordion-body.open { display: block; }

/* ── Contact link ── */
.services-intro { margin: 0 0 18px; line-height: 1.55; }
.contact-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* ── Footer ── */
.footer {
  margin-top: 20px;
  text-align: center;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 4px rgba(0,19,45,.20);
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .header-top { padding: 10px 14px; }
  .header-logo { height: 44px; }
  .flag { width: 32px; height: 32px; border-radius: 9px; }
}