/* BASIS */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #111;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* HEADER */
header {
    background: #111;
    padding: 15px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 140px;
    background: white;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    font-weight: bold;
}

nav a:hover {
    color: #ffd400;
}

.knop {
    background: #ffd400;
    color: #111;
    padding: 12px 20px;
    font-weight: bold;
    display: inline-block;
}

.knop:hover {
    background: white;
}

/* HOME */
.hero {
    background: #ffd400;
    padding: 70px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 600px;
}

.klein {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 70px;
    line-height: 0.9;
    margin: 20px 0;
}

.hero h1 span {
    color: white;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}

.hero-foto {
    width: 400px;
    background: white;
    border: 8px solid #111;
    transform: rotate(3deg);
}

.hero-foto img {
    width: 100%;
    display: block;
}

/* DONKERE BLOK */
.donker {
    background: #111;
    color: white;
    padding: 80px 12%;
}

.donker h2 {
    font-size: 50px;
    margin: 10px 0;
}

.donker span {
    color: #ffd400;
}

.donker p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.6;
}

/* VOLGENDE SHOW */
.volgende {
    background: white;
    padding: 50px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.volgende h2 {
    margin: 5px 0;
}

/* PAGINA */
.pagina {
    max-width: 1000px;
    margin: auto;
    min-height: 700px;
    padding: 70px 30px;
}

.pagina h1 {
    font-size: 60px;
    line-height: 1;
}

.pagina h1 span {
    color: #ffd400;
    background: #111;
    padding: 2px 8px;
}

/* VOORSTELLINGEN */
.show {
    background: white;
    margin-top: 15px;
    padding: 20px;
    border-left: 8px solid #ffd400;
    display: grid;
    grid-template-columns: 100px 1fr 140px;
    align-items: center;
    gap: 20px;
}

.datum {
    background: #ffd400;
    text-align: center;
    padding: 10px;
}

.datum b {
    display: block;
    font-size: 32px;
}

.datum small {
    font-weight: bold;
}

.show h2 {
    margin: 0;
}

.show p {
    color: #666;
}

.prijs {
    text-align: right;
    font-weight: bold;
}

/* OVER ONS */
.over {
    display: flex;
    align-items: center;
    gap: 60px;
}

.over-foto {
    width: 45%;
    background: #ffd400;
    padding: 20px;
}

.over-foto img {
    width: 100%;
    display: block;
}

.over-text {
    width: 55%;
}

.over-text p {
    font-size: 18px;
    line-height: 1.6;
}

.lijst {
    border-top: 2px solid #111;
}

.lijst p {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.lijst b {
    color: #ffd400;
    background: #111;
    padding: 4px 8px;
}

/* TICKETS */
.ticket {
    background: white;
    max-width: 650px;
    padding: 30px;
    border-top: 8px solid #ffd400;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
}

select,
input {
    width: 100%;
    padding: 12px;
    margin-top: 7px;
    border: 1px solid #aaa;
}

.ticket .knop {
    margin-top: 20px;
}

/* CONTACT */
.contact {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-text {
    width: 55%;
}

.contact-box {
    width: 45%;
    background: #111;
    color: white;
    padding: 30px;
    border-top: 8px solid #ffd400;
}

.contact-box p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-box a {
    color: #ffd400;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
}

footer p {
    color: #bbb;
}

/* TELEFOON */
@media (max-width: 700px) {

    header {
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
        order: 3;
        justify-content: center;
        margin-top: 10px;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-foto {
        width: 80%;
        align-self: center;
    }

    .volgende {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .show {
        grid-template-columns: 70px 1fr;
    }

    .prijs {
        grid-column: 2;
        text-align: left;
    }

    .over {
        display: block;
    }

    .over-foto,
    .over-text {
        width: 100%;
    }

    .over-text {
        margin-top: 30px;
    }

    .contact {
        display: block;
    }

    .contact-text,
    .contact-box {
        width: 100%;
    }

    .contact-box {
        margin-top: 30px;
    }

    footer {
        flex-direction: column;
        gap: 8px;
    }
}
