/* Algemene reset en basisstijlen */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Header en navigatie */
header {
    color: #fff;
    padding: 0; 
    margin: 0; 
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
}

.navbar-title {
    font-family: "Caudex", serif;
    font-size: 18px;
    font-weight: 100;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-left: 35px;
}

.logo-img {
    height: 55px;
    width: 60px;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-links li {
    margin-right: 50px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.nav-links li a:hover {
    color: #c4c4c4;
}



/* Hero sectie */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    height: 100vh;
    z-index: 1; /* Basis z-index voor hero sectie */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Afbeeldingen/Headerimg.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.container {
    position: relative;
}

.hero h2 {
    font-family: "Caudex", serif;
    font-size: 85px;
    font-weight: 200;
    margin-bottom: 40px;
    width: 90%;
    margin-left: 70px;
    z-index: 2; /* Verhoog de z-index van h2 */
    position: relative; /* Gebruik standaard positionering */
    transition: transform 0.1s ease; /* Voeg een soepele overgang toe */
}

.hero-heading-fixed {
    position: relative;
    z-index: 3; /* Zorg ervoor dat h2 bovenop de .tussen sectie ligt */
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-family: "Montserrat", sans-serif;
    position: relative;
}

.tussen {
    height: 570px;
    background-color: #a2ae7e;
    position: relative;
    z-index: 0; /* Zorg ervoor dat .tussen een lagere z-index heeft dan .container */
}



/* Introduction sectie */

.introduction {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative; 
    z-index: 2; 
}

.introduction-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; 
    gap: 20px; 
    max-width: 1400px;
    margin: 0 auto; 
    padding: 20px; 
}


.introduction-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative; 
    z-index: 3; 
    margin-top: -150px; 
    margin-right: 300px;
}

.introduction-img img {
    width: 450px;
    height: 650px;
}


.introduction-text {
    max-width: 80%; 
    margin-bottom: 20px;
}

 .introduction-text h2{
    font-family: "Caudex", serif;
    font-size: 30px;
    font-weight: 200;
    color: #85754e;
    margin-bottom: 20px;
 }

 .introduction-text p{
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: black;
    font-weight: 200;
 }



 .introduction-button {
    margin-top: 50px;
    background-color: #f8f9fa;
    color: #85754e;
    border: 1px solid #85754e;
    padding: 20px 50px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block; 
}

.introduction-button:hover {
    background-color: #85754e;
    color: white;
}


.introduction-button {
    margin-top: 60px;
}



/* Functies sectie */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
    color: #333;
    margin-bottom: 100px;
}

.features h2 {
    font-size: 30px;
    font-weight: 200;
    text-align: left;
    margin-bottom: 20px;
    margin-left: -20px;
    font-family: "Caudex", serif;
    color: #85754e;
}

.features-wrapper {
    display: flex;
    justify-content: space-around; 
    flex-wrap: wrap;
    margin-top: 50px;
    align-items: flex-start;
    margin-left: -70px;
}

.feature {
    flex: 1;
    margin: 20px 30px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 320px; 
    height: 380px;
    text-decoration: none;
}

.feature a {
    text-decoration: none;
}
.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    width: 400px;  
    height: 550px;  
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-family: "Caudex", serif;
    font-weight: 200;
    color: #85754e;
    margin-top: 20px;
    text-align:  left;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-weight: 200;
}


/* Over Ons sectie */
.about {
    color: black;
    padding: 100px 0;
    text-align: center;
    margin-top: 300px;
}

.about h2 {
    font-size: 35px;
    margin-bottom: 40px;
    font-family: "Caudex", serif;
    font-weight: 200;
    color: #85754e;
}

.about p {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    width: 60%;
}



/* Getuigenissen sectie */

.testimonials {
    padding: 100px 0;
    text-align: center;
    color: black;
}

.testimonials h2 {
    font-size:35px;
    margin-bottom: 40px;
    font-family: "Caudex", serif;
    font-weight: 200;
    text-align: left;
    color: #85754e;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    width: 100%;
    height: 200px;
    background-color: #f8f9fa;
    text-align: left;
    border: 1px solid #85754e;
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial blockquote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 15px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}



/* footer sectie */
.footer {
    background-color: #aeb58a;
    color: #ffffff;
    padding: 50px 50px; 
    height: 500px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-column {
    flex: 1;
    margin-right: 50px;
}


.footer-column h2 {
    font-size: 24px;
    font-family: "Caudex", serif;
    font-weight: 200;
    margin-bottom: 20px;
}


.footer-column p, .footer-column a, .footer-column label {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}


.footer-column a:hover {
    text-decoration: underline;
}
.footer-column input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px; 
    background-color: #aeb58a;
    border: 1px solid white;
}
.footer-column input[type="checkbox"] {
    margin-right: 10px;
}
.footer-column input[type="submit"] {
    border: none;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    color: #aeb58a;
    background-color: white;
}
.footer-column input[type="submit"]:hover {
    background-color: #ddd;
}