﻿/* Algemene stijlen */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigatie stijlen */
nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1000;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px;
}
nav li {
    margin: 0 15px;
}
nav a {
    text-decoration: none;
    color: #E91E63; /* Vervanging voor blauw */
    font-weight: bold;
    padding: 8px 12px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
}
nav a:hover {
    color: #fff;
    background-color: #E91E63;
}

/* Header stijlen */
header {
    color: #fff;
    height: 100vh; /* Pas deze waarde aan op de privacybeleid-pagina */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(233,30,99,0.6), rgba(156,39,176,0.6)), 
                url('images/droogijs-ice-cleaning.webp') no-repeat center center / cover;
    background-attachment: fixed;
}
header h1 {
    font-size: 4em; /* Pas deze waarde aan op de privacybeleid-pagina */
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shadow-pulse 2s infinite;
}
@keyframes shadow-pulse {
    0% {
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255,255,255,1);
    }
    100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
}
header p {
    font-size: 1.2em;
    max-width: 600px;
    background-color: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 4px;
}

/* Sectie stijlen */
section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
}
section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #E91E63;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}
section ul,
section ol {
    margin: 20px 0;
    padding-left: 40px;
}

/* Footer stijlen */
footer {
    background-color: #f4f4f4;
    padding: 20px;
    color: #777;
    text-align: center;
}
footer p {
    margin: 5px 0;
}
footer a {
    color: #E91E63;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsieve stijlen */
@media (max-width: 768px) {
    header h1 {
        font-size: 3em; /* Pas deze waarde aan op de privacybeleid-pagina */
    }
    nav ul {
        flex-direction: column;
    }
    nav li {
        margin: 10px 0;
    }
    header {
        background-attachment: scroll;
    }
    /* Menu Toggle Button */
    .menu-toggle {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        background-color: #E91E63;
        color: #fff;
        border: none;
        padding: 10px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
    nav {
        display: none;
    }
    nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        overflow-y: auto;
        z-index: 1000;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav li {
        margin: 20px 0;
    }
}
/* Verborgen menu-knop standaard op desktop */
.menu-toggle {
    display: none;
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
