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

/* Wrapper styling */
.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fonts */
body, p, .footer-nav a {
    font-family: 'Varela Round', sans-serif;
    color: #14406d;
}

h1, h2, h3 {
    font-family: "Fredoka", sans-serif;
}

a {
    font-weight: 500;
}

/* Algemene styling voor de pagina */
body {
    background: #fdf8f5;
}


/* Header styling */
/* Header styling */
header {
    display: flex;
    justify-content: center;
    background: #fdf8f5;
    color: #333;
    width: 100%;
    padding: 10px 0; /* Verklein de padding indien nodig */
    margin-bottom: -50px;
}

/* Container voor de header-inhoud */
.header-container {
    max-width: 1200px; /* Beperkt de breedte van de header tot dezelfde breedte als de video */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Voeg wat binnenruimte toe aan de zijkanten */
}

/* Voeg ruimte toe aan de bovenkant van de content */
.main-content {
    margin-top: 20px; /* Pas dit aan op basis van de ruimte die je onder de header wilt */
    
}


.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #72acdb;
    text-decoration: none;
}

.nav-links a:hover {
    background: none; /* Geen achtergrondkleur */
    color: #f97c5d; /* Tekstkleur aanpassen */
    border-radius: 0; /* Verwijder afronding als niet nodig */
}

/* Logo en navigatie styling */
.logo img {
    height: 60px; /* Pas de hoogte van het logo aan */
    max-width: 100%; /* Zorg ervoor dat het logo niet buiten de container treedt */
}


.plan-demo a {
    padding: 10px 20px;
    font-family: 'Varela Round', sans-serif;
    font-weight: bold;
    color: white;
    background-color: #f97c5d;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: auto; /* Zorg ervoor dat de knop naar de rechterkant schuift */
}

.plan-demo a:hover {
    background-color: #e26b51;
}


/* Responsive navigatie voor mobiel */
.hamburger {
    font-size: 1.5em;
    cursor: pointer;
    color: #72acdb;
    display: none; /* Verborgen op desktop, zichtbaar op mobiel */
}

@media (max-width: 768px) {
    .hamburger {
        display: block; /* Toon hamburger menu op kleinere schermen */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fdf8f5;
        position: absolute;
        top: 60px;
        right: 20px;
        border: 1px solid #72acdb;
        width: 150px;
        z-index: 9;
    }

    .nav-links.open {
        display: flex;
    }
}

/* Demo pagina introductie */
.demo-intro {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    color: #14406d;
}

.demo-intro h1 {
    font-size: 2.5em;
    color: #f97c5d;
    margin-bottom: 20px;
}

.demo-intro p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #14406d;
}











/* Index pagina styling met video en overlay tekst */
.main-content {
    margin-top: 80px;
}

.video-bg {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 100px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 25px;
    margin-bottom: 50px;
}

.video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 2;
    margin-top: 0;
}

/* Blokken sectie op indexpagina */
.content-section {
    display: flex;
    gap: 20px;
    margin: 50px;
    padding: 20px;
    align-items: flex-start;
}

.left-block {
    flex: 1;
}

.left-block h2 {
    color: #f97c5d;
    font-size: 2em;
    margin-bottom: 10px;
}

.left-block p {
    color: #14406d;
    font-size: 1.1em;
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
}

.right-block {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
}

.right-block h3 {
    color: #72acdb;
    font-size: 1.5em;
}

.right-block p {
    color: #14406d;
    font-size: 1em;
    line-height: 1.6;
}

/* Container voor tekst en knoppen op indexpagina */
.content-container.custom-rounded {
    background-color: #faeee2;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 25px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 100px;
    margin-bottom: 50px;
}

.text-container h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f97c5d;
}

.text-container h2 .highlighted {
    display: block;
    color: #72acdb;
    font-weight: bold;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid #f97c5d;
    color: #f97c5d;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.button:hover {
    background-color: #f97c5d;
    color: white;
}

.bottom-image {
    width: 250px;
    height: auto;
    object-fit: contain;
    margin-left: 20px;
}

/* Services styling */
.services-content {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.services-intro h1 {
    font-size: 2.5em;
    color: #f97c5d;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1em;
    color: #14406d;
    line-height: 1.6;
}

.services-offerings {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    padding: 30px;
}

.service {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 250px;
    text-align: center;
}

.service ul {
    text-align: left;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service ul li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.service-header {
    margin-bottom: 20px;
}

.service-header img {
    max-width: 80%;
    height: auto;
    margin-bottom: 15px;
}

.service-header h2 {
    color: #f97c5d;
    font-size: 1.5em;
    margin: 0;
}

.service-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-footer {
    margin-top: 20px;
    color: #14406d;
    font-weight: bold;
}

.service-footer p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.consult-button-container {
    text-align: center;
    margin: 40px 0;
}

.consult-button {
    padding: 15px 30px;
    font-size: 1em;
    color: white;
    background-color: #72acdb;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.consult-button:hover {
    background-color: #14406d;
}

/* About styling */
.about-content {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.about-intro h1 {
    font-size: 2.5em;
    color: #f97c5d;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.1em;
    color: #14406d;
    line-height: 1.6;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.about-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-header h2 {
    color: #f97c5d;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.about-content p {
    color: #14406d;
    font-size: 1em;
    line-height: 1.6;
    margin: 8px 0;
}

.about-content ul {
    text-align: left;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Contact styling */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 600px;
    margin: 100px auto 50px auto;
    padding: 20px;
}

.contact-left h1 {
    font-size: 2.5em;
    color: #f97c5d;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 1.1em;
    color: #14406d;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1em;
    color: #14406d;
    margin-top: 15px;
    display: block;
}

.required {
    color: #f97c5d;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #14406d;
    border-radius: 5px;
    font-size: 1em;
    color: #14406d;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background: #72acdb;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #14406d;
}

/* Footer styling */
.custom-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fdf8f5;
    padding: 20px 40px;
    font-family: 'Varela Round', sans-serif;
}

.footer-left {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    margin-right: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1c3d29;
}

.contact-item img {
    width: 20px;
    height: 20px;
    color: #6d9f86;
}

.contact-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    color: #4f4f4f;
}

.contact-text strong {
    font-size: 1em;
    color: #1c3d29;
}

.contact-text p {
    margin: 0;
    font-size: 0.8em;
    color: #7d7d7d;
}

.footer-right .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.footer-nav a {
    color: #1c3d29;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #f97c5d;
}
