﻿/*-----------------------------------------------------------------------------------
Formatvorlage für die Navigation
------------------------------------------------------------------------------------*/


section#bar {
	position:relative;	
	background: #eff0eb linear-gradient(to bottom, #e8e7e5 0%,#eff0eb 100%); 
	margin-bottom:2em;
	display:grid;
	grid-template-columns: 1fr 20em;
	
		
}

section#bar:before,
section#bar:after{    
    position:absolute;
    bottom: -2em;
    content: '';
    background: url('../../images/shadow.png') no-repeat left top;
	background-size: cover; 	
    width: 50%;
    height: 2em;
}

#bar:before {
	left: 0;
}

#bar:after{    
	transform: scale(-1,1);
	right:0;
}

/* =============== NAVIGATION ============= */

nav#navigation{
	margin:auto;
    right: 1%;
	top: 1em;
	font-family:Candara;
}

#navigation li {
	display:inline;
    list-style-type: none;	
}

#navigation a {
    color: #000;
	font-size:1em;
	font-weight: bold;
	text-decoration: none;
    text-transform: uppercase;
    margin: .5em;
	padding: 0.5em 1em;
}

#navigation li:hover a, 
#navigation li:focus a, 
#navigation li:active a {
	background: #ccc linear-gradient(135deg, #d4cfc9 0%, #fff 49%, #d4cfc9 100%);
	color: black;
}

a[aria-current=page]{
	background: #ccc linear-gradient(135deg, #d4c1ba 0%, #eff0eb 49%, #d4c1ba 100%);
	color: black;
}
