/* 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;
    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');
    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;
    }
}

/* 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);
}

/* 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 tekst (tijdelijk, totdat een logo beschikbaar is) */
.logo-text {
    color: #e3c4a8;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #fff;
}

/* Logo afbeelding (voor wanneer het logo beschikbaar is) */
.logo {
    display: inline-block;
    height: 50px;
}

.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;
}

/* 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;
}

/* 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;
}
