@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

/* ── Onze Rust Shared Styles ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 52px;
}
:root {
  --orange: #e8700a;
  --orange2: #f5a41a;
  --blue: #1a3a6b;
  --white: #fff;
  --text: #222;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', Arial, 'Segoe UI', sans-serif; color: var(--text); background: #fff;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── HEADER ── */
.site-header {
  position: relative;
  background: linear-gradient(110deg,
    #0a1628  0%, #1a3a6b 22%,
    #c05a08 44%, #e8700a 54%,
    #f5a41a 62%, #ffc84a 72%,
    #fff2d0 86%, #ffffff 100%);
  padding: 0 32px 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 168px;
  overflow: visible;
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.04) 100%);
  pointer-events: none; z-index: 0;
}
.site-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0a1628, #1a3a6b 20%, #e8700a 50%, #f5a41a 80%, #ffc84a);
  z-index: 5;
}
.header-crest {
  height: 130px; width: auto; flex-shrink: 0;
  position: relative; z-index: 2;
  filter: drop-shadow(2px 4px 12px rgba(0,0,0,0.42));
  transition: transform 0.25s ease;
}
.header-title {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 0;
}
.header-name {
  font-family: 'Arial Black', Arial, 'Segoe UI', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; font-style: italic;
  color: #ffffff; letter-spacing: -0.01em; line-height: 1.05; white-space: nowrap;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.55),
    0 4px 16px rgba(0,0,0,0.40),
    0 0 48px rgba(0,0,0,0.25),
    1px 1px 0 rgba(0,0,0,0.3);
}
.header-accent {
  display: block; width: 55%; height: 3px; margin: 9px auto 8px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 20%, #fff 50%, rgba(255,255,255,0.5) 80%, transparent 100%);
  border-radius: 3px;
  box-shadow: 0 1px 8px rgba(255,255,255,0.5);
}
.header-sub {
  font-size: clamp(0.55rem, 0.8vw, 0.72rem); font-weight: 700;
  color: rgba(255,255,255,0.88); letter-spacing: 0.16em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.mascot-wrap {
  flex-shrink: 0; z-index: 3;
  align-self: flex-end; margin-bottom: -8px;
}
.mascot-placeholder {
  height: 168px; width: auto;
  display: block; object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.32));
}

/* ── NAV ── */
.site-nav {
  background: #ccd6e8;
  border-top: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(26,58,107,0.12);
}
.nav-hamburger {
  display: none;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 11px 20px; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  border-bottom: 1px solid rgba(26,58,107,0.12); font-family: inherit;
}
.nav-hamburger .hb-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 3px 12px;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 7px 22px;
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  transition: color 0.15s; white-space: nowrap; cursor: pointer;
}
.nav-item > a:hover, .nav-item:hover > a { color: var(--blue); font-weight: 600; }
.nav-item > a.active {
  background: #f5e6cc; border: 1px solid #c8a070;
  border-radius: 3px; color: var(--text); font-weight: 600;
}
.nav-item.has-drop > a::after { content: ' ▾'; font-size: 0.75rem; vertical-align: middle; opacity: 0.7; }
.nav-drop {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fdf5ec; border: 1px solid var(--orange); border-top: none;
  min-width: 220px; z-index: 200; box-shadow: 2px 4px 12px rgba(0,0,0,0.1);
}
.nav-item:hover .nav-drop { display: block; }
.nav-drop a {
  display: block; padding: 8px 16px; font-size: 0.88rem; font-weight: 400;
  color: var(--text); border-bottom: 1px solid rgba(232,112,10,0.12); transition: background 0.12s;
}
.nav-drop a:last-child { border-bottom: none; }
.nav-drop a:hover { background: #fae8d4; color: var(--blue); }
.nav-drop a.spy-active { background: #fae8d4; color: var(--orange); font-weight: 700; border-left: 3px solid var(--orange); padding-left: 13px; }
.nav-item.spy-parent > a { color: var(--orange); font-weight: 700; }

/* ── NAV APPLY CTA ── */
.nav-apply-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange); color: #fff;
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.02em;
  white-space: nowrap; text-decoration: none;
  margin-left: 12px; flex-shrink: 0;
  border: 2px solid var(--orange);
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(232,112,10,0.3);
}
.nav-apply-btn:hover {
  background: #c24000; border-color: #c24000; color: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(194,64,0,0.4);
}
@media (max-width: 768px) {
  .nav-apply-btn {
    margin: 0; border-radius: 0; padding: 13px 20px;
    justify-content: center; font-size: 0.92rem;
    border: none; border-top: 2px solid rgba(232,112,10,0.4);
    box-shadow: none;
  }
}

