@charset "utf-8";
/* CSS Document */

/*
Theme Name: Gerben Reekers Schilderwerken Wordpress thema
Author: Vincent Bosch
Description: Customizable Wordpress Theme
Version: 0.0.1
Tags:
*/

:root {
    --main-color: #2b2b3b;
    --text-color: var(--main-color);
    --tint-color: #ECECEC;
    --sec-color:#a7c6d9;
}

body, html {
	padding:0;
	margin:0;
	font-family: "Overpass", sans-serif;
	font-size:18px;
	line-height: 28px;
	color:var(--main-color);
	font-weight:400;
}

* {
	box-sizing: border-box;
}

p {
	font-size:18px;
	line-height: 28px;
	color:var(--main-color);
	font-weight:400;
}

a {
	color:var(--main-color);
	text-decoration: none;
	font-weight:600;
	transition: 0.3s ease;
}
a:hover {
	color:var(--sec-color);
}
a.button {
	display: inline-block;
	z-index: 1;
	position: relative;
	padding:14px 28px 16px 28px;
	font-size:16px;
	line-height:26px;
	color:white;
	text-transform: uppercase;
}
a.button:hover {
	color:var(--sec-color);
}
a.button::after {
	content:'';
	position: absolute;
	z-index: -2;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-image:url('img/paint-banner.svg');
	background-size:contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: 0.3s ease;
	pointer-events: none;
}

h1, h2, h3 {
	color:var(--sec-color);
}
h1 {
	font-size:64px;
	line-height: 70px;
	margin:0 0 15px 0;
}
h2 {
	font-size:38px;
	line-height: 44px;
	margin:0 0 15px 0;
	text-decoration: uppercase;
}
h3 {
	font-size:28px;
	line-height: 34px;
	margin: 0 0 15px 0;
}

.center {
	text-align: center;
}
.row {
	width:100%;
	overflow:hidden;
}
.left {
	float:left!important;
}
.right {
	float:right!important;
}
.space-bottom {
	margin-bottom:60px;
}
.space-top {
	margin-top:60px;
}
.space {
	margin-top:60px;
	margin-bottom:60px;
}
.container, .midcontainer, .smallcontainer, .minicontainer {
	position: relative;
	max-width:100%;
	padding-left:15px;
	padding-right:15px;
	margin-left:auto;
	margin-right:auto;
	overflow:hidden;
}
.container {
	width:1200px;
}
.midcontainer {
	width:900px;
}
.smallcontainer {
	width:600px;
}
.minicontainer {
	width:450px;
}
.div50 {
	width:50%;
	float:left;
}
.div30 {
	width:30%;
	float:left;
}
@media screen and (max-width:1230px) {
	.container {
		width:100%;
	}
}
@media screen and (max-width:930px) {
	.midcontainer {
		width:100%;
	}
}
@media screen and (max-width:630px) {
	.smallcontainer {
		width:100%;
	}
	.div30, .div50 {
		width:100%;
	}
	h1 {
		font-size:48px;
		line-height: 58px;
	}
	h2 {
		font-size:28px;
		line-height: 36px;
	}
	h3 {
		font-size:22px;
		line-height: 26px;
	}
}
@media screen and (max-width:480px) {
	.minicontainer {
		width:100%;
	}
	h1 {
		font-size:36px;
		line-height: 46px;
	}
	h2 {
		font-size:24px;
		line-height: 32px;
	}
	h3 {
		font-size:20px;
		line-height: 24px;
	}
}
@media screen and (max-width:360px) {
	h1 {
		font-size:28px;
		line-height: 38px;
	}
	h2 {
		font-size:20px;
		line-height: 28px;
	}
	h3 {
		font-size:18px;
		line-height: 22px;
	}
}

.has-wave {
	background:#f5f5f5;
	position: relative;
	padding:40px 0;
}
.wave-top {
	position: absolute;
	width:100%;
	height:40px;
	top:0;
	left:0;
}
.wave-bottom {
	position: absolute;
	width:100%;
	height:40px;
	bottom:0;
	left:0;
	transform:rotate(180deg);
}

