
/* Universal global styles section */

.mottoInHeader{
    
     font-family: "Bahnschrift", "Arial", sans-serif;
    font-size: 9px;
    font-style: italic;
    opacity: 50%;
}





body {
    font-family: "Bahnschrift", "Arial", sans-serif;
    font-size: 16px;
    color: rgb(255,255,255);
    background-color: rgb(15,15,20); /*Pamatuj, že ta barva je jen na metadata, kde se to dává přes javascript, takže ostatní části stránky budou takovéto*/
    margin: 0;
    padding: 0;
}

.headerNavigation {
    background-color: rgb(15, 15, 20);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;

}



.logoInHeader {
    background-image: url("/visualsMainSite/PAlogov9.png");
    width: 196px;
    height: 26px;
    margin: 0 0 0 20px;
    
    display: inline-block;
    vertical-align: middle;
}

.menuInHeader {
    margin-left: auto;
    margin-right: 30px;
    position: static;
}

a.menu-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin: 0 0 0 30px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transition: transform 0.3s ease;
}

a.menu-link:hover {
    transform: translateY(-2px);
}

a.menu-link:not(:hover):not(:focus-within) {
    transition: transform 0.3s ease;
}


a.menu-link::after {
    
    content: "";
    height: 2px;
    width: 0%;
    background: rgb(93, 253, 40);
    position: absolute;
    left: 50%; 
    bottom: -2px;
    border-radius: 1px;
    transform: translateX(-50%); 
    transition: width 0.2s ease-out; 
    
}

a.menu-link:hover::after {
    width: 100%;
    
}

a.current-link::after {
    content: "";
    height: 2px;
    width: 100%;
    background: rgb(93, 253, 40);
    position: absolute;
    left: 50%;
    bottom: -2px;
    border-radius: 1px;
    transform: translateX(-50%);
}

.mottoInHeader {
    position: absolute;
    left: 266px;
    top: 20px;
    
    
}






@media only screen and (max-width: 1150px) {
    div#content {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    div#footer-content {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 740px) {
    nav#menu {
        display: none;
    }
}