/* 1.1.general-setting-pages *************************/
/****************************************************/
:root {
	--pr-color: #fff;
	--second-color: #0a0a0a;
	--cubicbz: cubic-bezier(.9, 0, .1, 1);
	--fz-big: 60px;
}

* {
	box-sizing: border-box;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	margin: 0;
	padding: 0;
	font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
	background: var(--second-color);
}

/******************************************/
section {
	padding-top: 150px;
	padding-bottom: 50px;
}

.wrapp {
	width: 100%;
	height: auto;
	overflow: hidden;
	z-index: 1;
}

.content {
	width: 100%;
	padding: 0 70px;
}

.char {
	display: inline-block;
}

/* Paralax Effect On GSAP **********************************/
/* header ********/
.header {
	position: relative;
	display: flex;
	padding: 0 70px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
}

.header__marq {
	position: absolute;
	bottom: 0;
	left: 0;
}

.header__marq {
	width: 100%;
	height: auto;
	background: #171717;
	overflow: hidden;
}

.header__marq-wrapp {
	display: flex;
	width: 100%;
	height: auto;
	padding: 8px 70px;
}

.header__marq-txt {
	position: relative;
	flex: 0 0 auto;
	display: inline-block;
	padding-right: 55px;
	margin-right: 15px;
	text-transform: uppercase;
	color: var(--pr-color);
	color: #9e9e9e;
	font-size: 35px;
}

.header__marq-star {
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0;
}

.header__marq-star img {
	display: block;
	width: 100%;
	height: 100%;
}

.title {
	position: absolute;
	margin: 0;
	font-size: 85px;
	color: var(--pr-color);
	text-transform: uppercase;
	mix-blend-mode: difference;
	z-index: 2;

	/* nieuw: uitlijnen links */
	text-align: left;
	left: 70px;        /* zelfde als je padding in .header */
	right: auto;
}


.title_paralax {
	display: inline-block;
	will-change: transform;
}

