
@import url('https://fonts.googleapis.com/css2?family=Neucha&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Algemene reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; 
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    background-color: #f4f0e3; 
    background-attachment: scroll;
    box-sizing: border-box;
     
}

main, section {
    margin: 0;
    padding: 0;
}

/* Typografie centraal beheren */
h1, h2, h5, h6 {
    font-family: 'Neucha', sans-serif;
    margin: 0;
    font-weight: 700; /* Vetgedrukte headers */
    text-align: center; /* Headers centreren */
    line-height: 1.6; /* Betere leesbaarheid */
    color: #594946 ; /* Accentkleur */
}

h3 {
    font-family: 'Neucha', sans-serif;
    margin: 0;
    font-weight: 700; 
    text-align: left; 
    line-height: 1.4; 
    color: #594946; 
}

h4 {
    font-family: 'Neucha', sans-serif;
    margin: 0;
    font-weight: 700; 
    text-align: left; 
    line-height: 1.4; 
    color: #594946; 
}

p {
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 0px 0; 
    font-weight: 400; 
    line-height: 1.8; 
    text-align: left; 
    color: #fff; 
}

.section-title {
    font-size: 2.0rem;
    color: #ffffff; /* Witte tekstkleur */
    background-color: rgba(0, 0, 0, 0.6); /* Donkere semi-transparante achtergrond */
    padding: 10px 20px; /* Voeg ruimte rondom de tekst toe */
    border-radius: 8px; /* Maak de hoeken licht afgerond */
    text-align: center; /* Centreer de tekst */
    margin-bottom: 20px; /* Voeg ruimte onder de titel toe */
    display: inline-block; /* Zorg ervoor dat de achtergrond zich beperkt tot de tekst */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtiele schaduw voor een betere zichtbaarheid */
}



.logo-container {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.logo {
    width: 15%;
    max-width: 300px;
    min-width: 150px; 
    transform-origin: top left;
    height: auto; 
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    filter: brightness(1); /* Standaard helderheid */
}

/* Stijlen voor de hamburgerknop */
/* Stijlen voor de hamburgerknop */
.hamburger-button {
    font-family: 'Neucha', sans-serif;
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8); /* Licht transparante achtergrond */
    border: 2px solid rgba(0, 0, 0, 0.2); /* Subtiele rand voor contrast */
    color: #594946;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 8px 12px; /* Zorgt voor ruimte rond de tekst */
    border-radius: 8px; /* Zorgt voor een zachtere uitstraling */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtiele schaduw voor contrast */
}

.hamburger-button:hover {
    color: #bf7343;
}

/* Het zijmenu (standaard verborgen) */
.menu-sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Zorgt ervoor dat het menu buiten het scherm begint */
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease; /* Zorgt voor een soepele animatie */
    padding-top: 60px;
    z-index: 1000;
}

/* Wanneer het menu open is */
.menu-sidebar.open {
    right: 0; /* Schuift het menu naar links */
}

