/* =========================================================
   STYLE.CSS — BASIS LAYOUT, TYPOGRAFIE, KLEUREN, STRUCTUUR
   ========================================================= */

/* ---------- Root variabelen ---------- */
:root {
  --primary: #1149db;
  --secondary: #3a6ef2;
  --secondary-light: #4777f0;
  --secondary-dark: #2a61ec;
  --mouseover-light: #eff1f7;
  --accent: #ff6c00;
  --pastel-green: #00ce7c;
  --pastel-grey: #a7bcd7;
  --yellow-light: #f2d046;
  --btn-hover: #ff4500;
  /* --bg: #f7f9fc; 
     --bg: #f7c70c;  */
  --bg: linear-gradient(135deg, #eef3ff, #f9f2d6);
  --bg-yellow: linear-gradient(135deg, #eef3ff, #f7c70c);
  --bg-card: #ffffff;
  --bg-footerbox: #e1e7f9;
  --text: #333;
  --text-light: #a5bbf2;
  --border: #e2e5ea;
  --grey-light: #dcdcdc;
  --grey: #999;
  --dark: #333;

  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);

  --font-sans: "Inter", sans-serif;
  --font-heading: "Patua One", serif;

  --max-width: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  font-size: 1em;
  line-height: 1.4;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Typografie ---------- */
h1 {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 0.6rem;
font-weight: 200;
}

h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--primary);
  margin-bottom: 0.6rem;
font-weight: 200;
}

p {
  margin-bottom: 1rem;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--secondary);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
}

.branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  height: 52px;
}

.title-block {
  display: none;
  flex-direction: column;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.site-payoff {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---------- Menu ---------- */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  opacity: 0.6;
  font-family: var(--font-sans);
  font-weight: 300;
  transition: 0.2s;
padding:5px;
}

.menu a:hover {
  color: #fff;
  opacity: 0.8;
}

.menu a.active {
  color: #fff;
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-light);
  cursor: pointer;
}

.btn-menu {
  background: var(--primary);
  padding: 5px 10px;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--text-light);
}

.menu a.btn-menu {
  color: #fff;
  opacity: 1;
	padding: 5px 10px;
}

.btn-menu:hover {
  background: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 150px;
  padding: 20px 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--bg-footerbox);
}

.footer-box {
  width: 90%;
  max-width: 900px;
  background-color: var(--bg-footerbox);
  padding: 40px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: -120px;
}

.footer-col {
  text-align: left;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
font-weight: 200;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.85rem;
opacity: 0.8;
}

.footer-col a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-col i {
  font-size: 0.9rem;
  color: var(--primary);
}

.footer-bottom {
  grid-column: span 3;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  color: var(--secondary);
  margin-top: 5px;
  padding-top: 5px;
}

/* ---------- Responsive footer ---------- */
@media (max-width: 550px) {
  .footer-box {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
  }

  .footer-bottom {
    grid-column: span 1;
    margin-top: 5px;
  }
}

/* ---------- Responsive menu (zelfde styling als aangeleverd) ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 1100;
    color: var(--text-light);
  }

  .menu {
    display: none;
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 97%;
    right: 0;
    left: 0;
    padding: 15px 20px;
    z-index: 1050;
    margin-left: -5px;
    margin-right: -5px;
    box-shadow: 0 9px 10px rgba(0, 0, 0, 0.45);
    gap: 0;
  }

  .menu a {
    padding: 5px;
    color: #fff;
    opacity: 0.6;
  }

  .menu a.active {
    color: #fff;
    opacity: 1;
  }

  /* Menu openen */
  body.menu-open .menu,
  .menu.open {
    display: flex;
  }

  .branding {
    width: 100%;
    justify-content: space-between;
  }

  .header-inner {
    padding: 8px 20px;
  }
}

/* =========================================================
   TOPBAR ABOVE HEADER
========================================================= */

.topbar {
  background: var(--primary);
  padding: 6px 0;
  font-size: 0.85rem;
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-links {
  display: flex;
  gap: 18px;
}

.topbar-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
  transition: 0.2s;
}

.topbar-links a:hover {
  opacity: 1;
  color: #fff;
}

.topbar-links i {
  font-size: 0.9rem;
  color: var(--accent);
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  color: var(--text-light);
  font-size: 1rem;
  opacity: 0.8;
  transition: 0.2s;
}

.topbar-social a:hover {
  color: #fff;
}

/* Mobile topbar */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .topbar-links {
    justify-content: center;
  }

  .topbar-social {
    /* justify-content: center;*/
  display:none;
  }
}

/* ---------- Extra klein scherm ---------- */
@media (max-width: 480px) {
  .menu a {
    font-size: 16px;
  }

  .menu-toggle {
    font-size: 24px;
    top: 12px;
    right: 10px;
    color: var(--text-light);
  }
}
