:root {
    --body: #000000;
    --background: rgb(35, 31, 32);
    --color: #ffffff;
    --accent: #f0502b;
    --hover: #ffaf9c;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: var(--body);
    color: var(--color);
    font-family: 'Poppins', sans-serif;
    min-height: 100%;
}

#holder {
    padding: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    min-height: calc(100%);
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.section {
    display: block;
    padding: 30px;
    padding-bottom: 40px;
    background: var(--background);
    background: linear-gradient(0deg, rgba(65,57,59,1) 0%, rgba(35,32,32,1) 100%);
    border: solid 1px #000000;
    margin-bottom: 60px;
    opacity: 0;
}

    .section > .headerImage {
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.3);
    }

#logo {
    text-transform: uppercase;
}

    #logo * {
        max-width: 100%;
    }

#footer {
    background: #000000;
    height: 72px;
    line-height: 72px;
    position: fixed;
    bottom: 0;
    width: 100%;
    width: 100%;
    left: 50%;
    transform: translate(-50%,0);
    border-top: solid 1px #ffffff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #footer .info {
        position: relative;
        width: 100%;
        width: 1024px;
        max-width: 1024px;
        background: #ff00ff;
    }

    #footer img {
        height: 64px;
        position: absolute;
        top: 50%;
        transform: translate(0,-50%);
    }

    #footer #links {
        position: absolute;
        display: block;
        left: 40px;
        top: 50%;
        transform: translate(0,-50%);
    }

        #footer #links a { 
            color: #ffffff;
        }

        #footer .logo {
            display: block;
            right: 40px;
        }

#background {
    position: fixed;
    overflow: hidden;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    background: var(--body);
}

    #background video {
        height: 100vmax;
    }


a {
    text-decoration: none;
}

    a:visited {
        text-decoration: none;
    }

    a:active {
        text-decoration: none;
    }

    a:hover {
        color: var(--hover);
    }

h1, h2, h3, h4, h5, h6, a {
    color: var(--accent);
}

h2 {
    font-size: 32px;
    line-height: 36px;
}

#content {
    position: relative;
    margin: 30px;
    text-shadow: 1px 1px 2px #000000;
}

    #content h1 {
        text-transform: uppercase;
    }


#spacer {
    display: box;
    height: 80px;
}


      #contactDetails .map {
        border-radius: 10px;
        overflow: hidden;
    }


.sliding {
    position: relative;
    top: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 300px;
    width: 100%;
    height: 250px;
    background-image: url(rinus.webp);
    background-size: cover;
}

/*-------mobile ------*/
@media only screen and (max-width: 1024px) {
    body {
        padding: 0;
        margin: 0;
    }

    #holder {
        width: 100%;
        min-height: 100vh;
        padding: 0;
        margin: 0;
    }

    #footer {
        width: 100%;
    }

    #content {
        margin-left: 0;
        margin-right: 0;
    }

    .section {
        margin-bottom: 40px;
        border-left: none;
        border-right: none;
    }

    
    #contactDetails .addresses {
        font-size: larger;
        padding: 20px;
        text-align: center;
    }

    .blur {
        opacity: 1;
        animation: blur 0.5s ease;
        animation-fill-mode: forwards;
    }

    @keyframes blur {
        0% {
            opacity: 0;
            filter: blur(5px) brightness(1.5);
        }

        100% {
            opacity: 1;
            filter: blur(0px), brightness(1);
        }
    }
}

/*-------desktop ------*/


@media only screen and (min-width: 1025px) {

    #holder {
        /*box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.3);*/
        width: 1024px;
        max-width: 1024px;
    }
    
    
    
    #content > div > div {
        margin-left: 15px;
    }

    .section {
        box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.3);
        border-radius: 10px;
        opacity: 0;
    }


    .blur {
        opacity: 1;
        animation: blur 0.5s ease;
        animation-fill-mode: forwards;
    }

    @keyframes blur {
        0% {
            opacity: 0;
            filter: blur(5px) brightness(1.5);
            transform: translate(-10%,0);
        }

        100% {
            opacity: 1;
            filter: blur(0px), brightness(1);
            transform: translate(0,0);
        }
    }


    .event div {
        margin-left: 20px;
    }
    
    #contactDetails {
        width: 100%;
        display: flex;
    }
    
    #contactDetails div {
        flex-grow:1;
    }
    
    #contactDetails .addresses {
        font-size: larger;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 512px) {
    #footer {
        height: 48px;
    }

        #footer img {
            height: 32px;
            position: absolute;
            top: 50%;
            transform: translate(0,-50%);
        }
}
}
