@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "Sour Gummy";
}


/* navbar */
.navbar{
    display: flex;
    align-items: right;
    justify-content:  space-between;
    padding: 2%;
    background-color: rgb(45, 24, 162);
    top: 0;
}
ul{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}
.navbar ul{
    gap: 40px;
}
nav a{
    text-decoration: none;
    font-size: 20px;
    transition: .4s;
    color: rgb(255, 255, 255);
}
a:hover{
    color: rgb(0, 0, 0);
    transition: .5s;
}
nav img{
    display: flex;
    justify-content: center;
    width: 80px;
    height: auto;
}


/* burgermenu */
#burgermenu{
    display: none;
}
#burgermenu div{
    width: 25px;
    height: 4px;
    margin-bottom: 3px;
    background-color: rgb(223, 223, 223);
}


/* background */
.background {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(img/Background_2.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.background h1{
    font-size: clamp(50px, 100px, 10vw);
    text-shadow: black 2px 2px 5px;
    color: whitesmoke;
}
.background img{
    max-height: 95%;
    max-width: 30%;
}


/* schpnosti */
.schopnosti{
    padding: 5%;
    background-image: url(img/Random_Events_Scroll1.png);
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.row{
    display: flex;
    gap: 5vw;
    align-items: center;
    padding: 2%;
}
.column{
    display: flex;
    flex-direction: column;
    gap: .3vw;
}
.schopnosti hr{
    width: 100%;
    height: 5px;
    background-color: black;
}
.schopnosti img{
    border: 4px solid black;
    border-radius: 10px;
}

h2{
    font-size: clamp(25px, 35px, 3.5vw);
}
p{
    font-size: clamp(15px, 23px, 2vw);
}


/* hra */
.hra{
    background-color: rgb(0, 0, 135);
    color: whitesmoke;
    padding: 10%;
    gap: 8vw;
}
.hra img{
    max-height: 100%;
    max-width: 100%;
}
.hra h1{
    font-size: clamp(40px, 80px, 8vw);
    padding-bottom: 3%;
}
.hra p{
    font-size: clamp(20px, 30px, 2.5vw);
}


.povolani{
    background-color: rgb(0, 0, 135);
    color: whitesmoke;
    padding: 10%;
    font-size: clamp(15px, 30px, 2.5vw);
    display: flex;
    flex-direction: column;
    gap: 8vw;
}
.povolani-a{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.povolani img{
    max-height: 40%;
    max-width: 40%;
}
.povolani p{
    align-items: center;
    justify-content: center;
}
.povolani h1{
    font-size: clamp(30px, 80px, 8vw);
    padding-bottom: 2%;
}


/* kontakt */
.kontakt{
    padding-top: 5%;
    padding-left: 9%;
}
.kontakt-b{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.kontakt h1{
    font-size: clamp(30px, 80px, 8vw);
    padding-bottom: 2%;
}
.kontakt-texty {
    width: 30%;
    text-wrap: balance  ;
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
    font-size: clamp(5px, 30px, 3vw);
}
.kontakt img{
    width: 60%;
    height: auto;
}


/* footer duh */
.copyright{
    background-color: black;
    text-align: center;
    color: whitesmoke;
}


/* datum vydání */
.datum{
    padding: 5% 3% 0 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.platformy{
    font-size: clamp(30px, 60px, 5vw);
}


/* sponzori */
.sponzori{
    display: flex;
    flex-direction: column;
}
.sponzori img{
    height: auto;
    width: clamp(50px, 15vw, 15vw);
}
.sponzori-a{
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.sponzori h1{
    font-size: clamp(30px, 80px, 8vw);
    padding-bottom: 2%;
    padding-top: 5%;
    padding-left: 9%;
}


/* responzivita */
@media screen and (max-width: 600px){
    nav img{
        width: 60px;
    }
}
@media screen and (max-width: 1000px){
    nav a{
        font-size: 17px;
    }
    .schopnosti{
        background-image: url(img/Random_Events_Scroll2.png);
    }

}
@media (max-width: 700px){
    #burgermenu{
        display: block;
    }
    #menu{
        margin-top: 20px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    nav{
        flex-direction: column;
    }
    .show{
        display: flex !important;
    }
    .lineu{
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
    }
    .background{
        height: 70vh;
        flex-direction: column-reverse;
    }
    .povolani img{
        height: 60%;
        width: 60%;
    }
    .image-none{
        display: none;
    }
}
@media screen and (max-width: 400px){
    .background{
        height:50vh;
    }
    .background img{
        max-height: 95%;
        max-width: 50%;
    }
}