/*

#008080
hsl(225, 67%, 40%)
#c30
#fc0

*/
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    color: hsl(225, 63%, 45%);
}

.clear {
    width: 100%;
    clear: both;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: hsl(225, 63%, 45%);
    position: relative;
	height: 50px;
}

#logo img {
	top: 20px;
	position: absolute;
	z-index: 999;
	width: 150px;
}
#nav-btn {
    background: none;
    border: none;
    color: hsl(225, 63%, 45%);
    font-size: 28px;
    cursor: pointer;
    display: none;
}
.hero {
    position: relative;
    margin: o;
    padding: 40px 0 15px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    line-height: 1.4;
    background-color: hsl(225, 63%, 45%);
    animation: zoomFadeIn 1.2s ease-out forwards;
}

.hero h1 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    padding: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s ease-out forwards;
    animation-delay: 0.2s; /* eerst de hero, dan de tekst */
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /*background: hsla(225, 60%, 35%, .23);  Blauwe gloed overlay met 60% transparantie */
    pointer-events: none; /* overlay niet aanklikbaar maken */
}
.hero-subtitle {
    font-size: 18px;
    margin-top: 0;    
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s ease-out forwards;

    animation-delay: 0.2s; /* komt later in beeld dan de h1 */
	/*background-color: hsl(225, 60%, 55%);
	text-shadow: 0 0 1px #000, 0 0 2px #000;
	padding: 4px 8px;
	border-radius: 5px;
	display: inline-block;
	line-height: 1;*/
}
.hero .content {
    position: relative;
    z-index: 2; /* tekst boven overlay plaatsen */
}
/* Animatie voor de hero (sectie) */
@keyframes zoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.993);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animatie voor de tekst */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive mobiel */
@media (max-width: 768px) {
    .flex-wrap, .flex-wrap.reverse-wrap {
        flex-direction: column;
        text-align: center;
    }

    .promo-text, .promo-image {
        flex: 1 1 100%;
    }

    .promo-text h2 {
        font-size: 24px;
    }
}

.clear {
    clear: both;
}

@media (max-width: 768px) {
    #nav-btn {
        display: block;
    }
    .menu-container ul {
        flex-direction: column;
        align-items: center;
    }
}


/* GROTE SCHERMEN */
@media only screen and (min-width: 770px){
	.menu-container ul {
		list-style: none;
		margin: 0;
		padding: 0;
		justify-content: center;
		flex-wrap: wrap;
	}

	.menu-container li {
		margin: 0;
		float: left;
	}
	.menu-container li:last-child {
		float: right;
	}

	.menu-container a {
		display: block;
		padding: 8px 15px;
		text-decoration: none;
		color: hsl(225, 63%, 45%);
		font-weight: 500;
		transition: background 0.3s, color 0.3s;
	}

	.menu-container a:hover {
		background-color: hsl(225, 63%, 45%);
		color: #fff;
	}

	.login a {
		font-weight: bold;
	}
	.button-container{
		display: none;
	}
    #menu{

        display: inline-block;
        width: 100%;
        margin: 80px 0 0;
        padding: 0;
    }
    #menu #menu_align{
        max-width: 100%;
        margin: 0 auto 0 auto;
    }
    .link-border{
        padding: 0;
        line-height: 30px;
		color: hsl(225, 67%, 75%);
    }
    #menu #menu_align ul{
    	padding-left: 0;
        position: relative;
        list-style: none;
        margin: 0 12px 0 0;
    }
    #menu > #menu_align > ul > li{
        margin: 0;
        float: left;
		transition: ease all .2s;
		padding: 0 5px;
    }
    #menu > #menu_align > ul > li.login{
        float: right;
    }
    #menu #menu_align ul li a{
        display: block;
        color: hsl(225, 67%, 45%);
        padding: 0 10px;
        line-height: 30px;
        text-decoration: none;
		transition: ease all .2s;
    }
    #menu #menu_align ul li:hover{
        background-color: hsl(225, 67%, 45%);
    }
    #menu #menu_align ul li.link-border:hover{
        background-color: #fff;
    }
    #menu #menu_align ul li:hover a{
        color: #fff;
    }
    /* eertse submenu */
    #menu #menu_align ul li > ul{
        position: absolute;
        display: none;
        min-width: 150px;
        margin: 0;
        padding: 0;
        background-color: hsl(0, 0%, 15%);
    }
    #menu #menu_align > ul > li:hover > ul{
        display: block; 
    }
    #menu #menu_align ul li ul li{
        display: block;
        position: relative; /* Houdt het 2de submenu op de juiste hoogte */
        border-top: 1px solid hsl(0, 0%, 40%);
    }
    #menu #menu_align ul li ul li:hover{
        background-color: hsl(225, 67%, 45%);
    }
    #menu #menu_align ul li ul li:first-child{
        border-top: none;
    }
    /* tweede submenu */
    #menu #menu_align ul li ul li ul{
        position: absolute;
        display: none;
        top: 0;
        min-width: 180px;
        left: 100%;
        padding: 0;
        background-color: hsl(0, 0%, 15%);
    }
    #menu #menu_align ul li ul li:hover ul{
        display: block; 
    }
}
/* SMARTPHONE */
@media screen and (max-width: 769px){
	.button-container{
		cursor: pointer;
		background-color: #fff;
		color: hsl(225, 67%, 45%);
		font-size: 28px;
		border: none;
		padding: 5px 8px;
		margin: 30px 0 0;
	}
    #menu{
        max-height: 0;
		overflow: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
		transition: ease all .2s;
    }
    #menu #menu_align{
        max-width: 100%;
        margin: 0 auto 0 auto;
    }
    #menu ul{
        list-style: none;
		padding: 0;
		margin: 0;
    }
    .link-border{
        display: none;
    }
    #menu li{
        background-color: #fff;
		padding: 12px 15px;
		border-top: 1px solid hsl(225, 67%, 65%);
    }
    #menu li:first-child{
    }
    #menu li a{
        color: hsl(225, 63%, 45%);
		text-decoration: none;
    }
    #menu #menu_align ul{
    	padding-left: 0;
        position: relative;
        list-style: none;
        margin: 0;
    }
	
}
footer{
	position: fixed;
	display: block;
	width: 100%;
	background-color: #222;
	color: #ddd;
	text-align: center;
	padding: 20px 0;
	margin-top: 50px;
	font-size: 14px;
	text-align: center;
}
footer div{
	display: block;
	margin: 0 auto;
	max-width: 1200px;
}
footer .right-footer{
	float: right;
	margin-right: 30px;
	line-height: 60px;
}
footer .right-footer span{
	margin: 0 10px;
}
footer a{
	color: hsl(225, 80%, 70%);
}
footer img{
	float: left;
	margin-left: 15px;
	margin-top: 12px;
}












