:root {
    --Coquille: #f6ebe2;
    --Olive: #4d3528;
    --Toile: #d7beaa;
    --Sauge: #a3b19b;
    --Ciel: #b4c4d0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 0, 0) rgb(255, 255, 255);
}

body {
    /* Alleen de naam van het font tussen quotes, daarna de fallback */
    font-family: 'Lato', sans-serif; 
    background-color:antiquewhite;
    color: black;
    margin: 0;
    padding: 0;
}

a {
    color: var(--Olive);
    text-decoration: none;
}
nav {
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 60px;

    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--Toile); /* 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;
}
nav 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 a:hover {
    background-size: 100% 2px;
}



footer {
    background-color: antiquewhite;
    padding: 20px 0;
    
}

.footer {
margin-left: 1%;
display: grid;
grid-template-columns: repeat(3, 1fr);
}
footer input {
    padding: 10px;
    margin: 10px 0;
    width: 100px;
    box-sizing: border-box;
    background-color: transparent;
    width: 200px;
}
footer button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    height: 50px;
    width: 100px;
    border: solid #000 1px;
    border-radius: 5px;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 50px; /* Start op 0% breedte */
    padding-bottom: 5px;
    transition: all 0.3s ease;
}
footer button:hover {

    color: black;
    background-size: 100% 50px; /* Animatie bij hover */
}

.credits {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

footer .opening {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.opening p {
    margin: 0;
    font-size: 1.1em;
}


.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}