/* ============================================================
 * examentips.css — Page "Examentips" (examensurvival Frans)
 *
 * IMPORTANT : tout est scopé sous .examentips-page pour ne pas
 * entrer en collision avec main.css. Les variables (--bg, --text,
 * --muted, --border…) sont volontairement (re)définies sur le
 * wrapper et non sur :root, sinon elles écraseraient celles de
 * main.css et casseraient le header/footer global de cette page.
 * Police Outfit (titres) + Nunito (corps), chargées dans extra_css.
 * ============================================================ */

.examentips-page {
  --navy: #1B3A6B;
  --navy-dark: #0F2347;
  --red: #E5373A;
  --blue: #2563EB;
  --blue-light: #EBF3FF;
  --red-light: #FFF0F0;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --green: #16A34A;
  --green-light: #F0FFF4;
  --orange: #D97706;
  --orange-light: #FFFBEB;
  --purple: #7C3AED;
  --purple-light: #F5F3FF;

  font-family: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
}

.examentips-page * {
  box-sizing: border-box;
}

.examentips-page a {
  color: var(--blue);
  text-decoration: none;
}

.examentips-page a:hover {
  text-decoration: underline;
}

.examentips-page [id] {
  scroll-margin-top: 120px;
}

.examentips-page .et-subnav {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: safe center;
  gap: 6px;
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  z-index: 90;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.examentips-page .et-subnav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.examentips-page .et-subnav::-webkit-scrollbar {
  display: none;
}

.examentips-page .et-subnav a {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 11px;
  border-radius: 20px;
  transition: all .15s;
  flex-shrink: 0;
}

.examentips-page .et-subnav a:hover {
  background: var(--bg);
  color: var(--navy);
  text-decoration: none;
}

.examentips-page .et-subnav a.active {
  background: #EBF3FF;
  color: var(--navy);
}

.examentips-page .et-subnav a svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 2px;
}

.examentips-page .et-header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url('../img/fond_banner1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.examentips-page .et-header__inner {
  max-width: 960px;
  margin: 0 auto;
}

.examentips-page .et-level-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.examentips-page .et-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.4px;
  color: #fff;
  margin: 0 0 8px;
}

.examentips-page .et-header__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  max-width: 620px;
  margin: 0;
  line-height: 1.55;
}

.examentips-page .section {
  padding: 56px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.examentips-page .section-wrap {
  padding: 24px 0;
}

.examentips-page #tijdsbeheer {
  padding-top: 24px;
}

.examentips-page .section-wrap .section {
  padding-top: 0;
  padding-bottom: 0;
}

.examentips-page .section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.examentips-page .section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.examentips-page .section-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.examentips-page .icon-navy {
  background: var(--navy);
}

.examentips-page .icon-red {
  background: var(--red);
}

.examentips-page .icon-blue {
  background: var(--blue);
}

.examentips-page .icon-green {
  background: var(--green);
}

.examentips-page .icon-orange {
  background: var(--orange);
}

.examentips-page .icon-purple {
  background: var(--purple);
}

.examentips-page .section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.examentips-page .section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 3px;
}

.examentips-page .section-divider {
  height: 1px;
  background: var(--border);
  max-width: 960px;
  margin: 0 auto;
}

/* Plus de bandes blanches pleine largeur : les sections laissent transparaître
   le dégradé global, les cartes/tips/tableaux blancs flottent par-dessus
   (comme sur les pages grammatica). .bg-white est donc neutralisé. */
.examentips-page .bg-white {
  background: transparent;
}

/* STEPS */
.examentips-page .steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.examentips-page .step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: box-shadow .2s;
}

.examentips-page .step:hover {
  box-shadow: 0 4px 16px rgba(27, 58, 107, .08);
}

.examentips-page .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.examentips-page .step-num.red {
  background: var(--red);
}

.examentips-page .step-num.blue {
  background: var(--blue);
}

.examentips-page .step-num.green {
  background: var(--green);
}

.examentips-page .step-body h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.examentips-page .step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.examentips-page .step-body strong {
  color: var(--text);
}

