main {
    margin-top: 150px;
    padding: 20px 40px;
    box-sizing: border-box;
    display: flex;
    padding-bottom: 100px;
    gap: 40px;
}

#orderpagina {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    width: 100%;
    gap: 6%;
    /* display: none; verander na dat je klaar bent met 2de pagina */

}

.menu {
    background-color: #FDFAF2;
    padding: 40px;
    overflow-y: auto;
    
}

.menu-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'GoldFont';
    font-size: 2.3em;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.eten-container {
    background-color: white;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    font-family: 'BakerFont';
    box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.2); 
}

.eten-container:hover {
    transform: translateY(-5px); /* Lichte hover-animatie */
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}


.eten-naam {
    font-size: 1.3em;
    margin-bottom: 8px;
    font-family: 'GoldFont';
    font-weight: normal;
}

.eten-ingredienten {
    font-size: 0.7em;
}

.eten-prijs {
    font-size: 1em;
    margin-top: 10px;
    font-family: 'CrimFont1';
}

.eten-acties {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.add-button {
    background-color: #FAD081;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.9s;
}

.add-button:hover {
    background-color: #4C5429; /* Donkerdere kleur bij hover */
    color: white;
}

.bon {
    background-color: #FDFAF2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    font-family: 'CrimFont1';
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.bon-title {
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'GoldFont'; 
    font-size: 2.3em;
    text-align: center;
}

.bon-totaal {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    margin-top: 20px;
}
.totaal-container {
    display: flex;
    justify-content: space-between; 
    font-size: 1.2em;
    width: 100%;
}

#totaal-prijs {
    font-family: 'CrimFont1';
}

.bon-lijst {
    flex: 1;
    margin-bottom: 10px;
    overflow-y: auto; 
}

.bon-item {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid black;
}

.bon-item-details {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start; 
    gap: 20px;
}

.bon-item .bon-item-aantal-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bon-item-naam {
    font-family: 'Goldfont';
    font-size: 1.2em;
}

.minus-btn,
.plus-btn {
    width: 25px;
    height: 25px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.5s;
}

.minus-btn:hover,
.plus-btn:hover {
    background-color: #CD6956;
    color: white;
}

.remove-link {
    color: black;
    text-decoration: none;
    font-size: 0.9em;
    cursor: pointer;
    
}

.remove-link:hover {
    text-decoration: underline;
    color: #CD6956;
}

.bon-item-prijs {
    font-size: 1em;
    text-align: right;
}

.bon-item button {
    background-color: #FAD081;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
  
.bon-totaal {
    text-align: center;
}

.totaal-label {
    padding-top: 20px;
}

#totaal-prijs {
    padding-top: 20px;
    border-top: 1px solid #CD6956;
    text-align: right;
    margin-bottom: 2px;
}
  
.bon-totaal button  {
    padding: 10px 20px;
    background-color: #CD6956;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'GoldFont';
    margin-top: 20px;
    align-self: flex-start;
    font-size: 1.0em;
    transition: background-color 0.3s;
}

.bon-totaal .bestel-button {
    align-self: center;  /* bestelknop in het midden */
    width: auto; 
}

#bestel-button:hover {
    background-color: #9A4E42;
}










/* pagina 2 */
#datumtijdpagina {
    display: none; /*normaal dit wel maar nu editen aan deze pagina dus moet laten zien */
    /* background-color: #a58bd6; */
    padding: 0px 10%;
    gap: 2%;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;

    height: auto; /* Dit kun je aanpassen om een vaste hoogte te testen */
    align-items: stretch; /* Zorgt ervoor dat beide containers dezelfde hoogte krijgen */
}
.linker-container, 
.rechter-container {
    flex: 1; /* Zorg ervoor dat beide containers gelijke ruimte innemen */
    display: flex;
    flex-direction: column; /* Elementen binnenin worden in een kolom geplaatst */
    box-sizing: border-box; /* Inclusief padding in grootteberekening */
}