header {
	position: fixed;
	z-index: 99;
	left:0;
	top:0;
	width:100%;
	height:90px;
	background:white;
	box-shadow: 0 2px 8px 0 rgba(0,0,0,0.16);
	overflow:visible;
}
header .headercontainer {
	position: relative;
	width:1200px;
	max-width:100%;
	overflow: visible;
	margin-left:auto;
	margin-right:auto;
	height:100%;
}
header .logo {
	position: relative;
	float:left;
	height:100%;
	width:auto;
	padding:6px 0;
	margin-left:15px;
}
header .logo img {
	height:100%;
	width:auto;
}
header nav {
	position: absolute;
	float:right;
	display: inline-block;
	top:55%;
	transform:TranslateY(-50%);
	right:15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
header nav ul {
	margin:0;
	padding:0;
	list-style: none;
}
header nav li {
	margin:0;
	margin-left:12px;
	padding:0;
	display: inline-block;
}
header nav a {
	z-index: 1;
	display: block;
	position: relative;
	padding:4px 8px 4px 8px;
	color:var(--main-color);
	text-decoration: none;
	font-weight:600;
	transition: 0.3s ease;
}
header nav a::before {
	content:'';
	position: absolute;
	right:0;
	top:0;
	width:100%;
	height:100%;
	background:white;
	z-index: -1;
	transition: 0.3s ease;
	transform:scale(1.11);
}
header nav a::after {
	content:'';
	position: absolute;
	z-index: -2;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-image:url('img/paint-banner.svg');
	background-size:contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: 0.3s ease;
	pointer-events: none;
	transform:scale(1.1);
}
header nav a:hover {
	color:var(--sec-color);
}
header nav a:hover::before {
	width:0;
}


.hamburger {
	position: fixed;
	z-index:99;
	top:26px;
	right:15px;
	width:45px;
	height:45px;
	cursor: pointer;
	display: none;
}
.hamburger span {
	display:block;
	position: absolute;
	left:6px;
	height:3px;
	width:33px;
	background:var(--main-color);
	transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
	top:12px;
}
.hamburger span:nth-child(2) {
	top:21px;
}
.hamburger span:nth-child(3) {
	top:30px;
}

.opennav .hamburger span:nth-child(1) {
	top:21px;
	transform:rotate(45deg);
}
.opennav .hamburger span:nth-child(2) {
	top:21px;
	opacity:0;
}
.opennav .hamburger span:nth-child(3) {
	top:21px;
	transform:rotate(-45deg);
}
@media screen and (max-width:680px) {
	header nav {
		display: none;
	}
	.hamburger {
		display: block;
	}
	header.opennav nav {
		display: block;
		position: fixed;
		top:90px;
		left:0;
		width:100%;
		height:100vh;
		z-index: 999;
		transform:none;
		right:auto;
		background:white;
	}
	header nav ul {
		padding:15px;
	}
	header nav li {
		display: block;
		margin:25px 0;
		float:none;
	}
	header nav a {
		padding:0;
	}
}


.hero-home {
	position: relative;
	width:100%;
	height:auto;
	padding-top:90px;
	background:linear-gradient(to left,var(--main-color), var(--sec-color) );
	overflow: hidden;
	text-align: center;
	background-image:url('img/tijdelijk/slide2.jpg');
	background-size:cover;
	background-position: center;
}
.hero-home::before {
	content:'';
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index: 1;
	background-image:linear-gradient(to left,var(--main-color), var(--sec-color) );
	opacity:0.9;
}
.hero-home::after, .hero-small::after {
    content: '';
    height: 100%;
    aspect-ratio: 2 / 3;
	width:auto;
    /* width: 400px; */
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    opacity: .6;
    left: 0;
    background-image: url('https://gr-schilderwerken.nl/wp-content/uploads/2025/03/Gerbenreekers_beeldmerk.svg');
    background-size: cover;
    background-position: center left;
	background-repeat:no-repeat;
	
}
.hero-home .separator {
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:40px;
	z-index: 2;
	transform:rotate(180deg);
}
.hero-home-content {
	position: relative;
	z-index: 2;
	width:1100px;
	max-width:100%;
	margin-left:auto;
	margin-right:auto;
	padding:200px 15px;
}
.hero-home h1 {
	color:white;
}
.hero-home p {
	color:white;
	width:600px;
	max-width: 100%;
	margin-left:auto;
	margin-right: auto;
}

.hero-small {
	position: relative;
	width:100%;
	height:auto;
	padding-top:90px;
	background:linear-gradient(to left,var(--main-color), var(--sec-color) );
	overflow: hidden;
	text-align: center;
	background-image:url('img/tijdelijk/slide2.jpg');
	background-size:cover;
	background-position: center;
}
.hero-small::before {
	content:'';
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index: 1;
	background-image:linear-gradient(to left,var(--main-color), var(--sec-color) );
	opacity:0.9;
}
.hero-small .separator {
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:40px;
	z-index: 2;
	transform:rotate(180deg);
}
.hero-small-content {
	position: relative;
	z-index: 2;
	width:1100px;
	max-width:100%;
	padding:0 15px;
	margin-left:auto;
	margin-right:auto;
	padding:60px 0;
}
.hero-small h1 {
	color:white;
}
.hero-small p {
	color:white;
	width:600px;
	max-width: 100%;
	margin-left:auto;
	margin-right: auto;
}

.uitgelichte-diensten {
	position: relative;
	z-index: 5;
	padding:35px 0 15px 0;
	margin-top:-100px;
	overflow: hidden;
}
.uitgelichte-diensten .container {
	overflow: visible;
}
.uitgelichte-dienst {
	width:30%;
	float:left;
	text-align: center;
	box-shadow:0 0 8px 0 rgba(0,0,0,0.16);
	background:white;
	border-radius: 6px;
	padding:60px 25px;
}
.uitgelichte-dienst p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
@media screen and (min-width:861px) {
	.uitgelichte-diensten .uitgelichte-dienst:nth-child(3n - 1) {
		margin:0 5%;
		margin-top:-28px;
	}
	.uitgelichte-diensten .uitgelichte-dienst:nth-child(3n - 1) p {
		-webkit-line-clamp: 6;
	}
}
@media screen and (max-width:860px) {
	.uitgelichte-dienst {
		width:380px;
		max-width:calc(100% - 16px);
		margin-left:auto;
		margin-right:auto;
		float:none;
		margin-bottom:35px;
	}
}
.uitgelichte-diensten .icon {
	position: relative;
	width:40%;
	margin-left:auto;
	margin-right:auto;
	height:0;
	padding-top:40%;
}
.uitgelichte-diensten .icon img {
	position: absolute;
	width:60%;
	height:70%;
	top:15%;
	left:20%;
	object-fit: contain;
	object-position: center bottom;
}

.over {
	position: relative;
	padding-bottom:80px;
	overflow: hidden;
}
.over-image {
	width:55%;
	height:0;
	padding-top:45%;
	position: relative;
	float:right;
}
.over-image img {
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;
}
.over-content {
	position: absolute;
	left:15px;
	bottom:8px;
	z-index: 2;
	width:50%;
	float:left;
	background:white;
	border-radius:6px;
	padding:45px;
	box-shadow:0 0 8px 0 rgba(0,0,0,0.16);
}

@media screen and (max-width:1130px) {
	.over {
		width:760px;
		margin:auto;
		max-width: 100%;
	}
	.over-image {
		width:100%;
		padding-top:65%;
		margin:auto;
		overflow: hidden;
		border-radius:6px;
		margin-bottom:15px;
	}
	.over-content {
		position: relative;;
		left:auto;
		bottom:auto;
		width:100%;
	}
}

.contact {
	position: relative;
	padding-bottom:80px;
	overflow: hidden;
}
.contact-image {
	width:55%;
	height:0;
	padding-top:35%;
	position: relative;
	float:left;
}
.contact-image img {
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;
}
.contact-content {
	position: absolute;
	right:15px;
	top:35px;
	z-index: 2;
	width:50%;
	float:left;
	background:white;
	border-radius:6px;
	padding:45px;
	box-shadow:0 0 8px 0 rgba(0,0,0,0.16);
}
@media screen and (max-width:1130px) {
	.contact {
		width:760px;
		margin:auto;
		max-width: 100%;
	}
	.contact-image {
		width:100%;
		padding-top:56.25%;
		margin:auto;
		overflow: hidden;
		border-radius:6px;
		margin-bottom:15px;
	}
	.contact-content {
		position: relative;;
		right:auto;
		top:auto;
		width:100%;
	}
}

.diensten {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.dienst {
	width:32%;
	background:#2b2b3b;
	border-radius: 6px;
	color:white;
	margin-bottom:15px;
	text-align: center;
	padding:8px 32px;
	display: flex;
	align-items: center;
}
.dienst h4 {
	width:100%;
}
.dienst:hover {
	background:var(--sec-color);
	color:var(--main-color);
}
@media screen and (max-width:830px) {
	.dienst {
		width:49%;
		padding:8px 15px;
	}
}
@media screen and (max-width:380px) {
	.dienst {
		width:100%;
	}
}


footer {
	background:var(--main-color);
	color:white;
	padding:30px 0;
}
footer h2, footer h3 {
	color:inherit;
}
footer .socials ul {
	margin:0;
	padding:0;
	list-style: none;
}
footer .socials li {
	display: inline-block;
	padding:0;
	margin:0 15px 0 0;
}
footer a {
	color:white;
	font-size:18px;
}
