/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body: Achtergrondkleur van de hele pagina */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #fff; /* Achtergrondkleur van de hele pagina */
    color: #fff; /* Tekstkleur van de hele pagina */
    background-color: #fff; /* Achtergrondkleur van de hele pagina */
}

/* Header: Achtergrondkleur van de header */
.header {
    background: #fff; /* Achtergrondkleur van de header */
    padding: 5px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    max-height: 160px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-right: 50px;
}

.nav-menu li {
    position: relative;
    margin: 0 10px;
    font-size: large;
}

/* Navigatie menu: Tekstkleur en achtergrondkleur bij hover */
.nav-menu a {
    color: #373830; /* Tekstkleur van navigatielinks */
    text-decoration: none;
    font-weight: 700;
    padding: 10px 15px;
    display: block;
}

.nav-menu a:hover {
    background-color: #ddd; /* Achtergrondkleur van navigatielinks bij hover */
    color: #700835; /* Tekstkleur van navigatielinks bij hover */
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9; /* Achtergrondkleur van dropdown menu */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    flex-direction: column;
}

.dropdown-content a {
    color: #373830; /* Tekstkleur van dropdown links */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1; /* Achtergrondkleur van dropdown links bij hover */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section: Achtergrondkleur van de hero sectie */
.hero {
    background: url('background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Tekstkleur van de hero sectie */
    height: 600px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

/* Menu Section: Achtergrondkleur van de menu sectie */
.menu {
    background: #e3e3e3; /* Achtergrondkleur van de menu sectie */
    padding: 50px 0;
}

.pdf-container {
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.pdf-container embed {
    width: 40%;
    height: 1650px;
    display: inline-block;
}

/* Verschillende secties: Achtergrondkleur van verschillende secties */
.about,
.contact,
.menu,
.pizza,
.over,
.winkel,
.wijnen {
    background-color: white; /* Achtergrondkleur van verschillende secties */
    padding: 50px 0;
    text-align: center;
}

/* Openingstijden Section: Achtergrondkleur van de openingstijden sectie */
.openingstijden {
    background: #fff; /* Achtergrondkleur van de openingstijden sectie */
    padding: 50px 0;
    text-align: center;
}

.openingstijden ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.openingstijden li {
    margin: 5px 0;
}

/* Footer en Serata Section: Achtergrondkleur van de footer en serata sectie */
.footer,
.serata {
    background: #6b7753; /* Achtergrondkleur van de footer en serata sectie */
    color: #fff; /* Tekstkleur van de footer en serata sectie */
    text-align: center;
    padding: 10px 0;
}

.vitrine-fotos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.vitrine-fotos img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.fotos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 8px;
}

.fotos.vitrine img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
}

.fotos.serata img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
}

.fotos.menu img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
}

/* Horizontale lijn: Kleur van de horizontale lijn */
hr {
    border: 3px solid #DFCD86; /* Kleur van de horizontale lijn */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        margin-right: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero {
        height: 400px;
        background-position: center;
        background-size: cover;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .pdf-container embed {
        width: 100%;
        height: auto;
    }

    .fotos.vitrine img,
    .fotos.serata img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .logo {
        max-height: 100px;
    }

    .nav-menu a {
        font-size: medium;
        padding: 8px 10px;
    }

    .hero {
        height: 300px;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    section {
        padding: 30px 10px;
    }

    .fotos {
        flex-direction: column;
    }

    .openingstijden ul {
        max-width: 100%;
    }

    .fotos.vitrine img,
    .fotos.serata img {
        max-width: 100%;
    }

    .pdf-container embed {
        width: 100%;
        height: 600px;
    }
}
