: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;     /* Heel zacht goud voor subtiele highlights */
}

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 60px;
    display: flex;
    align-items: center;
    height: 110px;
    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;
}



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: var(--Olive);
    color: #fff;
    border: none;
    cursor: pointer;
    height: 50px;
    width: 100px;
    border: solid var(--Sauge) 1px;
    border-radius: 5px;
    background-image: linear-gradient(#a3b19b, #a3b19b);
    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: var(--Olive);
    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;
}

.hamburger {
    display: none; /* Verberg op desktop */
}