/* ============================================================
   HOSTNER — LAYOUT (nav + footer) — desktop only
   Alle media queries → responsive.css
   Brand-tokens → variable.css
   ============================================================ */

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

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-block {
  width: 13px;
  height: 18px;
  background: var(--green);
  flex-shrink: 0;
}
.nav-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-cursor { color: var(--green); }

/* Desktop menu */
.site-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.site-nav .nav-menu a {
  color: var(--grey);
  text-decoration: none;
  font-size: 12px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.site-nav .nav-menu a:hover,
.site-nav .nav-menu .current-menu-item > a { color: var(--white); }

/* Nav actions — desktop */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Nav btn systeem */
.nav-btn {
  display: inline-block;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-btn--secondary { background: transparent; color: var(--white); border: 1px solid var(--border); }
.nav-btn--secondary:hover { border-color: var(--grey); color: var(--white); }
.nav-btn--primary { background: var(--green); color: #000; border: 1px solid var(--green); }
.nav-btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #000; }

/* Hamburger (default hidden, shown via responsive.css) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile menu (shown via .is-open) */
.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--s3);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  z-index: 99;
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.nav-mobile ul a {
  display: block;
  padding: 12px 0;
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile ul a:hover { color: var(--white); }

/* Nav actions — mobile */
.nav-actions-mobile { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.nav-actions-mobile .nav-btn { display: block; text-align: center; padding: 13px 20px; font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Brand kolom */
.footer-logo {
  display: inline-block;
  margin-bottom: 0;
  text-decoration: none;
}
.footer-logo img {
  max-width: 140px;
  height: auto;
  display: block;
}
.nav-logo--footer { display: flex; }

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  max-width: 375px;
  margin-top: 16px;
  line-height: 1.9;
}

/* Social icons */
.footer-social { display: flex; gap: 14px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.footer-social-icon { display: flex; align-items: center; opacity: 0.55; transition: opacity 0.2s; }
.footer-social-icon:hover { opacity: 1; }
.footer-social-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Footer kolom heading (accordion trigger) */
.footer-col-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: default;
  padding: 0;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 20px;
  pointer-events: none;
  text-transform: uppercase;
}
.footer-col-arrow {
  display: none;
  flex-shrink: 0;
  color: var(--grey);
  transition: transform 0.2s;
}

/* Accordion content — altijd zichtbaar op desktop */
.footer-col-content { display: block; }

/* Footer nav menu */
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  font-family: var(--font);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--white); }

/* Footer bottom — 3-kolom grid */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom-middle {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.footer-bottom-middle img,
.footer-bottom-img {
  height: 30px;
  width: auto;
  opacity: 1;
}
.footer-bottom-img-link { display: inline-flex; align-items: center; }
.footer-bottom-img-link img { height: 30px; width: auto; opacity: 1; transition: opacity 0.2s; }
.footer-bottom-img-link:hover img { opacity: 0.7; }

.footer-bottom-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.footer-bottom-text { font-size: 12px; color: var(--muted); }
.footer-bottom-link { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--white); }
.footer-bottom-menu { list-style: none; display: flex; gap: 16px; }
.footer-bottom-menu li a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-menu li a:hover { color: var(--white); }