/* Sluitknop */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Menu links */
.menu-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-sidebar li {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.menu-sidebar a {
    text-decoration: none;
    font-size: 18px;
    color: #594946;
    transition: color 0.3s ease;
    display: block;
}

.menu-sidebar a:hover {
    color: #bf7343;
}




/* Swiper-container */
.swiper-container {
    width: 100%;
    height: 56.25vw;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Proportioneel schalen */
}

/* Stijl voor de tekst over de foto's */
.slide-text {
    position: absolute;
    bottom: 10%; /* Plaats de tekst iets boven de onderkant */
    left: 50%; /* Centreer de tekst horizontaal */
    transform: translateX(-50%); /* Houd de tekst echt gecentreerd */
    background-color: rgba(0, 0, 0, 0.5); /* Half-transparante zwarte achtergrond */
    color: #ffffff; /* Witte tekstkleur */
    padding: 10px 20px; /* Ruimte rondom de tekst */
    border-radius: 5px; /* Ronde hoeken voor een zachtere uitstraling */
    font-family: 'Neucha', serif; /* Gebruik een mooie en consistente lettertype */
    font-size: 1.5rem; /* Pas de tekstgrootte aan */
    text-align: center; /* Centreer de tekst binnen de container */
    z-index: 10; /* Zorg dat het boven de afbeelding ligt */
    opacity: 0; /* Begin met de tekst onzichtbaar */
    animation: fadeIn 0.5s ease forwards; /* Voeg fade-in animatie toe */
    animation-delay: 0.5s; /* Vertraging van 0.5 seconden */
}

/* Grotere tekst op grotere schermen */
@media (min-width: 1024px) {
    .slide-text {
        font-size: 2rem; /* Maak de tekst groter */
        padding: 15px 30px; /* Meer ruimte rondom de tekst */
    }
}

/* Fade-in animatie */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Content sectie */
.content {

    max-width: 800px;
    margin: 0 auto; /* Centreer de content */
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8; /* Verbeter de leesbaarheid */
    font-size: 1.1rem; /* Iets grotere tekst voor leesbaarheid */
    text-align: justify; /* Uitvullen van de tekst */
}

/* Titels in de content sectie */
.content h2 {
    font-family: 'Neucha', sans-serif;
    font-size: 2rem;
    color: #594946; /* Accentkleur voor titels */
    text-align: center;
}

.content h3 {
    font-family: 'Neucha', sans-serif;
    font-size: 1.5rem;
    color: #594946; /* Accentkleur voor titels */
    text-align: left
}

/* Links in de content sectie */
.content a {
    color: #594946; /* Accentkleur */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #e6683c; /* Verander de kleur bij hover */
}

/* Scroll to Top knop */
.scroll-to-top-container {
    position: fixed; /* Houd de knop vast op het scherm */
    bottom: calc(20px + 3 * 75px); /* Plaats de knop boven de sociale knoppen */
    right: 20px; /* Zet de knop 20px vanaf de rechterkant */
    z-index: 1000; /* Zorg dat deze knop boven andere elementen ligt */
}

.scroll-to-top {
    width: 60px;
    height: 60px;
    background-color: #bf7343;
    border: none;
    border-radius: 50%; /* Maak de knop rond */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px; /* Grootte van het pictogram */
    opacity: 0; /* Verborgen standaard */
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 0.5;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 1;
    background-color: #9ba637; /* Donkerdere kleur bij hover */
    transform: scale(1.1); /* Vergroot bij hover */
}

/* Sociale knoppen */
.social-buttons {
    position: fixed;
    bottom: 20px; /* Zet de knoppen 20px vanaf de onderkant */
    right: 20px; /* Uitlijnen met de Scroll to Top-knop */
    display: flex;
    flex-direction: column; /* Knoppen boven elkaar */
    gap: 15px; /* Voeg ruimte tussen knoppen toe */
    z-index: 999; /* Zorg dat ze onder de Scroll to Top-knop liggen */
}

.social-button {
    opacity: 0.5;
    text-decoration: none; /* Verwijdert de standaard onderstreping */
    width: 60px;
    height: 60px;
    background-color: #bf7343;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-button:hover {
    opacity: 1;
    transform: scale(1.1); 
}

.social-button.back:hover {
    background-color: #46a7c4; 
}

.social-button.instagram:hover {
    background-color: #e6683c;
}

.social-button.facebook:hover {
    background-color: #3b5998;
}

.social-button.whatsapp:hover {
    background-color: #25D366;
}

.content-section {
    margin-top: 3rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

}

/* Styling voor de header binnen elke sectie */
.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    text-align: center; /* Optioneel, maar geeft een nette uitlijning */
    position: relative;
}

/* Tekst-container */
.text-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%; /* 3/5 van het scherm */
    max-width: 1200px; /* Beperk de breedte op grote schermen */
    margin: 0; /* Centreer de container */

}

.text-box {
    flex: 1 1 calc(33.333% - 100px); /* Elk vak neemt 1/3 van de breedte */
    max-width: calc(33.333% - 100px); /* Maximale breedte van elk tekstvak */
    min-width: 200px; /* Minimale breedte voor elk tekstvak */
    background-color: #fff; /* Achtergrondkleur */
    color: #000; /* Tekstkleur */
    padding: 20px; /* Binnenruimte */
    border: 1px solid #ddd; /* Lichte rand */
    border-radius: 10px; /* Afgeronde hoeken */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
    text-align: left; /* Uitvullen van de tekst */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit; /* Zorgt ervoor dat de tekst dezelfde kleur behoudt als een normale tekst */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Verwijder standaard linkstijlen binnen de box */
.text-box h3,
.text-box p {
    text-decoration: none;
    color: inherit; /* Neemt de normale tekstkleur over */
}

.text-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.text-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.text-box:hover::after {
    opacity: 1;
}

.text-box * {
    position: relative;
    z-index: 1;
}


/* Responsive gedrag */
@media (max-width: 768px) {
    .text-box {
        flex: 1 1 100%; /* Vakken nemen de volledige breedte */
    }
}

/* Animatie wanneer zichtbaar */
.text-box.visible {
    opacity: 1;
    transform: translateY(0); /* Breng terug naar oorspronkelijke positie */
}

/* Algemeen voor de portfolio-sectie */
.portfolio-section {
    padding: 40px 20px;
    transform: translateY(50px); /* Startpositie voor animatie */
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin-bottom: 50px;
}

.portfolio-section.visible {
    opacity: 1; /* Zichtbaar bij scrollen */
    transform: translateY(0); /* Terug naar oorspronkelijke positie */
}

/* Grid voor de foto's */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexibele kolommen */
    gap: 20px; /* Ruimte tussen de items */
    justify-items: center; /* Centreer items horizontaal */
}

