:root {
    --green: #9dc228;
    --black: #000;
    --white: #fff;
    --font: "Inter", Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
}

/* HEADER */
header {
    background: var(--white);
    border-bottom: 2px solid var(--black);
    padding: 12px 0;
}

.header-inner {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.2s;
}

nav a:hover {
    background: var(--green);
    color: var(--black);
}

/* GENERAL LAYOUT */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 50px 0;
}

#menu h1 {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    border-left: 5px solid var(--green);
    padding-left: 10px;
    margin-bottom: 35px;
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
}

.menu-item {
    border: 1px solid var(--black);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    transition: 0.25s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: var(--green);
}

.menu-item img {
    width: 100%;
    display: block;
}

.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.menu-list-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--black);
    border-radius: 8px;
    background: var(--white);
}

.menu-list-name {
    font-weight: 600;
}

.menu-list-price {
    font-weight: 700;
    color: var(--green);
}

@media (max-width: 600px) {
    .menu-list-grid {
        grid-template-columns: 1fr;
    }
}

.menu-info {
    padding: 12px 15px;
    text-align: center;
    background: var(--white);
}

.menu-info h3 {
    font-size: 1.2rem;
    margin: 5px 0;
    font-weight: 700;
    color: var(--green);
}

.menu-info p {
    font-size: 0.95rem;
    color: var(--black);
    margin: 4px 0 0 0;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* CONTACT */
#contact {
    background: var(--black);
    color: var(--white);
    padding: 60px 0;
    margin-top: 60px;
}

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

.contact-box {
    border: 1px solid var(--green);
    padding: 25px;
    border-radius: 8px;
    background: #111;
}

.contact-box h3 {
    margin-top: 0;
    color: var(--green);
    font-size: 1.2rem;
}

.contact-box a {
    color: var(--green);
    text-decoration: none;
}

.contact-box ul {
    list-style: none;
    padding-left: 0;
}

.contact-box li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 6px 0;
}

/* FOOTER */
footer {
    background: var(--black);
    color: #999;
    text-align: center;
    padding: 15px 0;
    margin-top: 0;
    font-size: 0.85rem;
}

/* OPENINGSDAGEN FEESTDAGEN */
.feestdagen-banner {
    background: #004b8d; /* donkerblauwe achtergrond – pas aan naar je eigen kleur */
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 900px;
}

.feestdagen-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feestdagen-banner .dagen-list {
    font-size: 1.2rem;
    font-weight: bold;
}

.feestdagen-banner .dagen-list span {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    background: #ffcc00; /* accentkleur – pas aan naar je huisstijl */
    color: #000;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .feestdagen-banner h2 {
        font-size: 1.5rem;
    }
    .feestdagen-banner .dagen-list {
        font-size: 1rem;
    }
}
