/* ==========================================================
   CANTARE TEMPLATE — FULL STYLESHEET
   ========================================================== */

@font-face {
    font-family: 'Bresley';
    src: url('Bresley-Regular.woff2') format('woff2'),
        url('Bresley-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root{
  /* palette */
  --c1:#127379;
  --c2:#a7a9ac;
  --c3:#231f20;
  --c4:#ffffff;
  --c5:#0f666c;
  --c6:#0d5358;
  --c7:#e7eff0;
  --c8:#cfe0e2;
  --c9:#222222;

  /* layout */
  --inner: 1200px;
  --pad: 20px;

  --menu-h: 90px;

  /* radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --user-font-scale: 1;
}


html, body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: calc(18px * var(--user-font-scale));
	line-height: calc(26px * var(--user-font-scale));
	margin:0;
  	padding:0;
	color: #4f4f4f;
}
*, *::before, *::after{ box-sizing:border-box; }

img{ max-width:100%; display:block; }


h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	margin: 40px 0 0;
	font-size: 60px;
	line-height: 70px;
	color: #58c5ea;
	padding-top: 5px;
	padding-left: 0;
}

h2 {
  font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	color: #e6cf2f !important;
	line-height: 60px !important;
	margin-top: 16px;
	margin-bottom: 5px;
}

h3 {
  font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 50px !important;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #e6cf2f;
	font-size: 26px;
}

h4{
  font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
  font-size: 22px
  line-height: 40px !important;
  margin-top: 27px;
  color: #e6cf2f;
}

@media (max-width: 900px) {
h1 {
	font-size: 40px;
	line-height: 50px;
	
	}
}

p {
	margin: 5px 0;
	padding: 0;
}

a{
	color: #1a6f75;
	text-decoration:none;
}

a:hover{
	color: #47b2b9;
}

.landingpage-cta {
  margin-bottom: 50px;
}

.landingpage-cta-button {
	display: inline-block;
	padding: 20px;
	border-radius: 10px;
	background: #58c5ea;
	color: #fff !important;
	text-decoration: none !important;
	transition: transform 0.2s ease;
	margin: 20px;
}

.landingpage-cta-button:hover {
  transform: scale(1.1);
  color: #fff !important;
  background:#36b1db;
  text-decoration: none !important;
}

#content {
	margin: 0 auto;
	width: 1200px;
	max-width: calc(100% - 60px);
	padding: 0 30px;
}

#content ul {
	color: #1a6f75;
	background: var(--pto-btn-bg);
	border-radius: 8px;
	padding: 20px 40px;
}

#module-sections {
	margin: 0 auto;
	width: 100%;
	max-width:100%;
}
/* Veiligheidshelmstickers: standaard tekstpagina stijl */


#content .section p,
#content p,
#content li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #52565d;
  margin: 0 0 10px;
}

#content .section + .section {
  margin-top: 26px;
}



/* Header */
.site-header {
  width: 100vw;
  min-height: 250px;
  position: relative;
  z-index: 999999999;
  background-image: url("images/head3600.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-header__inner {
  width: 1260px;
  max-width: 96%;
  min-height: 250px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.text-resizer {
  position: absolute;
  top: 16px;
  right: 0;
  display: inline-flex;
  gap: 6px;
  z-index: 5;
}

.text-resizer__btn {
  min-width: 36px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(143, 26, 38, 0.9);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: arvo, serif;
  font-size: 14px;
  line-height: 1;
  opacity: .4;
}

.text-resizer__btn--sm { font-size: 14px; }
.text-resizer__btn--md { font-size: 18px; }
.text-resizer__btn--lg { font-size: 22px; }

.text-resizer__btn:hover,
.text-resizer__btn.is-active {
  background: #8f1a26;
  opacity: 1;
}

.site-header__logo {
  width: clamp(160px, 18vw, 250px);
  flex: 0 0 auto;
}

.site-header__logo img {
  width: 100%;
  height: auto;
}

.site-header__nav {
  flex: 1 1 auto;
}

@media (max-width: 2400px) {
  .site-header {
    background-image: url("images/head2400.png");
  }
}

@media (max-width: 1800px) {
  .site-header {
    background-image: url("images/head1800.png");
  }
}

@media (max-width: 1000px) {
.site-header {
	background-image: url("images/head1000.png");
	background-size: 100%;
	background-position-y: top;
}
  .text-resizer {
    top: 10px;
    right: 6px;
  }
}

@media (max-width: 900px) {
  .site-header__logo {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 4;
  }
  .text-resizer {
    top: 12px;
    right: 65px;
  }
}

.header-photo {
  width: 100%;
  margin-top: -110px;
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}



@media (prefers-reduced-motion: reduce) {
  .landingpage-cta__button {
    transition: none;
  }

  .landingpage-cta__button:hover {
    transform: none;
  }
}


@media (max-width: 1000px) {
.header-photo {
	width: 100%;
	margin-top: -170px;
	position: relative;
	z-index: 1;
}
}

@media (max-width: 900px) {
  .header-photo {
    width: 100%;
    margin-top: -190px;
    position: relative;
    z-index: 1;
  }
}

.header-photo picture,
.header-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
}

.header-photo__scroll {
  position: absolute;
  left: 50%;
  bottom: 26%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #8f1a26;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  text-decoration: none;
}

.header-photo__scroll span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translateY(-5px) rotate(45deg);
}

.header-photo__scroll:hover,
.header-photo__scroll:focus {
  background: #520e0d;
  border-color: #fff;
}

@media (max-width: 900px) {
  .header-photo__scroll {
    display: none;
  }
}

.content-overlap {
  position: relative;
  z-index: 3;
}

#content img {
  border-radius: 20px;
}

#content {
  scroll-margin-top: 30px;
}
