/* Buttons en interactieve elementen */
.btn {
    display: inline-block;
    background-color: #e3c4a8;
    color: #33313b;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #d3b498;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 196, 168, 0.3);
}/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Tijdelijke achtergrondkleur die wordt getoond tijdens het laden */
body {
    background-color: #33313b; /* Officiële achtergrondkleur */
    color: #fff;
    line-height: 1.6;
}

/* Vaste achtergrond - wordt geladen nadat de pagina-inhoud is geladen */
.bg-loaded body {
    background-image: url('../img/background.jpg'); /* Hier moet je je eigen afbeelding plaatsen */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* Fix voor iOS apparaten (zoals iPhone) */
@supports (-webkit-touch-callout: none) {
    .bg-loaded body {
        background-attachment: scroll; /* Gebruik scroll in plaats van fixed op iOS */
    }
}

/* Overlay voor betere leesbaarheid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Extra overlay voor mobiele apparaten */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-color: rgba(0, 0, 0, 0.5); /* Extra donkere laag voor leesbaarheid */
}

/* Navigatie */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.logo {
    display: inline-block;
    height: 50px; /* Pas deze waarde aan naar de gewenste hoogte */
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Header sectie */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.header-text {
    max-width: 800px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    color: #e3c4a8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Inhoud secties */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #e3c4a8;
    font-weight: 300;
}

/* Services sectie */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e3c4a8;
    font-weight: 600;
}

.service p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact sectie */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #e3c4a8;
}

.contact-method p {
    font-size: 1.1rem;
}

.contact-method a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #e3c4a8;
}

/* Calendly sectie */
.calendly {
    flex: 2;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
}

#calendly-embed {
    width: 100%;
    height: 650px; /* Vaste hoogte */
    margin: 0 auto;
    max-width: 800px; /* Maximale breedte voor betere proportionaliteit */
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e3c4a8;
}

/* Responsiviteit */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
}