/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    line-height: 1.6;
    color: #3a424a;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Sectie */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

.header-container {
   /* display: flex;
    align-items: center;
    justify-content: space-between;*/
    max-width: 1200px;
    margin: 0 auto;
}

.header-container .subtitle {
	width:300px;
	color:#999567;
	font-size:20px;
	line-height: 1.25;
	padding-left:124px;
}

/*.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}*/

/* Hero / Headerfoto Sectie */
.hero {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    /* Plaats hier je eigen afbeelding als je wilt */
    background-image: url('../images/header-foto-1.jpg'); 
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.hero:after {
	content:"";
	background:#ffffff;
	position:absolute;
	width:100%;
	height:100%;
	opacity:0.5;
}

.hero .content-block {
	max-width: 960px;
	text-align:center;
	padding: 0 2rem;
    width: 100%;
	z-index:99;
}

 /*.hero .content-block .hr-line {
	width: 100%;
    max-width: 300px;
    margin: 2rem auto;
 }*/
 
.center {
	text-align:center;
}

/* Hoofdinhoud */
main {
    flex: 1; /* Duwt de footer naar beneden */
    max-width: 960px;
    margin: 3rem auto 2rem auto;
    padding: 0 2rem;
    width: 100%;
}

.content-block  .block {
	background: #fff;
    padding: 2rem;
	margin-bottom:3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-block  .block:last-child {
	margin-bottom:0;
}

.content-block .block .inner-block {
	position:relative;
	padding-bottom: .5rem;
	margin-bottom: 1rem;
}

.content-block .block .inner-block .icon {
	display: flex;
	justify-content: center;
}

.content-block .block .inner-block .round {
	width:80px;
	height:80px;
	background-color:rgba(153,149,103,.25);
	border-radius:100%;
	padding: 18px 16px 14px 16px;
}

.content-block  .inner-block:after {
	content:"";
	width:250px;
	height:2px;
	background:#cdcdcd;
	position: absolute;
	left:0;
	right:0;
	bottom:0;
	margin: auto;
}

h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #999567;
	line-height:1;
}

h2 {
	color:#999567;
}

p {
    margin-bottom: 1rem;
}

a {
	color:#3a424a;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

.nice-line {
	display:flex;
	width:100%;
	justify-content:center;
	padding: 1rem 0;
}

.hr-line {
  width: 75px;
  height: 2px;
  background: #cdcdcd /*linear-gradient(to right,#35aa5f  50%, #004ba3 50%)*/;
}

/* Footer */
footer {
    text-align: center;
    padding:  0;
    margin-top: auto;
}

footer p {
    margin-bottom: 0;
}

footer .hr-line {
	width:100%;
	height:2px;
	background:#999567;
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 0.5rem;
    }

    .hero {
        height: 200px;
    }

    main {
        padding: 0 1rem;
    }
}