@charset "utf-8";

/* MADAT verze 20240420 */

* {
    margin: 0;
    padding: 0;
}

html {

}

    html > body {
        
    }


/* Zahlavi */
header {
    display: block;
    font-family: "Oswald", sans-serif;
    height: 100vh;
    width: 100%;
    margin-bottom: 61px;
}
    
    /* Uvodni obrazek */
    header > div {
        background: url("obrazky/uvodni.jpg") rgb(192, 192, 192) 50% top / cover fixed no-repeat;
        height: 100vh;
        width: 100%;
    }
    
        header > div > div {
            background-color: rgba(192, 192, 192, 0.6);
            height: 100vh;
            width: 100%;
            text-align: center;
        }
        
            header > div > div > img {
               display: block;
               left: 30%;
               position: relative;
               top: 10%;
            }
            
            header > div > div > a {
               background-color: rgba(0, 0, 0);
               border: 6px solid rgb(210, 0, 122);
               color: rgb(255, 255, 255);
               display: inline-block;
               font-weight: 700;
               padding: 15px 40px 15px 40px;
               position: relative;
               text-decoration: none;
               text-transform: uppercase;
               top: 55vh;
            }
    
    /* Hlavni navigace */
    header > nav {
        border-bottom: 1px solid rgb(192, 192, 192);
        display: block;
        height: 60px;
        position: absolute;
        text-align: center;
        width: 100%;
    }
    
        header > nav > div {
            background: url("obrazky/mlogo.png") rgb(255, 255, 255) left top 15px / auto 30px scroll no-repeat;
            display: inline-block;
            height: inherit;
            line-height: 60px;
            margin-right: 40px;
        }
            header > nav > div > a {
                color: rgb(0, 0, 0);
                font-weight: 700;
                padding-left: 28px;
                text-decoration: none;
                text-transform: uppercase;
            }
    
        header > nav > ul {
            display: inline-block;
            height: inherit;
        }
        
            header > nav > ul > li {
                border-bottom: 5px solid rgb(255, 255, 255);
                display: inline-block;
                height: 55px;
                line-height: 60px;
                margin-left: 40px;
            }
            
            header > nav > ul > li:hover {
                border-bottom: 5px solid rgb(210, 0, 122);
            }
            
                header > nav > ul > li  > a {
                    color: rgb(0, 0, 0);
                    text-decoration: none;
                    text-transform: uppercase;
                }


/* Hlavni obsah*/
main {
    display: block;
    font-family: "Roboto", sans-serif;
    position: relative;
    top: 60px;
    width: 100%;
}

    main > h1 {
        display: none;
    }
    
    main > section {
        display: block;
    }
    
        main > section a {
            color: rgb(210, 0, 122);
        }
    
        main > section a:hover {
            text-decoration: none
        }
    
        main > section > h2 {
            font-family: "Oswald", sans-serif;
            margin: 100px 0 40px 0;
            text-align: center;
            text-transform: uppercase;
        }
        
        main > section > h3 {
            font-family: "Oswald", sans-serif;
            margin: 40px 0 20px 0;
            text-align: center;
            text-transform: uppercase;
        }
        
        main > section > p {
            font-size: 12pt;
            margin: 0 auto 0 auto;
            max-width: 600px;
        }
        
        main > section > p + p {
            margin-top: 18pt;
        }
        
        main > section > form {
            font-size: 12pt;
            margin: 0 auto 0 auto;
            max-width: 600px;
            text-align: center;
        }
        
            main > section > form > input {
                font: inherit;
                padding: 2px 4px 2px 4px;
            }


/* Zapati */
footer {
    background-color: rgb(0, 0, 0);
    display: block;
    font-family: "Roboto", sans-serif;
    margin-top: 100px;
    padding: 40px 0 40px 0;
    position: relative;
    top: 60px;
    width: 100%;
}

    footer > p {
        color: rgb(192, 192, 192);
        font-size: 8pt;
        margin: 0 auto 0 auto;
        max-width: 600px;
        text-align: center;
    }
    
    footer > p.copyright {
        color: rgb(255, 255, 255);
        font-size: 12pt;
        margin-top: 40px;
    }




/* Zarizeni do sirky obrazovky 700 px */
@media screen and (max-width: 700px) {

    header {
        margin-bottom: 240px;
    }

        header > div > div > img {
           left: 0;
           margin: 0 auto 0 auto;
           top: 30%;
        }
        
        header > nav {
            height: 240px;
        }
        
            header > nav > div {
                display: none;
            }
                header > nav > div > a {
                    display: none;
                }
        
            header > nav > ul {
                display: block;
                height: 60px;
            }
            
                header > nav > ul > li {
                    border: none;
                    display: block;
                    height: 60px;
                    margin-left: 0;
                }
                
                header > nav > ul > li:hover {
                    background-color: rgb(213, 213, 213);
                    border: none;
                }
    
    main > section > p {
        margin-left: 20px;
        margin-right: 20px;
    }

}
