/*Root regels*/
:root {font-size: 100%; }
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
/*css voor styling*/
/*body css*/
body {
    width: 100%;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}
/*Header css, logo en H1*/
header {
    width: 100%;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e8cbc7;
    color: #95635e;
    font-size: 2rem;
    text-align: center;
}

header img {
    width: 22rem;
    height: auto;
}
/*Main css, deel 1: intro*/
section.intro {
    max-width: 90%;
    margin: 2rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    border: solid #e8cbc7 1rem;
    font-size: 1.5rem;
    color: #95635e;
}

section.intro img {
    width: 100%;
    max-width: 22rem;
    height: auto;
}

section.intro h2 {
    text-align: center;
    margin: 2.5rem 0;
}

section.intro p {
    text-align: center;
    margin: 0.3rem 0;
}
/*Deel 2:Prijslijst*/
section.prijslijst {
    background-color: #e8cbc7;
    padding: 1rem;
    color: black;
    box-sizing: border-box;
}

section.prijslijst h2 {
    font-family: "FairDisplay", serif;
    font-style: italic;
    text-align: center;
    font-size: 7rem;
    margin: 1rem 0;
}

section.prijslijst ul {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 0;
    gap: 0.5rem;
    background-color: transparent;
}

section.prijslijst ul li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0.2rem 0;
}

section.prijslijst ul li.title {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
    flex: 1 1 50%;
}

section.prijslijst ul li.price {
    font-weight: 700;
    text-align: right;
    flex: 1 1 50%;
}

section.prijslijst ul li.description {
    width: 100%;
    text-align: left;
    font-size: 1.4rem;
    margin-top: 0.3rem;
}

section.prijslijst ul.noDescription li.price {
    text-align: right;
    width: 100%;
}

section.bijsluiterprijslijst {
    background-color: #e8cbc7;
    margin-top: 0;
    color: gray;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
}
/*Footer deel 1: bijsluiter*/
section.bijsluiter {
    background-color: white;
    max-width: 700px;
    margin: 1rem auto 3rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    color: #95635e;
    text-align: center;
}
/*Deel 2:foto's*/
section.fotos ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 2rem auto;
    list-style: none;
    max-width: 700px;
}

section.fotos ul li {
    flex: 1 1 auto;
    max-width: 200px;
}

section.fotos ul li img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: solid #e8cbc7 1rem;
}
/*Deel 3: contact gegevens*/
section.Contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 1.5rem 0;
    color: #95635e;
    font-size: 1.5rem;
    border: solid #e8cbc7 1rem;
}

section.Contact h2 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    text-align: center;
}

section.Contact p {
    margin: 0;
    text-align: center;
}

section.Contact a {
    text-decoration: none;
    color: #95635e;
}

@media (max-width: 768px) {
    section.prijslijst h2 {
        font-size: 4rem;
    }
    section.prijslijst ul li.title,
    section.prijslijst ul li.price {
        flex: 1 1 100%;
        text-align: left;
    }
    section.prijslijst ul li.price {
        margin-top: 0.2rem;
    }
    section.prijslijst ul li.description {
        font-size: 1.2rem;
    }
    section.intro img {
        max-width: 100%;
    }
}