/*
//  ALGEMENE ELEMENTEN
*/
body
{
    padding: 0px; margin: 0px;
    font-size: 17px;
    color: rgb(0, 0, 88);

    font-family: Verdana, Geneva, Tahoma, sans-serif;

    background-image: url('./img/overig/achtergrond.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: stretch;
}

hr
{
    padding: 0px;
    margin: 10px 0px;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: rgba(0, 20, 40, 0.3);
}

/*
//  ELEMENTEN MET ID
*/
#website_container
{
    width: 65%;

    background-color: rgb(240, 240, 255);

    padding-bottom: 40px;

    display: flex;
    flex-direction: column;
    flex-grow: 2;
}

    #website_banner
    {
        width: 100%;
        height: 256px;
        background-image: linear-gradient(rgba(0, 20, 40, 0), rgba(0, 20, 40, 0.3)), url("./img/fotos/ruimte.JPG");
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #website_logo
        {
            width: 220px;
            height: 220px;

            background-image: url("./img/logo/logo.png");
            background-size: cover;

            filter: drop-shadow(0px 3px 10px rgba(0, 20, 40, 0.8))
        }

    #website_content
    {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

        #content_opening
        {
            font-size: 1.05em;
        }
        #content_opening > .content-header { text-align: center; margin: 10px 0px 20px 0px; font-size: 1.3em;}

#website_links
{
    padding-top: 10px;
}

    #website_kaart
    {
        padding: 0px 40px 0px 40px;
    }

        #link_kaart
        {
            width: 100%;
            height: 350px;
            background-image: url("./img/overig/kaart.png");
            background-position: center;

            border-style: solid;
            border-width: 1px;
            border-color: rgba(0, 20, 40, 0.3);
        }

#website_footer
{
    width: 100%;
    
    background-color: rgb(20, 20, 40);
    color: rgba(240, 240, 255, 0.65);
    font-size: 0.8em;

    padding: 40px 0px 40px 0px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-grow: 1;
}

    #footer_content
    {
        width: 60vw;
        display: flex;
        flex-direction: column;
    }

        #footer_text
        {
            margin-bottom: 20px;
        }

        #footer_table
        {
            display: flex;
            flex-direction: row;
            gap: 40px;
        }

/*
//  ELEMENTEN MET CLASS
*/
.content-even { display: flex; flex-direction: row; margin: 20px 0px; }
.content-odd { display: flex; flex-direction: row-reverse; margin: 20px 0px;}
    
    .content-bucket
    {
        width: 60%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
        .content-header
        {
            font-weight: bold;
            font-size: 1.2em;
            padding: 10px 40px;
        }

        .content-text
        {
            padding: 10px 40px;
        }

    .content-foto
    {
        width: 40%;
        height: 260px;
        background-size: cover;
        background-position: center;
        flex-grow: 1;
        margin: 10px 40px;
    }

.externe-link
{
    display: flex;
    flex-direction: row;
    align-items: center;

    padding-left: 40px;
    margin: 20px 0px;
    font-size: 1.3em;
    font-weight: bold;
    gap: 20px;
}

    .link-button
    {
        width: 350px;
        height: 100px;

        background-size: cover;
        background-repeat: no-repeat;

        border-style: solid;
        border-width: 1px;
        border-color: rgba(0, 20, 40, 0.3);
    }
        
/*
//  MEDIA QUERY
*/
@media (max-width: 1500px)
{
    #website_container, #footer_text { width: 72%; }
    .externe-link { font-size: 1.2em; }
}

@media (max-width: 1300px)
{
    #website_container, #footer_text { width: 80%; }
    .externe-link { font-size: 1.15em; }
    .link-button { width: 263px; height: 75px; }
}

@media (max-width: 1100px)
{
    #website_container, #footer_text { width: 90%; }
    .externe-link { font-size: 1.1em; }
    .link-button { width: 263px; height: 75px; }
}

@media (max-width: 900px)
{
    #website_container, #footer_text { width: 100%; }
    .externe-link { font-size: 1.05em; }
    .link-button { width: 175px; height: 50px; }
}

@media (max-width: 700px)
{
    #website_container, #footer_text { width: 100%; }
    #content_opening > .content-header { margin: 30px 0px 20px 0px;}
    .content-even, .content-odd {flex-direction: column; margin: 0px 0px 20px 0px;}
    .content-bucket {width: auto; margin: 10px 0px;}
    .content-foto {width: auto;}
    .externe-link { font-size: 1em; }
    .link-button { width: 175px; height: 50px; }
}

        
/*
//  AFBEELDINGEN
*/
#img_1 { background-image: url("./img/fotos/dorpshuis.jpg");}
#img_2 { background-image: url("./img/fotos/tafel.JPG");}
#img_3 { background-image: url("./img/fotos/biljart.JPG");}

#biljartpoint_link { background-image: url("./img/links/biljartpoint.png");}
#googlemaps_link { background-image: url("./img/links/googlemaps.png");}
