: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 */
    --roze: #D8B9C3;   
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 0, 0) rgb(255, 255, 255);
}

body {
    font-family: "Poppins", sans-serif;
    background-image: radial-gradient(circle at top left, var(--Toile) 0%, var(--Coquille) 60%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: black;
}

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; 
    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; 
    padding-bottom: 5px;
    transition: all 0.3s ease; 
}

nav .menu a:hover {
    background-size: 100% 2px;
}




.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hamburger {
    display: none; /* Verberg op desktop */
}




footer {
    background-color: transparent;
    padding: 20px 0;
    border-top:black solid 1px;
}

.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, .popup-content button {
    padding: 10px 20px;
    background-color: var(--Olive); /* Basis is het diepe donkerbruin */
    color: #fff;
    cursor: pointer;
    height: 50px;
    width: auto; /* Flexibeler voor tekst */
    min-width: 120px;
    border: 1px solid var(--Gold);
    border-radius: 5px;
    
    /* Goud verloop dat animmeert bij hover */
    background-image: linear-gradient(var(--Gold), var(--Gold));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 100%; 
    padding-bottom: 5px;
    transition: all 0.4s ease;
}

footer button:hover, .popup-content button:hover {
    color: var(--Olive); /* Tekst wordt donkerbruin op de gouden achtergrond */
    background-size: 100% 100%; 
}

.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;
}

.opening p {
    margin: 0;
    font-size: 1.1em;
}

footer .locatie {
    /* text-align: end; */
    right: 100%;
}

footer .locatie img {
    width: 10%;
}

footer .logo {
    align-content: top;
}


