:root {
    --Coquille: #f6ebe2;       /* De zachte basis zandkleur */
    --Olive: #4d3528;          /* Het diepe, luxe donkerbruin */
    --Toile: #d7beaa;          /* De warmere, donkerdere zandkleur */
    
    /* Luxe gouden accenten */
    --Gold: #C5A880;           /* Mat, elegant champagnegoud */
    --Gold-Light: #EADBC8;
    --roze: #D8B9C3;     /* Heel zacht goud voor subtiele highlights */
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 0, 0) rgb(255, 255, 255);
    
}

/* 1. Voeg box-sizing toe zodat padding de breedte niet beïnvloedt */
* {
    box-sizing: border-box;
}

/* body {
    font-family: "Poppins", sans-serif;
    background-image: linear-gradient(to bottom, var(--roze) 0%, var(--Coquille) 25%, var(--Toile) 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
} */

/* body {
    font-family: "Poppins", sans-serif;
    
    background-image: linear-gradient(to bottom, var(--roze) 0%, var(--Coquille) 25%, var(--Toile) 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
} */

body {
    font-family: "Poppins", sans-serif;
    background-image: linear-gradient(to right, var(--Toile) 0%, var(--Coquille) 100%);
    /* background-attachment: fixed; */
    margin: 0;
    padding: 0;
}


h1, h2, h3, h4, h5 {
    color: var(--Olive);
}


a {
    color: var(--Olive);
    text-decoration: none;
}
nav {
    padding: 0 60px;
    display: flex;
    align-items: center;
    height: 90px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white; /* i.p.v. solid kleur */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    box-shadow: black 0px 1px 3px;

}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    font-size: 20px;
}
nav .menu a {
    text-decoration: none;
    color: var(--Olive);
    font-weight: 500;
    background-image: linear-gradient(var(--Olive), var(--Olive));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px; /* Start op 0% breedte en is 2px hoog */
    padding-bottom: 5px;
    transition: all 0.3s ease; 
}

nav .menu a:hover {
    background-size: 100% 2px;
}


header {
    text-align: center;
    padding: 30px 0px;
    margin-bottom: -100px;
    /* background-color: rgb(97, 92, 87); */
    /* color: white; */
}

header h1 {
    font-size: 2.5em;
    /* margin-bottom: 10px; */
}

.img-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.grid .top {
    margin-top: -60px;
}

.grid h2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.grid img {
    width: 20vw;
}


.opening p {
    margin: 0;
    font-size: 1.1em;
}


.hamburger {
    display: none;
}
