/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Chango';
  src: url('/fonts/Chango/Chango-Regular.ttf') ;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Chango', sans-serif;
}

main {
    display: grid;
    grid-template-areas:
        "banner banner"
        "title title"
        "fotos uitleg"
        "video lijst"
        "footer footer";
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
}

.banner {
    display:flex;
    grid-area: banner;
    background-color: #111;
    border: 2px solid #fff;
    height: 500px;
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
}

.banner img {
    width: 100%;
    height:100%;
    border-radius: 0.5rem;
    filter: grayscale(100%) contrast(140%) brightness(80%);
}

.title {
    grid-area: title;
    background-color: transparent;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.5rem 0;
    border-bottom: 2px solid #fff;
}

.fotos {
    grid-area: fotos;
    background-color: #111;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.fotos img {
    width: 100%;
    max-width: 300px;
    border: 3px solid #fff;
    filter: grayscale(80%) contrast(120%);
    border-radius: 0.3rem;
    transition: filter 0.3s ease;
}

.fotos img:hover {
    filter: none;
    cursor: pointer;
}

.uitleg {
    grid-area: uitleg;
    background-color: #111;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 2rem;
    border-left: 4px solid #fff;
    font-style: italic;
}

.video {
    grid-area: video;
    background-color: #111;
    border: 2px solid #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%) contrast(140%) brightness(80%);
}

.footer {
    grid-area: footer;
    background-color: #111;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    border-top: 2px solid #fff;
    font-weight: 600;
}

.lijst ol a {
    color: #fff;    
    text-decoration: none;
}
.lijst ol a:hover {
    color: red;
    border-bottom: 1px solid red;
}

@media (max-width: 1000px) {
    main {
        grid-template-areas:
            "banner"
            "title"
            "fotos"
            "video"
            "uitleg"
            "lijst"
            "footer";
        grid-template-columns: 1fr;
    }

    .fotos {
        flex-direction: column;
    }
}