/* Items in de grid */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Ronde hoeken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Schaduw rond foto's */
}

/* Foto's in de grid */
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto vult de container zonder vervorming */
    transition: transform 0.3s ease; /* Voor inzoom-effect */
}

/* Overlay met tekst */
.portfolio-overlay {
    font-family: 'Neucha', sans-serif;
    font-weight: 700; /* Vetgedrukte headers */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Half-transparante zwarte overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    opacity: 0; /* Verborgen standaard */
    transition: opacity 0.3s ease; /* Fade-in effect */
    pointer-events: none;
}

/* Hover-effect */
.portfolio-item:hover .portfolio-img {
    transform: scale(1.1); /* Zoom in */
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1; /* Toon overlay */
}

.about-me {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 60vh; /* Minimaal 70% van de viewporthoogte */
    background: url('images/about-me.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax-effect */
    padding: 40px 20px; /* Ruimte voor inhoud */
    display: flex;
    flex-direction: column; /* Zorg dat de inhoud zich onder elkaar opstelt */
    align-items: center;
    justify-content: center; /* Inhoud centreren in de sectie */
    box-sizing: border-box;
}


.about-me .overlay {
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0; /* Vul de gehele sectie */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparante zwarte overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff; /* Witte tekstkleur */
    text-align: center;
    z-index: 1; /* Zorg dat het boven de achtergrond is */
}

.about-content {
    display: flex;
    max-width: 1200px; /* Beperk de breedte van de inhoud */
    width: 100%; /* Volledige breedte */
    gap: 10px; /* Ruimte tussen de vakken */
    flex-wrap: wrap; /* Zorg dat de vakken naar een volgende rij gaan indien nodig */
    z-index: 2; /* Boven de overlay */
}

.about-text {
    flex: 1 1 calc(30% - 10px); /* Elk vak neemt 1/3 van de breedte en houdt rekening met de ruimte */
    max-width: calc(33.333% - 10px); /* Beperk de maximale breedte van elk tekstvak */
    background-color: rgba(255, 255, 255, 0.1); /* Witte transparante achtergrond */
    padding: 20px; /* Binnenruimte */
    border-radius: 10px; /* Afgeronde hoeken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schaduw rond de vakken */
    color: #fff; /* Witte tekstkleur */
    text-align: left; /* Tekst uitlijnen naar links */
}

@media (max-width: 1200px) {
    .about-text {
    flex: 1 1 100%; /* Vakken nemen volledige breedte */
    max-width: 100%; /* Laat vakken volledig vullen */
    p {
        font-size: 0.9rem;
        font-weight: 400; 
        line-height: 1.8; 
        color: #fff; 
    }
}
}

@media (max-width: 768px) {
        .about-text {
        flex: 1 1 100%; /* Vakken nemen volledige breedte */
        max-width: 100%; /* Laat vakken volledig vullen */
        p {
            font-size: 0.7rem;
            font-weight: 400; 
            line-height: 1.8; 
            color: #fff; 
        }
    }
}

/* Sub page styling */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 400px; /* Hoogte van de foto */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Zwarte overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Doorzichtige zwarte overlay */
    z-index: 1;
}

/* SubPagina titel */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: white; /* Primaire kleur voor de tekst */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Schaduw voor extra contrast */
}

.masonry-gallery {
    display: flex;
    margin: 0; /* Zorgt ervoor dat de gallerij in het midden staat */
    gap: 10px;
    justify-content: center; /* Zorgt dat de items in het midden staan */
    margin-bottom: 10px;
}

.item {
    width: 100%;
}

.item img {
    display: block;
    width: 100%;
    border-radius: 8px;
}




