/******** 
 General 
********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/******** 
 Header 
********/
header {
    width: 100%;
    height: 90vh;
    background: linear-gradient(rgba(190, 60, 68, 0.4), rgba(46, 46, 175, 0.8)), 
    url(../img/tabor.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
}

nav {
    border-bottom: 2px solid rgba(255, 255, 255, 0.596);
    margin-left: 50px;
    margin-right: 50px;
}

nav ul {
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-left: 50px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    padding: 3px;
    border-radius: 3px;
}

a.active, nav a:hover {
    color: rgb(90, 11, 64);
    background: white;
    border-radius: 5px;
    transition: background-color 0.5s;
}





header img {
    display: block;
    margin: 150px auto;
    width: 250px;
}

/* nav img.hamburger {
    
    width: 40px;
    position: absolute;
    right: 60px;
    top: -58px;
    cursor: pointer;
    display: none;
    } */


    .hamburger {
        /* instrukce pro hamburger */
        width: 40px;
        position: absolute;
        /* right: 60px; */
        left: 10px;
        top: -88px;
        cursor: pointer;
        display: none;
        }

header h1 {
    color: white;
    text-align: center;
    font-size: 50px;
    letter-spacing: 5px;
}

/****************** 
  Basic information 
*******************/
/* .basic-information  {
    width: 90%;
  
} */
/* pokus o trochu zůžení stránky */




.basic-information h1 {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
    font-size: 40px;
}

.basic-information img { 
    /* width: 50%; */
    width: 80%;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.basic-text p {
    margin: 0 auto;
    width: 80%;

    /*  width: 100%; se natíhne až moc na začátek stránka */
    font-size: 20px;
    line-height: 25px;
}



.proc_odstavec{
    font-size: 20px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/*********** 
  About us 
************/
.about-us {
    width: 100%;
    height: 130vh;
    background: linear-gradient(rgba(190, 60, 68, 0.4), rgba(46, 46, 175, 0.8)), 
                url(../img/tabor.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: polygon(49% 0, 100% 35%, 100% 100%, 0 100%, 0 35%);
    /* toto dělá to lomení kolem obrázku */
    background-attachment: fixed;
   
 
    
}

.about-us-photos {
    padding-top: 400px;
  
   
}

.about-us-photos img {
    width: 70%;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
     margin-top: 120px;
     /* toto mi vysunulo obrázek zpod hrany */
}

.about-us-photos p {
    font-size: 20px;
    line-height: 25px;
    text-align: justify;
    background: white;
    padding: 10px;
    border-radius: 15px;
     margin-top: 120px;
     /* toto mi vysunulo text zpod hrany */
}





.dolni_odstavec p{
    font-size: 20px;
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-top: 120px;


 
        /* width: 70%; */
        /* zarvonáme to do velikosti jakou mají obrázky */
        /* margin: 0 auto;  */
        /* dá to doprostřed */
    
 
}



/********* 
  Footer
**********/
footer {
    color: white;
    background: rgb(177, 130, 161);
    text-align: center;
}




/* kdybxch chtěla, aby aby hlavička “jezdila”
stále s námi a byla neustále viditelná. I když sjedeme na stránce níže. Proto ji v běžným
CSS přidáme position: fixed
Tip: pokud přidáte na stránku obsah, tak ho odsaďte pomocí padding-top o 80px. Jinak
obsah bude “zajetý” pod hlavičkou. (80px je právě výška hlavičky)
*/
/* header {
    background: #e69600;
    height: 80px;
    width: 100%;
    position: fixed;
    } */






    /* ***************
    formular
    **************** */



    



