: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);
    
}

/* 1. Voeg box-sizing toe zodat padding de breedte niet beïnvloedt */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif; 
    background-image: linear-gradient(var(--Coquille), var(--Toile));
    margin: 0;
    padding: 0;
}

a {
    color: black;
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    color: var(--Olive);
}

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;
}

header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: -20px;
    /* 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 h2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

footer {
    /* background-color: antiquewhite; */
    padding: 60px 5%; /* Meer ademruimte boven/onder */
    border-top: 1px solid #000;
}

.footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start; /* Zorgt dat alle kolommen bovenaan beginnen */
}

/* Algemene tekst styling in footer */
.footer h2, .footer h3 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.footer p, .footer a {
    color: #333;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block; /* Zorgt dat links onder elkaar staan */
}

/* Nieuwsbrief inputs */
footer .nieuws {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

footer input {
    display: block;
    width: 100%;
    max-width: 250px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000;
    background: transparent;
}

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 */
}


/* Centraal gedeelte (Openingstijden) */
.opening {
    text-align: center;
}

.opening p {
    margin-bottom: 5px; /* Compacte lijst ipv die <br><br> */
}

/* Credits onderaan over de hele breedte */
.credits {
    grid-column: 1 / -1; /* Neemt alle 3 kolommen in */
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}


/* Socials naast elkaar */
.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.socials img {
    width: 30px; /* Vaste maat voor iconen */
    height: auto;
}

.locatie {
    text-align: center;
    margin-bottom: 30px;
}