.linker-container {
    background-color: #FDFAF2;
    display: flex;
    max-width: 40%; 
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.afhalen {
    display: flex;
    background-color: white;
    font-family: 'BakerFont';
    font-weight: normal;
    align-items: center;
    gap: 30px;
    padding: 20px;
    padding-bottom: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.minimap {
    border-radius: 50%; /* afbeelding rond */
    width: 100px; 
    height: 100px; 
    object-fit: cover; 
}
.afhalen h2 {
    font-weight: normal;
    font-size: 2.4em;
}

.afhalen h6 {
    font-weight: normal;
    font-size: 1.0em;
    margin-top: 5px;
}

.afhalen-info {
    display: flex;
    flex-direction: column; 
    gap: 5px; 
}
#adresbestel {
    margin: 0;
    font-size: 1.0em;
}
.datum-tijd {
    display: flex;
    gap: 10px; 
}
.datum-box, .tijd-box {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px; 
    font-size: 14px;
    background-color: #EEEEEF;
}

/* opmerkingen */
.opmerkingen {
    background-color: white;
    padding: 20px;
    width: 100%;
    text-align: left;
    font-family: 'BakerFont';
}

.opmerkingen h2 {
    font-weight: normal;
    font-size: 2.0em;
}

#opmerking {
    margin: 10px 0px;
    width: 100%;
    border: none;
    background-color: #DFE2E7;
    height: 100px;
    padding: 5px 10px; 
    box-sizing: border-box; 
    resize: none; 
    vertical-align: top; 

}

.kiesbetaal {
    background-color: white;
    padding: 20px;
    width: 100%;
}

.kiesbetaal h6 {
    font-weight: normal;
    font-size: 2.0em;
    font-family: 'BakerFont';
    margin-bottom: 10px;
}

#betaalmethode {
    background-color: #DFE2E7;
    border: none;
    font-family: 'BakerFont';
    padding: 5px;
}

.datum-tijd {
    align-items: center;
}

#datumvandaag {
    padding: 3px;
    font-family: 'CrimFont1';
    font-size: 0.8em;

}

#keuzetijd {
    background-color: #DFE2E7;
    border: none;
    font-family: 'CrimFont1';
    padding: 5px;
}

.afrondbutton button {
    font-size: 1em;
    padding: 10px 20px;
    background-color:#FAD081; 
    color: black;
    border: none;
    border-radius: 1px; 
    cursor: pointer;
    transition: background-color 0.3s ease; 
    font-family: 'BakerFont';
    margin-right: 20px;
}

.afrondbutton button:hover {
    background-color: #C78B1B; 
}

/* rechter gedeelte */
.rechter-container {
    max-width: 40%; 
    padding-bottom: 30px;
}

.bestellingsamenv {
    background-color: #FDFAF2 ;
    margin-bottom: 20px;
    width: 100%;
    padding: 20px;
}

.bestellingsamenv h2 {
    font-weight: normal;
    font-size: 3.0em;
    font-family: 'BakerFont';
}

#totaal-prijs2 {
    padding-top: 20px;
}

.invoerengegevens {
    background-color: #FDFAF2;
    padding: 20px;
    font-family: 'BakerFont';
    width: 100%;
    font-size: 1.2em;
}

.invoerengegevens h2{
    font-weight: normal;
    font-size: 2.8em;
    font-family: 'BakerFont';
    margin-bottom: 10px;
}

#voornaam {
    border-radius: 0;
    border-style: none;
    margin-left: 10px;  
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 2px;
}

#achternaam {
    border-radius: 0;
    border-style: none;
    margin-left: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2px;
}

#telefoonnummer {
    border-radius: 0;
    border-style: none;
    margin-left: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 2px;

}#email {
    border-radius: 0;
    border-style: none;
    margin-left: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2px;
}





/* pagina 3 */
#bedanktpagina {
    display: none;
    background-color: #FDFAF2;
    padding: 40px;
    width: 60vw;
    text-align: center;
    margin: 0 auto; /* Zorgt dat het element horizontaal gecentreerd wordt */
    padding-bottom: 120px;
    
}

#bedanktpagina h4 {
    font-weight: normal;
    font-size: 3.0em;
    font-family: 'BakerFont';
    margin-bottom: 20px;
}

#bedanktpagina p {
    font-weight: normal;
    font-size: 1.5em;
    font-family: 'BakerFont';
    margin-bottom: 20px;
}

#bedanktpagina h6 {
    font-weight: normal;
    font-size: 3.5em;
    font-family: 'BakerFont';
    margin-bottom: 20px;
}

#gekozentijd {
    font-size: 2.0em;
}


.terugbutton {
    font-size: 1em;
    padding: 10px 20px;
    background-color:#FAD081; 
    color: black;
    border: none;
    border-radius: 1px; 
    cursor: pointer;
    transition: background-color 0.3s ease; 
    font-family: 'BakerFont';
    text-decoration: none;
    margin: 60px 20px;
}
