/*
 __            __  __                        __  __                        __
|  |          |  ||  |                      |  ||  |                      |  |
 |  |        |  |  |  |        ____        |  |  |  |        ____        |  |
  |  |      |  |    |  |      |    |      |  |    |  |      |    |      |  |
   |  |    |  |      |  |    |  ||  |    |  |      |  |    |  ||  |    |  |
    |  |  |  |        |  |  |  |  |  |  |  |        |  |  |  |  |  |  |  |
     |  ||  |          |  ||  |    |  ||  |          |  ||  |    |  ||  |
      |____|            |____|      |____|            |____|      |____|
	  
Copyright (C) 2019 Vanparijs Wim Websites www.vanparijswimwebsites.com
*/

/*
 * Color scheme: http://paletton.com/
 */

/******************
 *                *
 * Basic elements *
 *                *
 ******************/
html {
    color: #000;
    font-size: 100%;
    /*TODO choose a better font*/
    font-family: 'Noto Sans', sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html.green { background-color: rgba(51, 153, 102, 0.1); }
html.yellow { background-color: rgba(255, 204, 51, 0.1); }
html.pink { background-color: rgba(255, 51, 102, 0.1); }
html.purple { background-color: rgba(102, 51, 153, 0.1); }
html.blue { background-color: rgba(51, 102, 204, 0.1); }
html.red { background-color: rgba(255, 0, 0, 0.1); }

body {
    padding: 0;
    margin: 0;
    position: relative;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}

h1, h2 {
    text-align: center;
    font-weight: normal;
}

a {
    text-decoration: underline;
    cursor: pointer;
    color: #000;
}

a:hover, a:active, a:focus {
    text-decoration: none;
}

a.working {
    cursor: wait !important;
    animation: pulse 750ms infinite;
}

a img {
	border: none;
}

img { /*Responsive images*/
    max-width: 100%;
    height: auto;
}



/***********
 *         *
 * GENERAL *
 *         *
 ***********/

.max-width {
    max-width: 70em;
    margin: 1em auto;
    z-index: 10;
}

/***************
 *             *
 * Bg & Header *
 *             *
 ***************/

header {
    margin-top: 0 !important;
    padding: 1em 0;
    z-index: 100;
    text-align: center;
    box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.5);
}

html.green header {
    color: #396;
    background-color: #396;
}

html.yellow header { 
    color: #fc3;
    background-color: #fc3;
}

html.pink header { 
    color: #f36;
    background-color: #f36;
}

html.purple header { 
    color: #639;
    background-color: #639;
}

html.blue header { 
    color: #36c;
    background-color: #36c;
}

html.red header { 
    color: #F00;
    background-color: #F00;
}

header .wrapper {
    margin-top: 0em;
    margin-bottom: 0;
    background-color: rgba(255,255,255,0.85);

}

header #mobile-header {
    display: none;
}

#desktop-logo #logo {
    max-height: 10.5em;
    width: auto;
}

nav {
    padding: 5em 0;
    padding-left: 0.5em;
    position: relative;
    overflow: hidden;
}

nav #nav-container {
    position: absolute;
    width: 100%;
    left: -0.5em;
    top: 7em;

    transition: all 1s;
}

nav.open #nav-container {
    top: 1em;
}

nav a {
    display: block;
    font-size: 2em;

    text-decoration: none;
    text-transform: uppercase;
    color: #000;
}

html.green nav a.current { color: #396; }
html.yellow nav a.current { color: #fc3; }
html.pink nav a.current { color: #f36; }
html.purple nav a.current { color: #639; }
html.blue nav a.current { color: #36c; }
html.red nav a.current { color: #F00; }

nav a.current {
    position: absolute;
    top: -1em;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);

    transition: all 1s;
}

nav.open a.current {
    opacity: 0;
}

nav a:not(.current) {
    opacity: 0;

    transition: opacity 1s;
}

nav.open a:not(.current) {
    opacity: 1;
}

nav.open a:not(.current) {
    position: relative;
    display: block;
}

nav #menu, nav #close-menu {
    display: block;
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 0.5em;
    font-size: 2em;
    transform: translateY(-50%);

    transition: all 1s;
}

nav #close-menu {
    color: #000;
}

nav:not(.open) #close-menu {
    top: 6em;
    opacity: 0;
}

nav.open #menu {
    top: -1em;
    opacity: 0;
}

/**************
 *            *
 * Navigation *
 *            *
 **************/



/****************
 *              *
 * Page Content *
 *              *
 ****************/

section {
    background-color: transparent;
    margin-bottom: 0;
    padding-bottom: 1em;
    text-align: justify;
}



/**********
 *        *
 * Footer *
 *        *
 **********/

footer {
    margin-bottom: 0 !important;
    padding: 0;
}

footer .max-width {
    margin-bottom: 0;
}

footer .wrapper {
    padding: 1em;
}

footer #cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 1em;
    z-index: 1000;
}

footer #cookies h3 {
    color: #fff;
    text-align: center;
    line-height: 100%;
}

#cookies a {
    color: #FFF !important;
}



/*****************
 *               *
 * Media Queries *
 *               *
 *****************/

@media screen and (max-width: 62em) {
    
    .max-width{
        margin: 1em;
    }
    
}



/*********
 *       *
 * Fonts *
 *       *
 *********/