/* ── VALUE STRIP ── */
.value-strip { background: #ccd6e8; padding: 8px 24px 10px; text-align: center; border-bottom: 2px solid var(--blue); }
.value-strip .label { display: block; color: var(--orange); font-weight: 700; font-style: italic; font-size: 1rem; margin-bottom: 2px; }
.value-strip .text  { display: block; color: var(--blue); font-weight: 700; font-size: 0.98rem; }

/* ── PAGE BANNER ── */
.page-banner {
  height: 160px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a2e55 0%, #1a3a6b 60%, #1e5db5 100%);
  display: flex; align-items: center; padding: 0 40px;
}
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-banner-text { position: relative; z-index: 2; }
.page-banner-text h1 { font-size: 1.9rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.page-banner-text p  { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin-top: 5px; }
.page-banner-breadcrumb {
  position: absolute; bottom: 10px; right: 20px; z-index: 2;
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
}
.page-banner-breadcrumb a { color: var(--orange2); }
.page-banner-accent {
  position: absolute; right: 0; top: 0; bottom: 0; width: 8px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange2) 100%);
}

/* ── SECTION HEADINGS ── */
.pg-section { padding: 28px 36px 24px; }
.pg-section + .pg-section { border-top: 1px solid #e8ecf4; }
.pg-section.shaded { background: #f5f7fb; }
.pg-section.dark   { background: linear-gradient(135deg, #1a2e55 0%, #1a3a6b 100%); }
.sec-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sec-hd h2 { font-size: 1rem; font-weight: 900; color: var(--blue); white-space: nowrap; }
.pg-section.dark .sec-hd h2 { color: #fff; }
.sec-hd-rule { flex: 1; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); border-radius: 2px; }
.sec-hd .sec-anchor-id { font-size: 0; } /* invisible anchor target */

/* ── CONTENT GRID ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }

/* ── INFO CARDS ── */
.info-block {
  background: #fff; border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26,58,107,0.07);
  overflow: hidden;
}
.info-block-hd {
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--blue), #2a5ab0);
}
.info-block-hd.orange { background: linear-gradient(90deg, var(--orange), var(--orange2)); }
.info-block-hd.green  { background: linear-gradient(90deg, #1a6b3a, #2ab060); }
.info-block-hd h3 { color: #fff; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em; }
.info-block-hd .ib-icon { font-size: 1rem; }
.info-block-body { padding: 14px 16px; }

/* ── PROSE ── */
.prose p { font-size: 0.82rem; color: #3a4a60; line-height: 1.75; margin-bottom: 10px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--blue); }
.prose em { color: var(--orange); font-style: italic; }

/* ── STAT CHIPS ── */
.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.stat-chip { background: #edf2fb; border-radius: 8px; padding: 7px 14px; text-align: center; }
.stat-chip .sc-n { font-size: 1.1rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.stat-chip .sc-l { font-size: 0.58rem; font-weight: 700; color: #7a8a9a; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── DOWNLOAD BUTTONS ── */
.dl-row { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.dl-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  transition: filter 0.15s;
}
.dl-btn:hover { filter: brightness(1.1); }
.dl-btn.blue   { background: var(--blue); }
.dl-btn.orange { background: var(--orange); }
.dl-icon { font-size: 1rem; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), var(--orange)); border-radius: 2px; }
.tl-item { position: relative; margin-bottom: 16px; }
.tl-item::before { content: ''; position: absolute; left: -22px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--blue); }
.tl-year { font-size: 0.65rem; font-weight: 800; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; }
.tl-text { font-size: 0.78rem; color: #3a4a60; line-height: 1.55; margin-top: 2px; }

/* ── HOURS TABLE ── */
.hours-tbl { width: 100%; border-collapse: collapse; font-size: 0.76rem; }
.hours-tbl th { text-align: left; color: #9aaabf; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0 8px 6px 0; border-bottom: 2px solid #eef1f8; }
.hours-tbl td { padding: 5px 8px 5px 0; border-bottom: 1px solid #f4f6fb; vertical-align: top; color: #3a4a60; }
.hours-tbl td:first-child { font-weight: 700; color: var(--blue); white-space: nowrap; }
.hours-tbl tr:last-child td { border-bottom: none; }

/* ── TAGS ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag { font-size: 0.66rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.03em; }
.tag.blue   { background: #edf2fb; color: #1a3a6b; }
.tag.orange { background: #fff0ea; color: #c24000; }
.tag.purple { background: #f5eaff; color: #6a0dad; }
.tag.green  { background: #eafaf0; color: #1a7a38; }

/* ── CLASS CHIPS ── */
.class-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.cc { font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.03em; }
.cc-orange { background: #fff0ea; color: #c24000; }
.cc-red    { background: #ffeaea; color: #b00000; }
.cc-yellow { background: #fffbea; color: #8a6a00; }
.cc-purple { background: #f5eaff; color: #6a0dad; }
.cc-blue   { background: #edf2fb; color: #1a3a6b; }
.cc-green  { background: #eafaf0; color: #1a7a38; }

/* ── QUOTE BLOCK ── */
.quote-block {
  background: linear-gradient(135deg, #1a3a6b 0%, #1e5db5 100%);
  border-radius: 10px; padding: 18px 22px;
  position: relative; overflow: hidden;
}
.quote-block::before { content: '\201C'; position: absolute; top: -6px; left: 10px; font-size: 5rem; color: rgba(255,255,255,0.12); line-height: 1; }
.quote-block p   { font-size: 0.88rem; color: rgba(255,255,255,0.92); line-height: 1.7; font-style: italic; position: relative; z-index: 1; }
.quote-block cite { display: block; font-size: 0.7rem; color: var(--orange2); font-weight: 700; font-style: normal; margin-top: 8px; letter-spacing: 0.04em; }

/* ── CONTACT BLOCK ── */
.contact-block { font-size: 0.78rem; line-height: 2; color: #3a4a60; }
.contact-block a { color: var(--orange); font-weight: 600; }
.contact-block strong { color: var(--blue); }

/* ── SOCIAL BUTTONS ── */
.social-btn {
  border-radius: 12px; padding: 13px 16px;
  display: flex; align-items: center; gap: 13px; width: 100%;
  transition: filter 0.15s, transform 0.15s; text-decoration: none;
}
.social-btn:hover { filter: brightness(1.12); transform: translateX(4px); }
.social-icon-box {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.social-btn-text { display: flex; flex-direction: column; }
.social-btn-label { color: rgba(255,255,255,0.55); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; line-height: 1; margin-bottom: 3px; }
.social-btn-name  { color: #fff; font-size: 0.86rem; font-weight: 800; }
.fb-btn   { background: #1877f2; }
.ig-btn   { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.tt-btn   { background: #111; border: 1px solid rgba(255,255,255,0.1); }
.fb-icon-box { background: #fff; color: #1877f2; font-weight: 900; font-size: 1.2rem; }

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(135deg, var(--blue) 0%, #2a5ab0 50%, var(--orange2) 100%);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.footer-col { padding: 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.footer-col:last-child { border-right: none; }
.footer-col h4 { color: #fff; font-size: 0.92rem; font-weight: 700; margin-bottom: 12px; }
.footer-col a  { color: rgba(255,255,255,0.88); }
.contact-row { display: grid; grid-template-columns: 94px 1fr; gap: 0 8px; font-size: 0.79rem; color: rgba(255,255,255,0.85); }
.contact-row span { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; }
.contact-row span:nth-child(odd) { font-weight: 700; color: rgba(255,255,255,0.45); font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.contact-row span:nth-child(even) { font-weight: 500; }
.footer-map { margin-top: 8px; border-radius: 4px; overflow: hidden; height: 120px; background: #c8d8e8; }
.footer-map iframe { width: 100%; height: 120px; border: none; }
.footer-social { display: flex; flex-direction: column; gap: 12px; }
.fb-btn { background: #3b5998; border-radius: 8px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; width: 100%; transition: background 0.15s; }
.fb-btn:hover { background: #2d4373; }
.fb-icon-box { width: 36px; height: 36px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #3b5998; font-weight: 900; font-size: 1.3rem; flex-shrink: 0; }
.fb-btn span { color: #fff; font-weight: 700; font-size: 0.85rem; }
.footer-bottom { background: var(--blue); text-align: center; padding: 8px 24px; font-size: 0.72rem; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom a { color: rgba(255,255,255,0.5); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── RISSIE LOADER (page transition) ── */
.pg-loader { display: none; }

@media (max-width: 768px) {
  /* Header — stack vertically so crest and title are both centered */
  .site-header {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: auto; padding: 16px 16px 14px; gap: 10px;
  }
  .header-crest { height: 90px; background: rgba(255,255,255,0.92); border-radius: 50%; padding: 6px; filter: drop-shadow(0 3px 12px rgba(0,0,0,0.45)); }
  .header-name { font-size: clamp(1.1rem, 6.5vw, 1.6rem); white-space: normal; }
  .header-sub { font-size: 0.54rem; white-space: normal; letter-spacing: 0.08em; }
  .mascot-wrap { display: none; }

  /* Nav hamburger */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; padding: 0; }
  .nav-links.open { display: flex; }
  .nav-item > a {
    padding: 11px 20px; font-size: 0.95rem;
    border-bottom: 1px solid rgba(26,58,107,0.07);
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-item > a:hover, .nav-item:hover > a { font-weight: 600; }
  .nav-drop {
    position: static; box-shadow: none; min-width: unset; border-top: none;
    background: #e8eef5; border: none; border-left: 3px solid var(--orange);
  }
  .nav-item:hover .nav-drop { display: none; }
  .nav-item.drop-open .nav-drop { display: block; }
  .nav-drop a { padding: 10px 28px; }

  /* Layouts */
  .site-footer, .two-col, .three-col, .sidebar-layout { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .footer-col:last-child { border-bottom: none; }

  /* Sections */
  .pg-section { padding: 20px 16px; }

  /* Page banner */
  .page-banner { height: 110px; padding: 0 20px; }
  .page-banner-text h1 { font-size: 1.35rem; }
  .page-banner-text p { font-size: 0.78rem; }
}

/* ── WHATSAPP FLOAT ── */
#wa-float {
  position: fixed; bottom: 18px; right: 18px; z-index: 9996;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
#wa-float svg { width: 26px; height: 26px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.rv-delay-1 { transition-delay: 0.1s; }
.rv-delay-2 { transition-delay: 0.2s; }
.rv-delay-3 { transition-delay: 0.3s; }
.rv-delay-4 { transition-delay: 0.4s; }

/* ── COOKIE CONSENT BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #0d1e3d; color: rgba(255,255,255,0.88);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 3px solid var(--orange);
  font-size: 0.76rem; line-height: 1.6;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
#cookie-banner.hidden { transform: translateY(100%); }
#cookie-banner a { color: var(--orange2); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 7px 18px; border-radius: 6px;
  font-size: 0.74rem; font-weight: 800; cursor: pointer;
  border: none; transition: filter 0.15s;
}
.cookie-btn.accept { background: var(--orange); color: #fff; }
.cookie-btn.accept:hover { filter: brightness(1.1); }
.cookie-btn.decline { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn.decline:hover { background: rgba(255,255,255,0.2); }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 78px; right: 18px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff; border: none;
  border-radius: 50%;
  font-size: 1.3rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.22s, transform 0.22s, background 0.15s;
  z-index: 9997;
  box-shadow: 0 4px 16px rgba(26,58,107,0.3);
  pointer-events: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#backToTop:hover { background: var(--orange); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
