@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*nastaveni fontu celeho webu*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Caudex", serif;
}
/*zbytek fontu*/
h1, h2, h3{
    font-family: 'Cinzel';
    text-align: center;
    font-size: 300%;
    color: #cd9948;
    margin-top: 2%;
}
/*pozadi webu*/
body{
    background: #0b0f1a;
    color: #fff;
}
/*cistejsi scroll na webu*/
html {
    scroll-behavior: smooth;
}
/*menu*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0b0f1a;;
}
/*logo na menu*/
.logo img {
    height: 40px;
}
/*mezery mezi slovama z menu*/
nav {
    display: flex;
    gap: 20px;
    align-items: center;
}
/*stylovani textu na webu*/
nav a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    position: relative;
}
/*jednoducha animace na slova z menu*/
nav a:hover {
    color: #cd9948;
    transition: 0.4s;
}
/*vypnuté hamburger menu, které se zapne na menším screenu*/
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
/*ikona hamburger menu*/
.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}
/*odsazení při kliku na položku z menu*/
.anchor-offset {
    display: block;
    position: relative;
    top: -100px; 
    visibility: hidden;
}
/*stylování tlačítka*/
.btn{
    color: #cd9948;
}
/*animace tlačítka*/
.btn:hover{
    color: #fff;

}
/*nastavení úvodní stránky*/
.jakobyhero{
    height: 100vh;
    text-align: center;
    background: #0B0F1A;
    background: linear-gradient(333deg, rgba(11, 15, 26, 1) 64%, rgba(205, 153, 72, 1) 100%);
}
/*nadpis - stylovani*/
.nadpis{
    width: 100%;
    text-align: center;
    padding-top: 40vh;
    font-size: 200%;
    color: #cd9948;
}
/*stylovani tlačítka*/
.tlacitko a button{
    background-color: #cd9948;
    border-radius: 15px;
    color: #0b0f1a;
    padding: 1%;
    font-family: 'Cinzel';
    font-size:large;
    border: none;
    margin-top: 1%;
}
/*nastavení myši při přejetí*/
.tlacitko a button{
    cursor: pointer;
}
/*centrovani vseho co je pod divem*/
.ukazka_prace{
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
/*stylovani textu*/
.hromada_textu{
    font-size: 150%;
    text-align: center;
    width: 80%;
    margin-left: 10%;
    background-color: #00000020;
    padding: 1%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    margin-top: 2%;
}
/*rozlozeni fotek*/
.galerie{
    display: flex;
    width: 90%;
    margin-left: 10%;
    margin-top: 5%;
}
/*sirka fotky*/
.fotka1{
    width: 30%;
}

.fotka2{
    width: 30%;
}

.fotka3{
    width: 30%;
}
/*ramecek*/
.fotka1 img{
    width: 80%;
    border: #cd9948 1px solid;
    border-radius: 15px;
}

.fotka2 img{
    width: 80%;
    border: #cd9948 1px solid;
    border-radius: 15px;
}

.fotka3 img{
    width: 80%;
    border: #cd9948 1px solid;
    border-radius: 15px;
}
/*animace pri prejeti*/
.fotka1 img:hover{
    transform: scale(2);
    transition: 1s;
}

.fotka2 img:hover{
    transform: scale(2);
    transition: 1s;
}

.fotka3 img:hover{
    transform: scale(2);
    transition: 1s;
}
/*rovrzeni jedne sekce*/
.koho_hledame{
    margin-top: 5%;
    display: flex;
    width: 80%;
    margin-left: 20%;
}
/*pozice ikonky*/
.ikonka_lupy {
    width: 20%;
    color: #cd9948;
}
/*zvetseni ikonky*/
.ikonka_lupy i{
    font-size: 1200%;
}   
/*stylovaní textu*/
.text1{
    width: 60%;
    background-color: #00000020;
    padding: 1%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    font-size: 150%;
}
/*rovrzeni jedne sekce*/
.napln_prace{
    margin-top: 5%;
    display: flex;
    width: 80%;
    margin-left: 20%;
}
/*pozice ikonky*/
.ikonka_prace {
    width: 20%;
    color: #cd9948;
    margin-left: 10%;
}
/*zvetseni ikonky*/
.ikonka_prace i{
    font-size: 1200%;
}
/*stylovaní textu*/
.text2{
    width: 60%;
    background-color: #00000020;
    padding: 1%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    font-size: 150%;
}
/*pozice textu*/
.registrace{
    width: 80%;
    margin-left: 10%;
}
/*šířka tlačítka*/
button img{
    width: 150px;
}
/*stylování tlačítka*/
button{
    background: #cd9948;
    border: #00000020;
    padding: 1%;
    border-radius: 15px;
    font-weight: bold;
}
/*nastavení myší při přejetí*/
button:hover{
    cursor: pointer;
}
/*odsazeni od nadpisu*/
.form1{
    margin-top: 5%;
}
/*odsazeni tlacitka*/
.form2{
    margin-top: 1%;
}
/*stylovani inputových prvků*/
#jmeno, #mail, #tel{
    border: #cd9948 1px solid;
    border-radius: 15px;
    padding: 1%;
    width: 400px;
    text-align: center;
}
/*stylování footerů*/
footer{
    width: 100%;
    text-align: center;
    background-color: #00000020;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-top: 5%;
    color: #cd9948;
}

