@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    letter-spacing: -2px;
}

.coach {
    letter-spacing: 0;
}




header {
    background-color: rgb(34, 34, 34);
    position: sticky;
    top: 0;
    z-index: 9999;
    opacity: 0.95;
    height: 60px;

    display: flex;
    align-items: center;
}

header>img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-left: 40px;
}

nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: white;
    margin: 0 25px;
    padding: 5px;
    position: relative;
    transition: 0.3s;
}

nav a:hover {
    color: darkgreen;
}



#ham {
    display: none;
}



#banner {
    background-color: black;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, 60px);
}

#banner img {
    height: 380px;
    margin-left: 200px;
    margin-top: 90px;
}

#kick {
    color: white;
    font-size: 50px;
    margin-top: 200px;
    font-weight: bold;
}

#kom {
    color: white;
    font-size: 20px;
    font-weight: bold;
}



#info {
    color: white;
    height: 400px;
    margin-left: 200px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#info article img {
    width: 300px;
    margin-left: 20px;
}

#info h1 {
    font-size: 50px;
    width: 500px;
    margin-top: 50px;
}

#info p {
    font-size: 20px;
    font-weight: 900;
    width: 500px;
    color: #bdbdbd;
}

figcaption {
    margin-left: 100px;
    color: #bdbdbd;
}




#marcus {
    color: green;
    transition: 0.3s;
}

#marcus:hover {
    color: rgb(0, 255, 55);
}


.lessen {
    padding: 2px 16px;
    background-color: darkgreen;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    transition: 0.3s;
}

.lessen:hover {
    background-color: white;
    color: darkgreen;
}

#knop {
    margin-top: 50px;
    position: relative;
    left: -20px;
}

#knop a {
    margin: 20px;
}



#team {
    text-align: center;
    margin-top: 140px;
    margin-bottom: 60px;
}

#coaches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    margin-bottom: 50px;
}

.coach img {
    height: 600px;
}

.coach a:hover {
    opacity: 20%;
}




#tittle {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

#lessen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#lessen article {
    padding: 40px;
    min-height: 180px;

    border: 2px solid #222;
    border-radius: 12px;

    transition: 0.3s;
}

#lessen article:hover {
    border-color: #174d2d;
    transform: translateY(-6px);
}

#lessen h2 {
    color: green;
    font-size: 28px;
    margin-bottom: 20px;
}

#lessen p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.6;
}




#nemen {
    margin-top: 50px;
    color: #bdbdbd;
    text-align: center;
}

#nemen b {
    display: inline-block;
    font-size: 26px;
    margin-bottom: 6px;
    text-decoration: underline;
}




#rooster img {
    width: 500px;
    height: auto;

    display: block;
    margin: 70px auto 0;
}


#prijzen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    max-width: 1400px;
    margin: 70px auto 0;
    padding: 60px 30px;

    background-color: black;
}

.prijs {
    position: relative;

    background-color: #151515;
    border: 1px solid #292929;

    padding: 40px 30px;
    min-height: 430px;

    transition: 0.3s;
}

.prijs:hover {
    border-color: darkgreen;
    transform: translateY(-5px);
}

.prijs h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 25px;
}

.bedrag {
    color: white;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
}

.bedrag span {
    font-size: 25px;
}

.prijs>p:not(.bedrag):not(.info):not(.label) {
    color: #aaa;
    margin-bottom: 40px;
}

.info {
    color: #ccc;
    border-bottom: 1px solid #292929;
    padding: 15px 0;
}

.info::before {
    content: "✓";
    color: darkgreen;
    margin-right: 12px;
}




.prijs a {
    display: block;

    text-align: center;
    color: white;
    text-decoration: none;

    border: 1px solid white;

    padding: 18px;
    margin-top: 35px;

    font-weight: bold;

    transition: 0.3s;
}

.prijs a:hover {
    background-color: darkgreen;
    border-color: darkgreen;
}




.populair {
    border: 1px solid darkgreen;
}

.prijs:last-child {
    grid-column: 2 / 4;
}


