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

    :root {
      --red:    #e1143c;
      --red-dk: #b80e2f;
      --navy:   #00124d;
      --white:  #ffffff;
      --light:  #f5f5f5;
      --border: #e0e0e0;
      --text:   #333333;
      --muted:  #666666;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Ubuntu', sans-serif;
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    /* ── HEADER ── */
    #Header {
      background: var(--white);
      border-bottom: 3px solid var(--red);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 70px;
    }

    .header-nav-left { display: flex; align-items: center; }
    .header-logo     { display: flex; justify-content: center; }
    .header-right    { display: flex; justify-content: flex-end; }

    .logo img { height: 44px; width: auto; display: block; }

    nav ul { list-style: none; display: flex; gap: 2rem; }

    nav ul li a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    nav ul li a:hover { color: var(--red); border-bottom-color: var(--red); }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    @media (max-width: 720px) {
      .header-inner { grid-template-columns: 1fr auto; }
      .header-nav-left { display: none; }
      .header-logo { justify-content: flex-start; }
      .nav-toggle { display: flex; }
    }

    /* ── DRAWER OVERLAY (blur) ── */
    #nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(255,255,255,0.25);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    #nav-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    /* ── DRAWER PANEL ── */
    #mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: min(75vw, 260px);
      background: var(--white);
      box-shadow: -4px 0 24px rgba(0,0,0,0.12);
      z-index: 210;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }

    #mobile-drawer.open { transform: translateX(0); }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.25rem;
      height: 60px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .drawer-header-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
    }

    .drawer-close {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: color 0.15s;
    }

    .drawer-close:hover { color: var(--navy); }

    .drawer-close svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .drawer-nav { flex: 1; overflow-y: auto; padding: 0.5rem 0; }

    .drawer-nav ul { list-style: none; }

    .drawer-nav ul li a {
      display: block;
      padding: 0.9rem 1.5rem;
      font-size: 1rem;
      font-weight: 400;
      color: var(--navy);
      transition: color 0.15s, padding-left 0.15s;
    }

    .drawer-nav ul li a:hover {
      color: var(--red);
      padding-left: 1.85rem;
    }

    /* ── BACK TO TOP ── */
    #back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: var(--navy);
      border: 2px solid var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s, background 0.2s;
      z-index: 190;
      box-shadow: 0 4px 16px rgba(0,18,77,0.25);
    }

    #back-to-top.visible { opacity: 1; transform: translateY(0); }
    #back-to-top:hover { background: var(--red); }

    #back-to-top svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #fff;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── SECTIONS ── */
    .section { padding: 4rem 2rem; }
    .section--gray { background: var(--light); }

    .container { max-width: 1100px; margin: 0 auto; }

    /* ── FANCY HEADING ── */
    .fancy-heading { text-align: center; margin-bottom: 2.5rem; }

    .fancy-heading .icon-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      background: var(--red);
      border-radius: 50%;
      margin-bottom: 1rem;
    }

    .fancy-heading .icon-wrap svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: #fff;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .fancy-heading h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .fancy-heading p {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ── BUTTON ROW ── */
    .btn-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .btn-main {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1rem 1.25rem;
      background: var(--red);
      color: #fff;
      font-family: 'Ubuntu', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 4px;
      text-align: center;
      transition: background 0.2s, transform 0.15s;
      line-height: 1.3;
    }

    .btn-main:hover { background: var(--red-dk); transform: translateY(-1px); }

    .btn-main svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── DESTINATION CARDS ── */
    .dest-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 640px) { .dest-grid { grid-template-columns: 1fr; } }

    .dest-card {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.75rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 4px solid var(--card-color, var(--red));
      border-radius: 4px;
      text-decoration: none;
      color: var(--text);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .dest-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }

    .dest-card-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--card-bg, #fde8ec);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .dest-card-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: var(--card-color, var(--red));
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .dest-card-body { flex: 1; min-width: 0; }

    .dest-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.3rem;
    }

    .dest-card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

    .dest-card-arrow {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      fill: none;
      stroke: var(--card-color, var(--red));
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s;
    }

    .dest-card:hover .dest-card-arrow { transform: translateX(3px); }

    .dest-card--jongens { --card-color: #0057b8; --card-bg: #e6f0fb; }
    .dest-card--meisjes { --card-color: #c2006b; --card-bg: #fbe6f3; }
    .dest-card--verhuur { --card-color: #1a7a3e; --card-bg: #e6f5ec; }
    .dest-card--shop    { --card-color: #e1143c; --card-bg: #fde8ec; }

    /* ── INFO GRID ── */
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

    @media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; } }

    .info-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
    }

    .info-box h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      padding-bottom: 0.75rem;
      margin-bottom: 1rem;
      border-bottom: 2px solid var(--red);
    }

    .info-box ul { list-style: none; padding: 0; }

    .info-box ul li {
      padding: 0.35rem 0 0.35rem 1.25rem;
      position: relative;
      font-size: 0.925rem;
      color: var(--text);
    }

    .info-box ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
    }

    .info-box ul li a { color: var(--red); }
    .info-box ul li a:hover { text-decoration: underline; }

    /* ── MAP ── */
    .map-wrap {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 2rem;
    }

    .map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

    /* ── FOOTER ── */
    #Footer {
      background: var(--navy);
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 1.5rem 2rem;
      font-size: 0.82rem;
      line-height: 1.9;
    }

    #Footer a { color: rgba(255,255,255,0.8); }
    #Footer a:hover { color: var(--red); }