@media (max-width: 900px) {

    h1, h2, h3{
    font-family: 'Cinzel';
    text-align: center;
    font-size: 200%;
    color: #cd9948;
    margin-top: 2%;
}

nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0b0f1a;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
}
/*aktivovani hamburger menu*/
nav.active {
    display: flex;
}
/*funkcni hamburger menu*/
.hamburger {
    display: flex;
}
/*stylování tlačítka*/
.btn{
    color: #cd9948;
}
/*animace tlačítka*/
.btn:hover{
    color: #fff;

}
/*nastavení úvodní stránky*/
.jakobyhero{
    height: 100vh;
    text-align: center;
}
/*nadpis - stylovani*/
.nadpis{
    width: 100%;
    text-align: center;
    padding-top: 40vh;
    font-size: 100%;
    color: #cd9948;
}
/*stylovani tlačítka*/
.tlacitko a button{
    background-color: #cd9948;
    border-radius: 15px;
    color: #0b0f1a;
    padding: 1%;
    font-family: 'Cinzel';
    font-size:large;
    border: none;
    margin-top: 1%;
}
/*nastavení myši při přejetí*/
.tlacitko a button{
    cursor: pointer;
}
/*centrovani vseho co je pod divem*/
.ukazka_prace{
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
/*stylovani textu*/
.hromada_textu{
    font-size: 100%;
    text-align: center;
    width: 80%;
    margin-left: 10%;
    background-color: #00000020;
    padding: 1%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    margin-top: 2%;
}
/*rozlozeni fotek*/
.galerie{
    display: inline;
    width: 90%;
    margin-left: 10%;
    margin-top: 5%;
}
/*sirka fotky*/
.fotka1{
    width: 100%;
}

.fotka2{
    width: 100%;
}

.fotka3{
    width: 100%;
}
/*ramecek*/
.fotka1 img{
    width: 80%;
    border: #cd9948 1px solid;
    border-radius: 15px;
}

.fotka2 img{
    width: 80%;
    border: #cd9948 1px solid;
    border-radius: 15px;
}

.fotka3 img{
    width: 80%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    display: none;
}
/*animace pri prejeti*/
.fotka1 img:hover{
    transform: scale(1);
    transition: 1s;
}

.fotka2 img:hover{
    transform: scale(1);
    transition: 1s;
}

.fotka3 img:hover{
    transform: scale(1);
    transition: 1s;
}
/*rovrzeni jedne sekce*/
.koho_hledame{
    margin-top: 5%;
    display: flex;
    width: 90%;
    margin-left: 5%;
}
/*pozice ikonky*/
.ikonka_lupy {
    width: 0%;
    color: #cd9948;
    display: none;
}
/*zvetseni ikonky*/
.ikonka_lupy i{
    font-size: 1200%;
}   
/*stylovaní textu*/
.text1{
    width: 100%;
    background-color: #00000020;
    padding: 1%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    font-size: 150%;
}
/*rovrzeni jedne sekce*/
.napln_prace{
    margin-top: 5%;
    display: flex;
    width: 90%;
    margin-left: 5%;
}
/*pozice ikonky*/
.ikonka_prace {
    width: 0%;
    color: #cd9948;
    margin-left: 10%;
    display: none;
}
/*zvetseni ikonky*/
.ikonka_prace i{
    font-size: 1200%;
}
/*stylovaní textu*/
.text2{
    width: 100%;
    background-color: #00000020;
    padding: 1%;
    border: #cd9948 1px solid;
    border-radius: 15px;
    font-size: 150%;
}
/*pozice textu*/
.registrace{
    width: 80%;
    margin-left: 10%;
}
/*šířka tlačítka*/
button img{
    width: 150px;
}
/*stylování tlačítka*/
button{
    background: #cd9948;
    border: #00000020;
    padding: 1%;
    border-radius: 15px;
    font-weight: bold;
}
/*nastavení myší při přejetí*/
button:hover{
    cursor: pointer;
}
/*odsazeni od nadpisu*/
.form1{
    margin-top: 5%;
}
/*odsazeni tlacitka*/
.form2{
    margin-top: 5%;
}
/*stylovani inputových prvků*/
#jmeno, #mail, #tel{
    border: #cd9948 1px solid;
    border-radius: 15px;
    padding: 1%;
    width: 300px;
    text-align: center;
}
/*stylování footerů*/
footer{
    width: 100%;
    text-align: center;
    background-color: #00000020;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-top: 5%;
}
}

