/* Basis styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image:url(images/8.jpg);
    background-color: #cccccc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styling */
header {
    background-color:rgb(129, 119, 109) ;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 2px 5px rgba(112, 84, 84, 0.1);
}

.logo {
    max-width: 240px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #030303;
    padding: 20px 30px;
    background-color: #ffffff;
    border-radius: 35px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ddd2cc;
}

/* Menu container styling */
.menu-container {
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 20px; 
}

/* Menu header styling */
.menu-container h1 {
    font-size: 36px; 
    color: #5d3a2d; 
    margin-bottom: 30px; 
}

/* Menu items styling */
.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

/* Menu item styling */
.menu-item {
    background-color: #2423238f; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(248, 244, 244, 0.1); 
    overflow: hidden; 
    transition: transform 0.3s ease; 
}

.menu-image img {
    width: 100%; 
    height: auto; 
}

/* Menu titel (maaltijdnamen) styling */
.menu-info h2 {
    font-family: 'Poppins', serif; /* Elegant lettertype voor maaltijdnamen */
    font-size: 25px; 
    color: #f5efef; /* Chocoladebruine kleur voor de maaltijdnamen */
    margin-bottom: 10px;
}

/* Beschrijvingen van de maaltijden */
.menu-info p {
    font-family: 'Poppins', sans-serif; /* Modern, strak lettertype voor de beschrijvingen */
    font-size: 19px;
    color: #faf8f8; /* Zachte grijstint voor de beschrijving */
    line-height: 1.5; 
}

/* Prijzen styling */
.price {
    font-family: 'Poppins', sans-serif; /* Modern en duidelijk voor de prijzen */
    font-weight: bold;
    color: #fdf9f9; /* Roodtint voor de prijs */
    font-size: 26px;
}

/* Hover-effect voor menu items */
.menu-item:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
}
