/*
 __            __  __                        __  __                        __
|  |          |  ||  |                      |  ||  |                      |  |
 |  |        |  |  |  |        ____        |  |  |  |        ____        |  |
  |  |      |  |    |  |      |    |      |  |    |  |      |    |      |  |
   |  |    |  |      |  |    |  ||  |    |  |      |  |    |  ||  |    |  |
    |  |  |  |        |  |  |  |  |  |  |  |        |  |  |  |  |  |  |  |
     |  ||  |          |  ||  |    |  ||  |          |  ||  |    |  ||  |
      |____|            |____|      |____|            |____|      |____|
	  
Copyright (C) 2019 Vanparijs Wim Websites www.vanparijswimwebsites.com
*/

/*
 * Color scheme: http://paletton.com/#uid=7050u0krqsSgZASlXuAtMnbyyig
 */

/******************
 *                *
 * Basic elements *
 *                *
 ******************/
html{
    color: #000;
    font-size: 100%;
    color: #fff;
    background-color: #000;
    font-family: 'Noto Sans', sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    
    background-image: url(/static/images/bg/stardust.png);
}

body{
    padding: 0;
    margin: 0;
    position: relative;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

h1, h2, h3 {
    font-family: 'Fjalla One', sans-serif;
}

h1, h2{
    text-align: center;
    color: #FFF;
    font-weight: bold;
}

a{
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

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-azul-blue{
    color: #FFF;
    background-color: #004f94;
}

.bg-azul-red{
    color: #FFF;
    background-color: #ef412c;
}

.button-red{
    /*TODO review button colors*/
    background-color: #e53138;
}

/***************
 *             *
 * Bg & Header *
 *             *
 ***************/

header{
    margin-top: 0 !important;
    padding: 0;
    z-index: 100;
    text-align: center;
}

header #mobile-header{
    display: none;
}

header #hero-video video{
    min-width: 100%;
    height: 35em;
    object-fit: fill;
}

#small-logo-wrapper{
    text-align: center;
}

#small-logo-wrapper a{
    display: inline;
    margin: 0;
    padding: 0;
}

#small-logo{
    max-height: 3em;
    width: auto;
}

#desktop-logo{
    padding-top: 7em;
    padding-bottom: 1em;
}

#desktop-logo #logo{
    max-height: 15em;
    width: auto;
}

/**************
 *            *
 * Navigation *
 *            *
 **************/

nav{
    position: fixed;
    background: rgba(255,255,255, 0.95);
    width: 100%;
    padding: 0;
    margin: 0;
    
    z-index: 1000;
}

nav ul{
    padding: 0;
    margin: 0
}

nav li{
    position: relative;
    padding: 1em 0;
    height: 4em;
}

nav .max-width{
    margin: 0 auto;
}

nav a{
    font-family: Neon;
    font-size: 1.75em;
    font-weight: bold;

    cursor: pointer;
    display: block;
    padding: .5em;
    text-decoration: none;
    text-align: center;
    color: #d43830;
    position: relative;
    
    -webkit-transition: all linear 0.5s;
    -moz-transition: all linear 0.5s;
    -o-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

nav li:after{
    content: "";
    position: absolute;
    top: -2em;
    left: 0;
    height: 0em;
    width: 100%;
    background-color: #EEE !important;
    z-index: -1;
    
    -webkit-transition: all ease 0.15s;
    -moz-transition: all ease 0.15s;
    -o-transition: all ease 0.15s;
    transition: all ease 0.15s;
}

nav li:hover:after{
    height: 8em;
}

nav a:hover{
    color: #000;
}



/****************
 *              *
 * Page Content *
 *              *
 ****************/

section{
    background-color: transparent;
    margin-bottom: 0;
    padding-bottom: 1em;
    color: #FFF;
    text-align: justify;
}

section a{
    color: #FFF !important;
}



/**********
 *        *
 * Footer *
 *        *
 **********/

footer{
    padding: 1em 0;
    margin-bottom: 0 !important;
    padding: 0;
    background-color: #fff;
    color: #000;
}

.shopping-cart-visible footer{
    padding-bottom: 5em;
}

footer .max-width{
    margin-bottom: 0;
}

footer .wrapper{
    padding: 1em;
}

footer a{
    color: #000;
}

footer #cookies, footer #add2home{
    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;
}



/****************
 *               *
 * Shopping cart *
 *               *
 *****************/
#shopping-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    
    background-color: #000;
    color: #fff;
    text-align: center;
}

#shopping-cart .contents {
    display: inline-block;
    font-size: 1.25em;
    padding-right: 1em;
}



/********************
 *                  *
 * Animated buttons *
 *                  *
 ********************/

.animated-button {
    display: inline-block;
    position: relative;
    padding: 0.75em;
    border: solid 2px #28389E;
    border-radius: 0.75em;
    
    color: #fff;
    text-decoration: none;
    
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.animated-button:hover {
    color: #fff;
    background-color: #28389E;
    padding-right: 2.5em;
}

.animated-button i {
    display: block;
    position: absolute;
    bottom: 0.85em;
    right: 0.75em;
    opacity: 0;
    
    -webkit-transition: opacity 200ms;
    -moz-transition: opacity 200ms;
    -o-transition: opacity 200ms;
    transition: opacity 200ms;
}

.animated-button:hover i {
    opacity: 1;
    
    -webkit-transition: opacity 300ms 200ms;
    -moz-transition: opacity 300ms 200ms;
    -o-transition: opacity 300ms 200ms;
    transition: opacity 300ms 200ms;
}

.animated-button.green{
    border-color: #19AC40;
    color: #19AC40;
}

.animated-button.green:hover{
    color: #fff;
    background-color: #19AC40;
}


/*****************
 *               *
 * Media Queries *
 *               *
 *****************/

@media screen and (max-width: 62em)  {
    
    .max-width{
        margin: 1em;
    }
    
}


/**************
 *            *
 * Animations *
 *            *
 **************/
 
 @keyframes pulse{
    0%{
        opacity: 0.2;
    }
    100%{
        opacity: 1;
    }
}



/*********
 *       *
 * Fonts *
 *       *
 *********/

@font-face {
    font-family: 'Neon';
    src: url('/static/fonts/Neoneon.otf');
}
