/* ===========================================================
   style-new2.css  
   Zelfstandig bestand — inclusief Urbanist fonts
   Kleurbeheer via :root variabelen
   Datum: 2025-10-27
   =========================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --blue: #0000FF;
  --white: #FFFFFF;
  --black: #000000;
  --gray-light: #CCCCCC;
  --gray-dark: #999999;
  --text-color: #11224D;
  --bg-color: #ECEBFF;
}


/* ---------- FONTS (URBANIST) ---------- */
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    local('Urbanist Bold'),
    url('/app/css/fonts/Urbanist/Urbanist-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src:
    local('Urbanist Italic'),
    url('/app/css/fonts/Urbanist/Urbanist-Italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    local('Urbanist Light'),
    url('/app/css/fonts/Urbanist/Urbanist-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local('Urbanist Regular'),
    url('/app/css/fonts/Urbanist/Urbanist-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    local('Urbanist SemiBold'),
    url('/app/css/fonts/Urbanist/Urbanist-SemiBold.woff2') format('woff2');
}


/* ---------- CSS RESET ---------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body { overflow-x: clip; }

/* ---------- BASE STYLES ---------- */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 62.5%;
  font-family: 'Urbanist', Arial, sans-serif;
  line-height: 1;
}
p {
  font-family: 'Urbanist', sans-serif;
  padding: .4em 0;
  font-size: 2.2em;
  line-height: 1.6em;
  font-weight: 400;
}
a:hover, a:focus, a:active { text-decoration: underline; }
a:link, a:visited, a:hover, a:active { color: var(--blue); text-decoration: none; }

ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
.centerfix { width: fit-content; margin: auto; }

/* ---------- COURSE / LOGIN BAR ---------- */
.coursebar, .topbar {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 60px;
  text-align: center;
  background-color: var(--white);
  color: var(--blue);
}
.logoholder { position: relative; }
.coursebar img {
  vertical-align: middle;
  position: relative;
  z-index: 9;
  width: 230px;
  margin-top: 5px;
}
@media screen and (max-width:690px){ .logoholder img{ width:230px; } }
@media screen and (max-width:520px){ .logoholder img{ width:180px; } }

/* ---------- ACCOUNT SECTION ---------- */
.register {
  float: right;
  width: 150px;
  margin-top: 7px;
  display: block;
}
.register a {
  color: var(--blue);
  font-size: 1.3em;
  font-family: Arial, sans-serif;
}
.register a:hover { text-decoration: underline; }

.cockpit {
  height: 44px;
  display: flex;
  align-items: flex-start;
  float: right;
  position: absolute;
  top: 14px;
  right: 14px;
}
.account {
  height: 24px;
  width: 30px;
  background-color: transparent;
  float: right;
  z-index: 10;
}
.accountIcon {
  display: block;
  height: 100%;
  width: 100%;
  fill: var(--white);
}
.notlogged { fill: rgba(0,0,255,0.1); }
.inlogged { fill: rgba(0,0,255,0.8); }

/* ---------- NAVIGATION & HAMBURGER MENU ---------- */
.p-mainmenu {
  height: 100%;
  float: left;
  position: absolute;
  z-index: 1;
}
.p-mainmenu a {
  color: var(--black);
  text-decoration: none;
  text-align: left;
  padding-left: 20px;
}

.hamburger {
  height: 20px;
  margin: 15px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
  z-index: 120;
  float: left;
  display: none;
}
.hamburger div {
  width: 14px;
  height: 3px;
  margin-top: 3px;
  background-color: var(--blue);
  transition: all .2s ease-in-out;
}
#toggle1 { display: none; }
#toggle1:checked + .hamburger .top {
  transform: rotate(-45deg);
  margin-top: 10px;
}
#toggle1:checked + .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -3.1px;
}
#toggle1:checked + .hamburger .bottom {
  transform: scale(0);
}
#toggle1:checked ~ .mainmenu { height: 400px; }
#toggle1:checked ~ .menutext { display: none; }
#toggle1:checked ~ .hamburger { display: block; }

.menutext {
  height: 20px;
  margin: 20px 15px 15px 15px;
  z-index: 12;
  float: left;
  text-transform: uppercase;
  display: block;
  color: var(--blue);
  font: 400 20px 'Urbanist', sans-serif;
}
.hamcolor { color: var(--blue); }

