
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
    position: relative;
    overflow-x: hidden;
}
.logo, h1, h2 {
  font-family: 'Lora', serif;
}
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center calc(70px); /* schuif naar beneden */
    filter: blur(0px) brightness(0.95);
   /* background-size: auto 100%;*/
    background-repeat: no-repeat;
    background-position: top center;
}
    .background-blur.hero-section {
        position: fixed;
        width: 100%;
        height: 100vh; /* volledige hoogte van scherm */
        background: url('/images/Long-Chua-Thuong-Xot.jpg') no-repeat center center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        opacity: 0.8;
        top: 70px;
        background-size: auto 100%;
        background-position: center;
        background-repeat: no-repeat;
        /*background-size: cover;*/
        min-height: 100vh;
    }

.hero-content {
    color: fuchsia;
    text-shadow: 5px 5px 8px rgba(0,0,0,0.6);
    padding: 10px;
    position: absolute;
    top: 50%;
    line-height: 1.1 /* of probeer 1.3 of 1.2 als je het nog compacter wilt */
}

    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 3rem); /* schaalt tussen 1.8rem en 3rem afhankelijk van schermbreedte */
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        font-style: italic; /* maakt de tekst cursief */
        margin: 0.3rem 0; /* verkleint de verticale ruimte tussen de <p> elementen */
        color: #fff; /* Zorgt dat de tekst wit is */
    }


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
}
:root {
    --header-height: 70px;
}
header {
    height: var(--header-height);
    background-color: rgb(72, 0, 255);
    padding: 0rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff
}

.logo {
    font-size: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    width: 55%; /* Zorgt dat beide teksten van links naar rechts gaan */
    padding: 0 26px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 17px;
}
nav a:hover {
        text-decoration: underline;
    }

.container {
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}
.header, .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }
}