.examentips-page .step-time {
  font-size: 12px;
  font-weight: 700;
  background: var(--blue-light);
  color: var(--blue);
  padding: 2px 9px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 5px;
}

/* CARDS GRID */
.examentips-page .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.examentips-page .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow .2s;
  border-left: 4px solid var(--navy);
}

.examentips-page .card:hover {
  box-shadow: 0 4px 16px rgba(27, 58, 107, .08);
}

.examentips-page .card.border-red {
  border-left-color: var(--red);
}

.examentips-page .card.border-blue {
  border-left-color: var(--blue);
}

.examentips-page .card.border-green {
  border-left-color: var(--green);
}

.examentips-page .card.border-orange {
  border-left-color: var(--orange);
}

.examentips-page .card.border-purple {
  border-left-color: var(--purple);
}

.examentips-page .card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.examentips-page .card h4 svg {
  width: 14px;
  height: 14px;
}

.examentips-page .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.examentips-page .card ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}

.examentips-page .card ul li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 14px;
  top: 2px;
}

.examentips-page .card em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

/* SIGNAALWOORDEN GRID — cartes blanches, liseré coloré en haut, pills colorées */
.examentips-page .sw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.examentips-page .sw-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.examentips-page .sw-cat.blauw {
  border-top-color: var(--blue);
}

.examentips-page .sw-cat.rood {
  border-top-color: var(--red);
}

.examentips-page .sw-cat.groen {
  border-top-color: var(--green);
}

.examentips-page .sw-cat.oranje {
  border-top-color: var(--orange);
}

.examentips-page .sw-cat h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.examentips-page .sw-cat.blauw h4 {
  color: var(--blue);
}

.examentips-page .sw-cat.rood h4 {
  color: var(--red);
}

.examentips-page .sw-cat.groen h4 {
  color: var(--green);
}

.examentips-page .sw-cat.oranje h4 {
  color: var(--orange);
}

.examentips-page .sw-words {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.examentips-page .sw-word {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
}

.examentips-page .sw-cat.blauw .sw-word {
  background: #dbeafe;
  color: #1d4ed8;
}

.examentips-page .sw-cat.rood .sw-word {
  background: #fee2e2;
  color: #b91c1c;
}

.examentips-page .sw-cat.groen .sw-word {
  background: #dcfce7;
  color: #15803d;
}

.examentips-page .sw-cat.oranje .sw-word {
  background: #fed7aa;
  color: #b45309;
}

.examentips-page .sw-cat p {
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.5;
  color: var(--muted);
}

/* TIP / ALERT — légère teinte + liseré gauche coloré (plus de fond plein) */
.examentips-page .tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--muted);
}

.examentips-page .tip.tip-blue {
  background: var(--blue-light);
  border-left-color: var(--blue);
}

.examentips-page .tip.tip-red {
  background: var(--red-light);
  border-left-color: var(--red);
}

.examentips-page .tip.tip-green {
  background: var(--green-light);
  border-left-color: var(--green);
}

.examentips-page .tip.tip-orange {
  background: var(--orange-light);
  border-left-color: var(--orange);
}

.examentips-page .tip-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.examentips-page .tip-icon svg {
  width: 18px;
  height: 18px;
}

.examentips-page .tip.tip-blue .tip-icon {
  color: #1e40af;
}

.examentips-page .tip.tip-red .tip-icon {
  color: #991b1b;
}

.examentips-page .tip.tip-green .tip-icon {
  color: #166534;
}

.examentips-page .tip.tip-orange .tip-icon {
  color: #92400e;
}

.examentips-page .tip p {
  font-size: 14px;
  line-height: 1.55;
}

.examentips-page .tip.tip-blue p {
  color: #1e40af;
}

.examentips-page .tip.tip-red p {
  color: #991b1b;
}

.examentips-page .tip.tip-green p {
  color: #166534;
}

.examentips-page .tip.tip-orange p {
  color: #92400e;
}

.examentips-page .tip strong {
  font-weight: 700;
}

.examentips-page .tip em {
  font-style: normal;
  font-weight: 700;
}