/* Algemene styling voor de footer */
.footer {
    background-color: #594946; /* Donkere achtergrond */
    color: #ffffff; /* Witte tekstkleur */
    padding: 20px 10px; /* Ruimte rondom de footer */
    text-align: center; /* Centreer standaard de tekst */
    margin-top: 40px; /* Ruimte boven de footer */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Spreid kolommen uit */
    max-width: 1200px; /* Beperk de breedte op grote schermen */
    margin: 0 auto; /* Centreer de container */
    gap: 20px; /* Ruimte tussen kolommen */
}

.footer-column {
    flex: 1 1 calc(33.333% - 20px); /* Drie gelijke kolommen */
    min-width: 250px; /* Minimale breedte per kolom */
    text-align: left; /* Tekst links uitlijnen */
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #bf7343; /* Accentkleur voor titels */
}

.footer-column p, .footer-column a {
    font-size: 0.9rem;
    line-height: 1.6; /* Verbeter leesbaarheid */
    color: #ffffff; /* Witte tekstkleur */
    text-decoration: none; /* Verwijder onderstreping voor links */
}

.footer-column a:hover {
    color: #ffffff; /* Verander de kleur bij hover */
}

/* Sociale knoppen in de footer */
.footer-socials {
    display: flex;
    gap: 10px; /* Ruimte tussen iconen */
}

.footer-socials .social-button {
    width: 40px;
    height: 40px;
    background-color: #bf7343; /* Kleur van de knoppen */
    border-radius: 50%; /* Maak ze rond */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* Witte iconen */
    font-size: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-socials .social-button:hover {
    transform: scale(1.1); /* Zoom in bij hover */
}

.footer-socials .instagram:hover {
    background-color: #e6683c;
}

.footer-socials .facebook:hover {
    background-color: #3b5998;
}

.footer-socials .whatsapp:hover {
    background-color: #25D366;
}

/* Responsive gedrag */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Kolommen onder elkaar op kleine schermen */
        align-items: center;
        gap: 30px; /* Grotere ruimte tussen de secties */
    }

    .footer-column {
        text-align: center; /* Tekst centreren op kleine schermen */
    }
}



/* SubPages */

body.subpage {
    background: #f8f8f8; /* Gebroken wit achtergrond */
    
}

body.subpage .scroll-to-top-container {
    bottom: calc(20px + 4 * 75px); /* Plaats de knop boven de sociale knoppen */
}

body.subpage p {
    margin: 0 0 0px 0; 
    font-weight: 400; 
    line-height: 1.8; 
    text-align: left; 
    color: #000000; 
    font-size: 16px;
}

@media (max-width: 768px) {
    body.subpage p {
        font-size: 14px; /* Verklein de tekstgrootte voor kleinere schermen */
        line-height: 1.5; /* Pas de regelafstand aan */
    }
}

body.subpage .content {
    box-sizing: border-box;
    background: #ffffff; /* Witte achtergrond */
    display: block;
    justify-content: center; /* Horizontaal centreren */
    align-items: center; /* Verticaal centreren */
    text-align: center; /* Tekst centreren */
    padding: 20px; /* Voorkomt dat tekst tegen de randen komt */
    font-size: 1.5rem; 
    color: #000000; 
    max-width: 1000px; /* Voorkomt dat de content te breed wordt */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Zachte schaduw voor een luxe uitstraling */
    margin: 0 auto;
}


/* Tekst en afbeeldingen binnen de subpagina */
.subpage-content h1, .subpage-content h2 {
    color: #333; /* Donkergrijze tekst voor betere leesbaarheid */
}

body.subpage .section-content {
    margin: 20px 0; /*W itruimte boven en onder */
    padding: 20px;
    text-align: center; /* Optioneel: tekst centreren */
}

/* Responsieve tekst op kleinere schermen */
@media (max-width: 768px) {
    .subpage-content {
        padding: 20px; /* Minder padding op mobiel */
        margin: 20px; /* Minder ruimte rondom content */
    }
    
    .subpage-content h1 {
        font-size: 1.8rem; /* Kleinere koppen op mobiel */
    }
    
    .subpage-content h2 {
        font-size: 1.5rem;
    }
    
    .subpage-content p {
        font-size: 0.6rem; /* Kleinere tekst voor betere leesbaarheid */
    }
}

.custom-list {
    list-style: none; /* Verwijdert standaard bulletpoints */
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px; /* Ruimte voor custom bullet */
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: left;
}

.custom-list li::before {
    content: "\2022"; /* Unicode bullet (•) */
    color: #ff6f61; /* Pas de kleur aan */
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Corrigeert de uitlijning zodat het in het midden staat */
}

