/*
 * JOHO ALLE FESTEN MIN-WIDTHS WEG FUER RESPONSIVE STUFF U KNO?
 */
body
{
    margin: 0px;
    font-family: sans-serif;
    background-color: #1c5052;
    /*color: #434343;   improvisiert :-) */
    color: #b6b6b6;
    /*min-width: 900px; Not needed for responsive stuff ;-)*/
}

.clear
{
    clear: both;
}

/* click on the header-image to show this div */
#width-display
{
    display: none;
    position: fixed;
    background-color: black;
    color: white;
    top: 0px;
    left: 0px;
    height: 20px;
    width: 60px;
    z-index: 99;
}

header
{
    position: relative;
    height: 111px;
    background: #262e30;
    background: linear-gradient(to bottom, #262e30 0%, #0a0c0d 100%);
    box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

header .header-content
{
    max-width: 960px;
    /*min-width: 860px; Not needed for responsive stuff ;-) */
    height: 100%;
    margin: auto;
    padding: 0px 12px;
    overflow: hidden
}

header .header-logo
{
    position: absolute;
    background: url("images/logo.png");
    width: 389px;
    height: 52px;
    margin-top: 30px;
    margin-left: 12px;
}

@media only screen and (max-width: 920px)
{
    header .header-logo
    {
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: 0px 50%;
    }
}

@media only screen and (max-width: 480px)
{
    header .header-logo
    {
        clear: both;
        margin-top: 10px;
    }
}

header nav
{
    height: 100%;
    float: right;
}

@media only screen and (max-width: 760px)
{
    header nav
    {
        display: none;
    }
}

header nav ul
{
    list-style: none;
    margin: 0px;
    padding: 0px 12px 0px 0px;
}

header nav ul li
{
    display: inline-block;
    margin-left: 40px;
    text-align: right;
    font-size: 18px;
    margin-top: 55px;
    margin-left: 40px;
    height: 56px;
}

header nav ul li a
{
    text-decoration: none;
    
    transition: color 0.3s, text-shadow 0.3s;
    color: #dedede;
    text-shadow: unset;
}

header nav ul li a:hover
{
    color: #ffffff;
    text-shadow: 0px 0px 15px #FFFFFF;
}

header nav ul li ul
{
    /* display: none; */
    position: absolute;
    top: 111px;
    background-color: #0a0c0d;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 40;
    overflow: hidden;
    
    /* Navigation Animation - was removed, because the max-height would slow down the fade out (because the max-width is much greater than the actual width)*/
    /*transition: max-height 0.8s, opacity 0.8s;*/
    opacity: 0;
    height: 0px;
}

/*
header nav ul li:hover ul
{
    opacity: 1;
    max-height: 500px;
}
*/

header nav ul li ul li
{
    display: block;
    margin: 0px;
    height: auto;
    text-align: left;
}

header nav ul li ul li a div
{
    font-size: 16px;
    padding: 8px 10px 10px 10px;
}

header select
{
    float: right;
    margin-right: 30px;
    margin-top: 50px;
}

@media only screen and (min-width: 760px)
{
    header select
    {
        display: none;
    }
}

@media only screen and (max-width: 480px)
{
    header select
    {
        float: left;
        margin-right: 0px;
        margin-left: 10px;
        margin-top: 70px;
    }
}

.subheader
{
    height: 107px;
    overflow:hidden;
}

.subheader-background
{
    position: absolute;
    width: 100%;
    height: 107px;
}

.subheader .subheader-background .left
{
    display: inline-block;
    height: 100%;
    width: 50%;
    float: left;
    background-color: #203b3b;
}

.subheader .subheader-background .right
{
    display: inline-block;
    height: 100%;
    width: 50%;
    float: right;
    background-color: #5b6e6e;
}

.subheader .subheader-image
{
    position: relative;
    background: url("images/bg-subheader.png");
    height: 107px;
    width: 1280px;
    margin: auto;
    z-index: 10;
}

.content
{
    /*background-color: #f2f2f2 ;*/
    background-color: #121415;
}

.container
{
    position: relative;
    max-width: 960px;
    /*min-width: 860px; Not needed for responsive stuff ;-)*/
    margin: auto;
    padding: 40px 20px;
    line-height: 22px;
}

.sticker
{
    position: absolute;
    right: 10px;
    top: -70px;
    height: 131px;
    width: 125px;
    background: url("images/sticker.png");
    z-index: 30;
}

.gallery
{
    /* Die Slider-Funktion jucken die Styles in dieser Klasse nicht ;-) - ich lass sie trotzdem drin :-P */
    position: relative;
    overflow: auto;
}

.gallery li
{
    list-style: none;
}

.gallery ul li
{
    float: left;
    height: 400px;
}

p
{
    margin: 0px 0px 35px 0px;
}

h1, h2, h3, h4
{
    line-height: normal;
    font-weight: normal;
    margin: 0px 0px 10px 0px;
}

h1
{
    font-size: 40px;
}

h2
{
    font-size: 35px;
}

h3
{
    font-size: 30px;
}

h4
{
    font-size: 25px;
}

.player
{
    background: url("images/bg-player.png");
    box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.3);
    height: 81px;
    border-top: 1px solid #c7c7c7;
    overflow: hidden;
}

.player-content
{
    /*min-width: 860px; Not needed for responsive stuff ;-) */
    max-width: 960px;
    margin: auto;
    padding: 7px 20px;
    color: #434343;
}

.player-button
{
    width: 80px;
    display: inline-block;
    vertical-align: top;
}

.player-button .button
{
    height: 47px;
    width: 47px;
    background: url("images/player-button.png");
    display: block;
    margin-top: 10px;
    margin-left: 10px;
}

a.sm2_button
{
    height: 47px;
    width: 47px;
    background: url("images/player-button.png");
    display: block;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 30px;
    box-shadow: 0;
    transition: box-shadow 0.8s;
}

a.sm2_button:hover
{
    box-shadow: inset 0px 0px 5px #006e6e, 0px 0px 12px 6px #006e6e;
}

a.sm2_button.sm2_playing
{
    background: url("images/player-button-pause.png");
}

a.sm2_button.sm2_paused
{
    background: url("images/player-button.png");
}

.player-text
{
    display: inline-block;
    vertical-align: top;
}

.player-text h1
{
    font-size: 30px;
    margin-bottom: 3px;
}

.player-text h2
{
    font-size: 20px;
    margin-bottom: 3px;
}

.footer-content
{
    max-width: 960px;
    /*min-width: 860px; Not needed for responsive stuff ;-)*/
    margin: auto;
    padding: 40px 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-content h4
{
    color: #ffffff;
    font-size: 21px;
}

.footer-column
{
    display: inline-block;
    float: left;
    width: 25%;
    font-size: 16px;
}

.footer-column ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-column ul li
{
    margin-bottom: 2px;
}

.footer-column ul li a
{
    color: #dedede;
    text-decoration: none;
}

.footer-column ul li a:hover
{
    color: #ffffff;
}

.social-list li
{
    display: inline-block;
}

.social-list li a img
{
    height: 38px;
    width: 38px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gray-image
{
    filter: grayscale(100%);
}