/* ================================================================
   HYVES.NL BASE STYLESHEET — gedeeld door alle pagina's
   ================================================================ */

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

:root {
  --orange:     #f06020;   /* navigatiebalk oranje */
  --orange-dk:  #d04e10;   /* hover/active */
  --page-bg:    #dde8f5;   /* lichtblauwe pagina-achtergrond */
  --box-border: #a8c4de;   /* kader-rand */
  --box-head:   #cce0f0;   /* kader-header achtergrond */
  --box-head-dk:#b8d4ea;   /* kader-header rand */
  --link:       #00439c;   /* standaard link-blauw */
  --link-hov:   #002d78;
  --text:       #333333;
  --text-light: #666666;
  --nav-sep:    rgba(255,255,255,0.25);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.45;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hov); text-decoration: underline; }
strong { font-weight: bold; }
em { font-style: italic; }

/* ================================================================
   HEADER — witte achtergrond met logo
   ================================================================ */

#header {
  background: #ffffff;
  border-bottom: 2px solid #ddd;
}

#header-inner {
  max-width: 790px;
  margin: 0 auto;
  padding: 6px 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Mascotte blobs */
.mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  user-select: none;
}

.mascot-body {
  width: 36px;
  height: 36px;
  background: #f8b520;
  border-radius: 50% 50% 45% 45%;
  border: 2px solid #d09010;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.mascot-body::before, .mascot-body::after {
  content: '';
  position: absolute;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #222;
  border-radius: 50%;
}
.mascot-body::before { left: 7px; }
.mascot-body::after  { right: 7px; }

.mascot-spike {
  width: 34px;
  display: flex;
  justify-content: space-around;
  margin-bottom: -6px;
  z-index: 1;
}

.mascot-spike span {
  width: 4px;
  height: 8px;
  background: #f8b520;
  border: 1px solid #d09010;
  border-radius: 2px 2px 0 0;
  display: block;
}

.mascot-right .mascot-body { background: #3090e0; border-color: #1070c0; }
.mascot-right .mascot-body::before,
.mascot-right .mascot-body::after { background: #fff; border: 1px solid #333; }
.mascot-right .mascot-spike span  { background: #3090e0; border-color: #1070c0; }

/* Logo centrum */
#logo { text-align: center; line-height: 1.1; }

.logo-name {
  display: block;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
  color: #d05000;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.08);
  line-height: 1;
}

.logo-tagline {
  display: block;
  font-size: 13px;
  color: #b04800;
  font-style: italic;
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* ================================================================
   NAVIGATIEBALK — gouden gradient, donkere tekst
   ================================================================ */

#nav-bar {
  background: linear-gradient(to bottom, #fedc98, #ffae0d);
  border-bottom: 2px solid #d08a00;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}

#nav-bar-inner {
  max-width: 790px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

#nav-bar a {
  display: inline-block;
  padding: 7px 15px 5px;   /* 2px minder onder → ruimte voor border-bottom */
  color: #5a2e00;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  border-right: 1px solid rgba(0,0,0,0.12);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

#nav-bar a:first-child { border-left: 1px solid rgba(0,0,0,0.12); }

#nav-bar a:hover {
  background: rgba(0,0,0,0.10);
  text-decoration: none;
  color: #3a1800;
  border-bottom-color: rgba(255,255,255,0.5);
}

#nav-bar a.nav-active {
  background: rgba(0,0,0,0.20);
  color: #2a0e00;
  text-decoration: none;
  font-weight: 900;
  /* Witte onderlijn die visueel "doorloopt" naar de pagina-achtergrond */
  border-bottom: 2px solid #dde8f5;
  box-shadow: inset 0 2px 3px rgba(0,0,0,0.12);
}

/* ================================================================
   PAGINAWRAPPER + BREADCRUMB
   ================================================================ */

#breadcrumb {
  max-width: 790px;
  margin: 0 auto;
  padding: 4px 10px;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid #c8d8ec;
  background: #edf4fc;
}

#breadcrumb a { color: var(--link); }

#page-wrapper {
  max-width: 790px;
  margin: 0 auto;
  padding: 8px 10px;
}

/* ================================================================
   INHOUDS-BOXEN
   ================================================================ */

.box {
  background: #ffffff;
  border: 1px solid var(--box-border);
  margin-bottom: 8px;
}

.box-header {
  background: linear-gradient(to bottom, var(--box-head), var(--box-head-dk));
  border-bottom: 1px solid var(--box-border);
  padding: 4px 8px;
  font-weight: bold;
  font-size: 14px;
  color: #1a3a70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.box-header-icon { font-size: 17px; flex-shrink: 0; }

.box-header-link {
  font-size: 13px;
  font-weight: normal;
  color: var(--link);
}

.box-body { padding: 8px; }

.box-footer {
  background: #f4f8ff;
  border-top: 1px solid var(--box-border);
  padding: 3px 8px;
  font-size: 13px;
  text-align: center;
}

/* ================================================================
   TWEEKOLOMSLAY-OUT (sidebar + main)
   ================================================================ */

.two-col {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.col-left  { width: 148px; flex-shrink: 0; }
.col-main  { flex: 1; min-width: 0; }
.col-right { width: 180px; flex-shrink: 0; }

/* ================================================================
   SIDEBAR NAVIGATIE
   ================================================================ */

.sidebar-photo {
  background: #fff;
  border: 1px solid var(--box-border);
  padding: 6px;
  margin-bottom: 6px;
  text-align: center;
}

.sidebar-photo .photo-frame {
  width: 110px;
  height: 110px;
  background: #f0f8ff;
  border: 1px solid var(--box-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 73px;
  margin: 0 auto 4px;
}

.sidebar-photo .photo-label {
  font-size: 13px;
  color: var(--link);
  cursor: pointer;
}

.sidebar-photo .photo-label:hover { text-decoration: underline; }

.sidebar-links {
  background: #fff;
  border: 1px solid var(--box-border);
  margin-bottom: 6px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  border-bottom: 1px solid #ddeeff;
  font-size: 14px;
  color: var(--link);
  gap: 4px;
}

.sidebar-links a:last-child { border-bottom: none; }

.sidebar-links a:hover {
  background: #eef6ff;
  text-decoration: none;
}

.sidebar-links .sl-new {
  font-size: 12px;
  color: #f06020;
  font-weight: bold;
  background: #fff3e0;
  border: 1px solid #f0a060;
  padding: 0 3px;
  border-radius: 2px;
  flex-shrink: 0;
}

.sidebar-links .sl-icon { font-size: 16px; flex-shrink: 0; }

/* ================================================================
   WIDGET-LIJSTEN (bullets in boxen)
   ================================================================ */

.widget-list { list-style: none; padding: 6px 8px; }

.widget-list li {
  padding: 3px 0;
  border-bottom: 1px dotted #ddeeff;
  line-height: 1.5;
  font-size: 14px;
}

.widget-list li:last-child { border-bottom: none; }

.widget-list li::before {
  content: '• ';
  color: var(--orange);
  font-weight: bold;
}

.widget-highlight { color: #d04000; font-weight: bold; }

/* ================================================================
   PAGINA-FOOTER
   ================================================================ */

#page-footer {
  max-width: 790px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: #999;
  border-top: 1px solid var(--box-border);
  line-height: 1.8;
}

#page-footer a { color: var(--link); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 680px) {
  #header-inner { flex-wrap: wrap; gap: 6px; }
  .two-col { flex-direction: column; }
  .col-left, .col-right { width: 100%; }
  #nav-bar a { padding: 6px 8px; font-size: 13px; }
}