.mainmenu {
  margin: 0;
  display: grid;
  padding: 0;
  list-style: none;
  clear: both;
  height: 0;
  overflow: hidden;
  transition: height .4s ease;
  z-index: 120;
  width: 390px;
  background-color: var(--white);
}
.mainmenu a:first-child { margin-top: 10px; }
.mainmenu a:last-child { margin-bottom: 40px; }

.menulink {
  margin-left: 10px;
  font-size: 1.6em;
  line-height: 1em;
  text-transform: uppercase;
  font-family: 'Urbanist', sans-serif;
  color: var(--black) !important;
}
.navlink {
  width: 100%;
  margin: 0 0 0 10px;
  text-transform: uppercase;
  font: 400 1.6em 'Urbanist', sans-serif;
  color: var(--blue) !important;
}
.navlink:hover { border-left: 1px solid pink; }

@media screen and (max-width:690px) {
  .hamburger { display: block; }
  .menutext { display: none; }
}




/* ---------- HOME / LAYOUT ---------- */
.sep {
  height: 60px;
  width: auto;
}

.flexi {
  display: flex;
  flex-direction: row;
}

.enter {
  margin-top: 100px;
}

.second {
  flex: 1 1 auto;
  width: 90%;
  padding: 0;
  margin: 0;
  vertical-align: top;
}
.second h1 {
  font-size: 5em;
  font-weight: 200 !important;
  color: var(--blue);
  font-optical-sizing: auto;
  font-style: normal;
}
.second p {
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--blue);
  margin-bottom: 20px;
}

.seventy {
  width: 70%;
}

/* Video responsiviteit */
.videoframe {
  padding: 56.25% 0 0 0;
  position: relative;
  display: block;
}
.videoframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}
@media (max-width: 720px) {
  .videoframe { display: none; }
}

/* ---------- CHAPTERS (grid met thumbnails) ---------- */
.chapters {
  padding-top: 4rem;
}
.chapters > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
  grid-gap: 1rem;
}
.chapters > ul > li {
  background-color: var(--white);
  border-radius: 5%;
  min-height: 385px;
  margin-top: 10px;
}
.chapters > ul > li > figure {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
}
.chapters > ul > li > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chapters h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2em;
  padding: 1.5em 0 .1em 0;
  margin-left: 20px;
  font-weight: 400;
}
.chapters > ul li p {
  color: rgb(70,70,70);
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1.8em;
  line-height: 1.5em;
}
@media (max-width: 720px) {
  .chapters { padding-top: 0; }
  .chapters > ul > li { margin: 20px; }
}

/* ---------- COURSE BUTTONS ---------- */
.coursebutton {
  display: inline-block;
  margin-left: 20px;
  padding: 0.6rem 1.7rem;
  font-size: 1.8em;
  font-family: 'Urbanist', sans-serif;
  text-decoration: none;
  border-radius: 0.25rem;
  background-color: var(--blue);
  color: var(--white) !important; /* <-- expliciet en prioriteit */
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}


.coursebutton:hover,
.coursebutton:focus {
  background-color: #00008B; /* donkerblauw */
  color: var(--white);
  text-decoration: none;
}



/* Grijze variant */
.coursebutton.gray {
  background-color: var(--gray-light);
  color: var(--black);
}
.coursebutton.gray:hover,
.coursebutton.gray:focus {
  background-color: var(--gray-dark);
  color: var(--white);
}

/* ---------- BUTTONS + UITSMIJTER ---------- */
.link-main {
  font: 400 1.063rem/1.25rem 'Urbanist';
  color: #1c1d1d;
  letter-spacing: .8px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  transition: .2s linear;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
}
.link-main .btn-icon {
  display: inline-block;
  width: 17px;
  height: 18px;
  top: 4px;
  position: relative;
  margin-left: 6px;
  background: url("../img/icons/icon-btn-arrow.svg") center/17px 18px no-repeat;
  transition: .2s linear;
}