/* QUESTION TYPE CHIPS */
.examentips-page .qtype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.examentips-page .qtype-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  transition: all .2s;
}

.examentips-page .qtype-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 58, 107, .1);
}

.examentips-page .qtype-card .qt-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  margin: 0 auto 10px;
}

.examentips-page .qtype-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

.examentips-page .qtype-card p {
  font-size: 12px;
  color: var(--muted);
}

/* WOORDENBOEK */
.examentips-page .wdb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.examentips-page .wdb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 12px;
  padding: 18px;
}

.examentips-page .wdb-card .wdb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 8px;
}

.examentips-page .wdb-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}

.examentips-page .wdb-card h4 svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 5px;
}

.examentips-page .wdb-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.examentips-page .wdb-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

/* VERBANDEN TABLE */
.examentips-page .vb-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.examentips-page .vb-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.examentips-page .vb-table td {
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}

.examentips-page .vb-table tr:last-child td {
  border-bottom: none;
}

.examentips-page .vb-table tr:nth-child(even) td {
  background: #fafbfc;
}

.examentips-page .vb-verband {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.examentips-page .vb-words {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.examentips-page .vb-word {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
}

.examentips-page .vb-vert {
  color: #1d4ed8;
  background: #dbeafe;
}

.examentips-page .vb-vert-w {
  color: #1d4ed8;
}

.examentips-page .vb-teg {
  color: #b91c1c;
  background: #fee2e2;
}

.examentips-page .vb-teg-w {
  color: #b91c1c;
}

.examentips-page .vb-concl {
  color: #15803d;
  background: #dcfce7;
}

.examentips-page .vb-concl-w {
  color: #15803d;
}

.examentips-page .vb-gev {
  color: #b45309;
  background: #fed7aa;
}

.examentips-page .vb-gev-w {
  color: #b45309;
}

/* IRONIE */
.examentips-page .ironie-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.examentips-page .ir-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 12px;
  padding: 20px;
}

.examentips-page .ir-card .ir-icon {
  color: var(--navy);
  margin-bottom: 10px;
  display: block;
}

.examentips-page .ir-card .ir-icon svg {
  width: 26px;
  height: 26px;
}

.examentips-page .ir-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.examentips-page .ir-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.examentips-page .ir-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

/* OPEN VRAGEN */
.examentips-page .ov-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.examentips-page .ov-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px 18px;
}

.examentips-page .ov-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.examentips-page .ov-check svg {
  width: 12px;
  height: 12px;
  display: block;
}

.examentips-page .ov-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.examentips-page .ov-item strong {
  color: var(--navy);
}

.examentips-page .ov-item em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

/* CTA DE FIN */
.examentips-page .et-tips-cta {
  position: relative;
  background-image: url('../img/hero_img_grammalab.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 56px 32px;
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
}

.examentips-page .et-tips-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  pointer-events: none;
}


.examentips-page .et-tips-cta h3,
.examentips-page .et-tips-cta p,
.examentips-page .et-tips-cta__links {
  position: relative;
  z-index: 1;
}

.examentips-page .et-tips-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.examentips-page .et-tips-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.examentips-page .et-tips-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.examentips-page .et-tips-cta__link {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 24px;
  transition: all .2s;
  backdrop-filter: blur(4px);
}

.examentips-page .et-tips-cta__link:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.40);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.examentips-page .et-tips-cta__link.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 55, 58, 0.45);
}

.examentips-page .et-tips-cta__link.primary:hover {
  background: #c82b2e;
  border-color: #c82b2e;
  box-shadow: 0 6px 20px rgba(229, 55, 58, 0.55);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .examentips-page .et-header {
    padding: 22px 16px;
  }

  .examentips-page .section {
    padding: 40px 16px;
  }

  .examentips-page .sw-grid {
    grid-template-columns: 1fr 1fr;
  }

  .examentips-page .qtype-grid {
    grid-template-columns: 1fr 1fr;
  }

  .examentips-page .vb-table th:last-child,
  .examentips-page .vb-table td:last-child {
    display: none;
  }
}