.label {
    position: absolute;

    top: 0;
    right: 0;

    background-color: darkgreen;
    color: white;

    padding: 10px 18px;
    margin: 0;

    font-weight: bold;
    font-size: 13px;
}




footer {
    color: white;
    min-height: 800px;
    border-top: 1px solid green;
    position: relative;
}

footer img {
    height: 60px;
    margin-top: 20px;
    margin-left: -20px;
}

footer iframe {
    margin-top: 30px;

    float: right;

    width: 600px;
    height: 400px;

    margin-right: 200px;

    border: 0;
}

footer h4 {
    color: white;
}

#inffooter {
    font-size: 25px;

    margin-left: 200px;
    padding: 50px;

    margin-top: 80px;
    margin-bottom: 170px;
}

#inffooter p {
    font-size: 15px;
}

#adress {
    text-decoration: underline;
    color: white;
    font-size: 15px;
    margin: 0;
}

.social {
    margin: 20px;
}




#sponso {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 30px;
}

#sponso article img {
    width: 100%;
    height: auto;
}



@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }



    header {
        height: 60px;
    }

    header>img {
        width: 50px;
        height: 50px;
        margin-left: 20px;
    }



    #ham {
        display: block;

        position: fixed;

        right: 20px;
        top: 5px;

        z-index: 10001;

        color: white;
        font-size: 40px;
        text-decoration: none;
    }



    #menu {
        position: fixed;

        top: 0;
        right: -35%;

        width: 35%;
        height: 100vh;

        background-color: #161616;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        transition: right 0.4s ease;

        z-index: 10000;
    }

    #menu.open {
        right: 0;
    }

    #menu a {
        position: static;

        margin: 20px 0;

        padding: 0;

        font-size: 14px;
    }




    #banner {
        display: block;
        padding: 40px 20px;
    }

    #banner img {
        height: 230px;
        width: auto;

        display: block;

        margin: 20px auto;
    }

    #kick {
        margin: 80px 0 0;
        font-size: 40px;
    }

    #kom {
        font-size: 18px;
    }



    #info {
        display: block;

        height: auto;

        margin: 80px 20px;
    }

    #info h1,
    #info p {
        width: 100%;
    }

    #info h1 {
        font-size: 40px;
        margin-top: 0;
    }

    #info p {
        margin-top: 20px;
        font-size: 18px;
    }

    #info article img {
        width: 230px;

        display: block;

        margin: 40px auto 0;
    }

    figcaption {
        margin-left: 0;
        text-align: center;
    }


    #team {
        margin-top: 100px;
    }

    #coaches {
        display: block;
    }

    .coach {
        margin-bottom: 50px;
    }

    .coach img {
        height: 425px;
        max-width: 90%;
        object-fit: cover;
    }

    #tittle {
        margin-top: 80px;
    }

    #lessen {
        display: block;

        width: 90%;

        padding: 0;
    }

    #lessen article {
        margin-bottom: 15px;
        padding: 30px;
    }

    #lessen h2 {
        font-size: 25px;
    }

    #lessen p {
        font-size: 16px;
    }


    #nemen {
        width: 90%;

        margin: 50px auto 0;

        line-height: 1.8;
    }


    #rooster img {
        width: 90%;
        height: auto;

        display: block;

        margin: 50px auto;
    }



    #prijzen {
        grid-template-columns: 1fr;

        width: 100%;

        padding: 30px 20px;

        margin-top: 50px;
    }

    .prijs {
        min-height: 360px;
    }

    .prijs:last-child {
        grid-column: auto;
    }




    footer {
        min-height: auto;

        padding-bottom: 50px;
    }

    footer iframe {
        float: none;

        width: 90%;
        height: 300px;

        margin: 30px 5%;
    }

    #inffooter {
        margin: 50px 20px;

        padding: 0;

        font-size: 22px;
    }


    #sponso {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

        margin: 30px 20px;
    }

    #sponso article img {
        width: 100%;
        height: auto;
    }

    #knop a{
        display: block;
    }

}