@charset "UTF-8";



/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,button,input,select,textarea,a { color: #222; }
html, body { min-height: 100%; -webkit-text-size-adjust: 100%; }
html { overflow-y: auto; overflow-x: hidden; }
body { font-size: 16px; line-height: 1.5; font-weight: 300; font-family: "Mark W01", 'Avenir', 'Helvetica Neue',Helvetica,Arial,sans-serif; background: #f4f5ee; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

::-moz-selection { background: #ddd; text-shadow: none; }
::selection { background: #ddd; text-shadow: none; }

img { vertical-align: middle; }

:focus { outline: 0; }
:focus { outline:none; } ::-moz-focus-inner { border:0; }
a:focus { outline: none; }
a { text-decoration: none; color: inherit; }
a, a:hover, a:active { outline: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
 
ul, ol { list-style: none; padding: 0; margin: 0; }

button { margin: 0; padding: 0; border: 0; cursor: pointer; cursor: hand; background-color: transparent; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; -moz-appearance: none; -webkit-appearance: none; }

strong, b { font-weight: 400; }

[class^="icon-"], [class*=" icon-"] { height: 100%; width: 100%; display: inline-block; fill: currentColor; vertical-align: middle; }



/* ==========================================================================
   Custom styles
   ========================================================================== */


/* 
 *	 elements 
 *	
 */

section {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.container, footer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1180px;
}

.row {
  position:relative;
  clear: both;
}

.flex {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-row-reverse { flex-direction: row-reverse; }

.flex-align-left { justify-content: flex-start; }
.flex-align-right { justify-content: flex-end; }
.flex-align-center { justify-content: center; }
.flex-align-between { justify-content: space-between; }

.flex-valign-top { align-items: flex-start; }
.flex-valign-center { align-items: center; }
.flex-valign-bottom { align-items: flex-end; }
.flex-valign-stretch { align-items: stretch; }

.flex-wrap { flex-wrap: wrap; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0;
}

.img {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0) scale(1.0, 1.0);
}

p {	
  margin-top: 0;
  margin-bottom: 0;
}

/*
 *  section home
 *
 */

.section-home:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: #101019;
  background: linear-gradient(110deg, #191928 0%, #101019 40%, #101019 100%); 
  content: "";
}


.section-home .container {
  position: relative;
  display: flex;
  max-width: 100%;
  min-height: 100vh;
}
 
.columns {
  position: relative;
  width: 100%;
}

.columns .column {
  position: relative;
  width: 50%;
} 

.columns .column-text {
  margin: 4.5em 0;
  z-index: 2; 
}

.columns .column-text > div {
  position: relative;
  max-width: 780px;
  /* NR TMP*/
  max-width: 600px;
  padding: 0 140px 0 100px;
}

.page-title {
  margin: 0;
  color: #c4734e;
  font-family: "bebas-neue-pro", 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 6.250rem;
  font-weight: 400;
  line-height: 0.75;
  text-transform: uppercase;
}

.description {
  margin: 2.75em 0 2em 0;
  font-size: 1rem;
  line-height: 1.5;
}

.description h2 {
  margin: 0 0 0.5em 0;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.1;
}

.description h2:not(:first-child) {
  margin-top: 1.5em;
}

.description p, .description ul {
  margin: 0.5em 0 0 0;
  font-size: 1em;
  line-height: 1.3;
}

.description ul li {
  position: relative;
  padding-left: 1em;
}

.description ul li:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0.25em;
  content: " - ";
}

.links {
  position: relative;
  margin: 0;
  width: 100%;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase; 
}

.links li {
  display: block;
}

.links li:not(:first-child):before {
  content: "\00a0 - ";
}

.links li a {
  transition: color .25s cubic-bezier(.2,.6,.3,1);
}

.links li a:hover {
  color: #c4734e;
}

.columns .column-image {
  height: 100%;
  z-index: 1;
}

.columns .column-image .image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 120%;
  overflow: hidden;
}

.columns .column-image .img {
  position: absolute;
  right: 0;
  top: 0;
  height: 170%;
  width: 100%;
}

.columns .column-image .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}



/* home */


.page-home {
  background: #000;
  overflow: hidden;
}

/* Fullscreen video achtergrond */
.page-home .video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Optionele donkere overlay */
.page-home .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

/* Midden content */
.page-home .hero {
  with: 100%;
  max-width: 500px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 3rem;
}

/* Responsive SVG logo */
.page-home .logo {
  position: relative;
  display: block;
  width: 100%;
}

.page-home .logo span {
  display: block;
  padding-top: 68%;
  width: 100%;
  height:0;
  color: #fff;
}

.page-home .logo svg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: currentColor;
}


/* Navigatie links */
.page-home .nav-links {
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 0 5px;
}

.page-home .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.page-home .nav-links a:hover {
  opacity: 0.7;
}

/* Mobiel */
@media (max-width: 390px) {
  
  .page-home .hero { padding: 2rem }
  
  .page-home .nav-links a {
    font-size: 0.875rem;
  }
}