.uitsmijter {
  padding: 40px 1.25rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: rgba(255,0,0,0.2);
}
.uitsmijter h2 { padding-top: 10px; }
.uitsmijter ul { list-style: none; line-height: 180%; }
.uitsmijter ul li::before {
  content: "\2022";
  color: var(--blue);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.uitsmijter li {
  font-size: 18px;
  margin-left: 18px;
  line-height: 1.8em;
}

/* btn-main (voor generieke actieknoppen) */
.btn-main {
  font: 400 1.063rem/1.25rem 'Urbanist';
  color: var(--blue);
  letter-spacing: .8px;
  padding: .875rem 1.563rem .75rem 2.188rem;
  border: 0;
  box-shadow: none;
  transition: .5s;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  background-color: transparent;
  height: 2.813rem;
  text-decoration: none;
  text-align: center;
}
.btn-main.small-padding { padding: .875rem 1.25rem .75rem; }
.btn-main:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: var(--white);
  z-index: -2;
}
.btn-main:after {
  position: absolute;
  transition: .5s;
  content: '';
  width: 0;
  bottom: 0;
  background: var(--blue);
  height: 120%;
  left: -10%;
  transform: skewX(-11deg);
  z-index: -1;
}
.btn-main:hover { color: var(--white); }
.btn-main:hover:after { width: 140%; }
.btn-main .icon-arr-black {
  background: url("../img/icons/icon-arr-black.svg") center/14px no-repeat;
  width: 14px; height: 14px;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 2px;
  transition: .5s;
}
.btn-main:hover .icon-arr-black {
  background-image: url("../img/icons/icon-arr-yellow.svg");
}
@media (max-width: 767px) {
  .btn-main .icon-arr-black { display: none; }
}

/* ---------- FOOTER & PARTNERLOGO’S ---------- */
footer {
  background-color: #333;
  padding: .75rem;
  color: var(--white);
  text-align: center;
  font-size: .75rem;
  position: relative;
}
.feedback a,
.feedback a:hover {
  color: var(--white);
}

.partner-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 750px;
}
.partner-container > div {
  margin: auto !important;
}
.partnerlogo img {
  width: 150px;
  height: auto;
  margin: 20px;
}
@media (max-width:720px) {
  .partner-container {
    width: 290px;
  }
  .partner-container > div {
    margin: auto !important;
    min-height: 80px !important;
  }
  .partnerlogo img {
    width: 150px;
    height: auto;
  }
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media only screen and (max-width: 850px) {
  .register { display: none; }
  .accountIcon { height: 80%; width: 80%; fill: var(--white); }
}
@media (max-width: 960px) {
  .topbar { height: 40px; }
  .coursebar { height: 50px; }
}
@media (max-width: 360px) {
  a.back:link, a.back:visited { left: 30px; }
  p { font-size: 1.7em; }
}
@media (max-width: 500px) { .coursebar { height: 50px; } }
@media (max-width: 400px) { .coursebar { height: 40px; } }
@media (max-width: 720px) {
  .flexi { flex-direction: column; }
  .second { margin: 20px; }
  .seventy { width: 80%; }
  .enter { margin-top: 50px; }
  .second h1 { font-size: 4em; }
  .chapters { padding-top: 0; }
}

/* ---------- END OF FILE ---------- */





h1, h3, h4, h5 {	font-family: 'Urbanist', sans-serif; }


h1 {	font-size: 6em;	line-height: 1.2em;  }

header h1 {	padding:2em 0 0 0;  text-transform: uppercase;	}



h2 {	font-family: 'Urbanist', sans-serif;
	font-size:4em;
	padding:3em 0 0.1em 0em;
	}

h3 {	font-size:3em;
	padding:1.5em 0 0.1em 0em;
	}

h4 {	font-size:2em;
	padding:1.em 0 0.1em 0em;
	}

h5 {	font-size:1.7em;
	padding:1.em 0 0.1em 0em;
	}



.start a {	color: #fff;	}




@media (max-width:960px) {


.panel h1, .panel h2, .inner h2, .inner p, .panel h3, .panel h4, .panel pre, .panel dl, .panel ul, .panel p {
    margin-left:30px;
    margin-right:30px;
    }


    h1 { font-size:6em;  }

    h2 { font-size:3.5em; padding-top: 1.8em;  }

    h3 { font-size:3em; }

    h4 { font-size:3em;}

    h5 { font-size:2em;}

}




@media (max-width:600px) {

h1 {	font-size:5em; }

h2 {	font-size:3em; }

h3 {	font-size:3em; }

h4 { font-size:3em;}

h5 { font-size:2em;}

p, #num {  font-size: 2em;	}

}


@media (max-width:460px) {

h1 {    font-size: 10vw; }
h2 {	font-size:3em;	padding-top: 2em;	}
h3 {	font-size:3em;	padding-top: 1.5em;	}
h4 {	font-size:3em;	}
h5 {	font-size:1.9em;	}
p, #num {    font-size: 1.8em; }


}