.title .stroke {
	display: inline-block;
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.header__img {
	position: absolute;
	width: 55%;
	height: 100%;
	top: 0;
	right: 100px;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	overflow: hidden;
}

.header__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-title {
	position: relative;
	margin: 0;
	margin-bottom: 60px;
	line-height: .8;
	font-size: 70px;
	text-align: center;
	color: var(--pr-color);
	text-transform: uppercase;
}

.section-title .stroke {
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.section-title__square {
	position: absolute;
	display: inline-block;
	width: 130px;
	height: 130px;
	border: 1px solid #4b4b4b;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

/* about ********/
.about .section-title {
	text-align: center;
}

.about__wrapp {
	display: flex;
	justify-content: space-between;
}

.about__img,
.about__txt {
	width: calc(50% - 35px);
	height: auto;
}

.about__txt {
	padding-right: 70px;
}

.about__p {
	line-height: 1.4;
	font-size: 20px;
	color: #818181;
}

.about__img {
	height: 100vh;
	overflow: hidden;
}

.about__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* benefits ********/
.benefits__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	width: 100%;
	height: auto;
}

.benefits__item {
	list-style: none;
	width: calc(33.33% - 27px);
}

.benefits__num {
	display: inline-block;
	font-size: 60px;
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.benefits__p {
	font-size: 20px;
	color: #8f8e8e;
}

/* work ********/
.work {
	padding-top: 150px;
}

.work__wrapp {
	display: flex;
	flex-wrap: wrap;
	row-gap: 120px;
	justify-content: space-between;
	padding: 0 120px;
}

.work__item {
	position: relative;
	width: calc(50% - 60px);
	height: 100vh;
}

.work__item-num {
	position: absolute;
	display: inline-block;
	font-size: 70px;
	color: var(--pr-color);
	mix-blend-mode: difference;
	z-index: 2;
}

.work__item-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.work__item-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* serv ********/
.serv__item {
	position: relative;
	padding: 40px 0;
	border-bottom: 1px solid #2f2e2e;
}

.serv__item-arrow {
	position: absolute;
	display: inline-block;
	width: 55px;
	height: 55px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.serv__item-arrow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: rotate(180deg);
}

.serv__item-txt {
	font-size: 50px;
	color: #4b4b4b;
	text-transform: uppercase;
}


/* footer ********/
.footer {
	display: flex;
	flex-direction: column;   /* animatie boven, info eronder */
	align-items: center;
	justify-content: center;
	padding: 300px 0;
	height: auto;             /* geen geforceerde 100vh meer */
	gap: 30px;                /* ruimte tussen animatie en info */
}

.footer__div {
	font-size: 40px;
	letter-spacing: 15px;
	color: var(--pr-color);
	text-transform: uppercase;
}

.footer__div span {
	display: inline-block;
}
.footer-info {
	text-align: center;
	color: #ffffff;
	font-size: 16px;
}

.footer-info p {
	margin-bottom: 6px;
}

.footer-info a {
	color: #ffffff;
	text-decoration: underline;
}

.footer-info a:hover {
	text-decoration: none;
}

.footer-sep {
	display: inline-block;
	width: 80px;
	height: 1px;
	background: #4b4b4b;
	margin: 10px 0 14px;
}

/*linken naar website en url*/
.serv__item-text {
	font-size: 50px;
	color: #4b4b4b;
	text-transform: uppercase;
	text-decoration: none;   /* geen standaard-underline */
	display: inline-block;   /* voor eventuele hover-effecten */
}

.serv__item-text:hover {
	color: #ffffff;          /* voorbeeld hoverkleur */
}
/* extra ruimte tussen alinea's */
.about__p {
  margin-bottom: 20px;
}
/* contact CTA ********/
.contact-cta {
  padding: 120px 0 140px;   /* ruimte boven/onder */
}

.contact-cta .content {
  text-align: center;
}

.contact-cta .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-cta__text {
  font-size: 20px;
  color: #d0d0d0;           /* iets lichter dan #818181, beter leesbaar */
  max-width: 700px;
  margin: 0 auto 24px;      /* centreren + ruimte onder tekst */
  line-height: 1.5;
}

.contact-cta__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 40px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s var(--cubicbz),
    color 0.25s var(--cubicbz),
    transform 0.2s var(--cubicbz);
}

.contact-cta__btn:hover {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateY(-2px);
}
/* =========================
   RESPONSIVE
   ========================= */

/* tot ± laptop / tablet landscape */
@media (max-width: 1024px) {

  .header {
    padding: 0 40px;
  }

  .title {
    font-size: 60px;
    left: 40px;
  }

  .header__img {
    width: 60%;
    right: 40px;
  }

  .section-title {
    font-size: 50px;
  }

  .about__img {
    height: 70vh;
  }

  .work__wrapp {
    padding: 0 60px;
  }

  .work__item {
    height: 70vh;
  }

  .serv__item-txt,
  .serv__item-text {
    font-size: 40px;
  }

  .footer__div {
    font-size: 50px;
    letter-spacing: 10px;
  }
}

/* tablet / grote telefoon */
@media (max-width: 768px) {

  .content {
    padding: 0 24px;
  }

  section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .header {
    padding: 0 24px;
    height: 90vh;
  }

  .title {
    font-size: 42px;
    left: 24px;
  }

  .header__img {
    width: 100%;
    right: 0;
    opacity: 0.4;           /* subtiele bg op mobiel */
  }

  .about__wrapp {
    flex-direction: column;
    gap: 30px;
  }

  .about__img,
  .about__txt {
    width: 100%;
    padding-right: 0;
  }

  .about__img {
    height: 50vh;
  }

  .benefits__item {
    width: calc(50% - 20px);
  }

  .work__wrapp {
    padding: 0 24px;
  }

  .work__item {
    width: 100%;
    height: auto;
  }

  .work__item-img img {
    height: auto;
  }

  .serv__item-txt,
  .serv__item-text {
    font-size: 30px;
  }

  .contact-cta {
    padding: 80px 0 90px;
  }

  .contact-cta__text {
    font-size: 18px;
  }

  .footer__div {
    font-size: 20px;
    letter-spacing: 8px;
  }
}

/* kleine telefoons */
@media (max-width: 480px) {

  .title {
    font-size: 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .about__p,
  .benefits__p {
    font-size: 18px;
  }

  .benefits__item {
    width: 100%;
  }

  .serv__item {
    padding: 24px 0;
  }

  .serv__item-txt,
  .serv__item-text {
    font-size: 24px;
  }

  .contact-cta__btn {
    width: 100%;
    text-align: center;
    letter-spacing: 0.15em;
  }

  .footer__div {
    font-size: 28px;
    letter-spacing: 5px;
  }
}
.about {
  padding-bottom: 300px;
}



