
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "Cormorant Upright", serif;
    font-weight: 500;
    scroll-behavior: smooth;
}

/* BARVY */
:root{
    --sideBGColor: #040b14;
    --themeColor: #00A78E;
    --iconBGColor: #2C2F3F;
    --textColor: #353535;
    --bgColor: #F7F7F7;

    --gold: #ffc000;
    --gold-light: #ffe28a;
    --gold-2: #eca660;
    --white: rgb(241, 237, 237);
    --black: rgb(0, 0, 0);
    --light-grey: rgb(173, 173, 173);
    --black: rgb(0, 0, 0);
    --dark-violet: #241849;
    --dark-blue: #0b002b;
    --light-violet: #612691;
}

/*PRELOADER*/

.loader-container {
    width: 100%;
    height: 100vh;
    background-color: #241849;
    position: fixed;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: var(--gold-2);
    border-radius: 50%;
    border-top-color: transparent ;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    25%{
        color: #2c1d58;
    }
    50%{
        color: #03197c;
    }
    75%{
        color: #800360;
    }
    to{
        transform: rotate(360deg);
    }
}



/* ==== HEADER ==== */
header{
    height: 100vh;
    width: 300px;
    padding: 15px 30px;
    background-color: var(--black);
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transition: 0.4s;
    z-index: 99;
}
header .profile{
    text-align: center;
    margin: 10px 0;
}
header .profile img{
    width: 150px;
    border-radius: 50%;
}

header .profile h1{
    color: white;
    font-weight: 600;
    font-family: "Dancing Script", serif;
}
header .profile .social-icons a{
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    background-color: var(--black);
    color: white;
    font-size: 18px;
    margin: 1.5px;
    transition: 0.4s;
}
header .profile .social-icons a:hover{
    background-color: var(--gold-2);
}

/* === NavBar === */

header nav{
    margin-top: 30px;
}
header nav ul li{
    list-style: none;
}
header nav ul li a{
    display: inline-block;
    text-decoration: none;
    padding: 7px 10px;
    margin: 7px 0;
    color: lightgray;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.6px;
}
header nav ul li a i{
    margin-right: 10px;
    font-size: 20px;
    transition: 0.4s;
}
header nav ul li a:hover i{
    color: var(--gold-2);
}
header nav ul li .active i{
    color: var(--gold-2);
}

/* FOOTER */
header .footer{
    text-align: center;
    background-color: var(--black);
    width: 300px;
    color: lightgray;
    font-size: 14px;
    letter-spacing: 0.6px;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    transition: 0.4s;
}
header .footer p a{
    color: var(--black);
}

/* mobile nav tlačítko */
#MenuBtn{
    position: fixed;
    top: 25px;
    right: 25px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: white;
    background-color: var(--gold-2);
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    display: none;
    z-index: 999;
}
/* Mobile view */
@media only screen and (max-width: 1050px){
    header{
        left: -300px;
    }
    header .footer{
        left: -300px;
    }
    #MenuBtn{
        display: block;
    }
}

@media only screen and (max-width: 930px) {

    #MenuBtn{
        right: 20px;
    }
}

/* Header toggle */
.mobile-nav-active header{
    left: 0;
}
.mobile-nav-active header .footer{
    left: 0;
}

/* <------------------------------------------------------------------------------------> */

/* === MAIN === */
main{
    margin-left: 300px;
    background-color: var(--black);
    transition: 0.3s;
}
@media only screen and (max-width: 1050px){
    main{
        margin-left: 0;
    }
}

/* ==== HOME ==== */
#home{
    height: 100vh;
    width: 100%;
    background-image: url(img/pozadiii.png);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    position: relative;
}
/* overlay */
#home::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.431);
    position: absolute;
    top: 0;
    left: 0;
}
#home .home-row{
    z-index: 1;
}
#home .home-row h1{
    font-size: 60px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 70px;
    font-family: "Cormorant Upright", serif;
}
#home .home-row h1 span{
    color: var(--gold-2);
}
#home .home-row {
    color: var(--white);
    font-size: 30px;
    font-weight: 500;
}


/* responzivita pro sekci HOME */
@media only screen and (max-width: 670px){
    #home{
        padding: 30px;
    }
    #home .home-row h1{
        font-size: 35px;
        letter-spacing: 0;
        line-height: 50px;
    }
    #home .home-row h1 br{
        display: none;
    }
    #home .home-row p{
        color: var(--white);
        font-size: 20px;
        font-weight: 400;
    }
}


/* ===== O NÁS ==== */
#about{
    padding: 70px 30px;
}
/* Global Heading */
.sub-heading{
    color: var(--white);
    font-size: 30px;
    margin-bottom: 10px;
    font-family: "Cormorant Upright", serif;
}
.divider{
    width: 80px;
    height: 3px;
    background-color: var(--gold-2);
    border-radius: 3px;
}
.sub-para{
    color: var(--light-grey);
    font-size: 25px;
    letter-spacing: 0.4px;
    font-weight: 500;
    margin-top: 15px;
}

#about .about-col{
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
#about .about-col .img-col{
    flex-basis: 35%;
    text-align: center;
}
#about .about-col .img-col img{
    width: 100%;
    border-radius: 20px;
}

#about .about-col .info-col{
    flex-basis: 70%;

}

#about .about-col .info-col p{
    color: var(--light-grey);
    font-size: 20px;
    letter-spacing: 0.5px;
    font-style: italic;
}
#about .about-col .info-col .icon-list-col{
    display: flex;
    margin-top: 20px;
    gap: 40px;
}
#about .about-col .info-col .icon-list-col .icon-list ul li {
    list-style: none;
    margin: 15px 0;
}
#about .about-col .info-col .icon-list-col .icon-list ul li i{
    color: var(--gold-2);
}
#about .about-col .info-col .icon-list-col .icon-list ul li strong{
    color: var(--light-grey);
    font-size: 20px;
    margin-right: 2px;
}

#about .about-col .info-col .icon-list-col .icon-list ul li a {
    text-decoration: none;
}

/* responzivita pro sekci O NÁS */
@media only screen and (max-width: 830px){
    #about{
        padding: 50px 10px;
    }
    #about .divider ~ p{
        font-size: 14px;
        letter-spacing: 0px;
        text-align: justify;
    }
    #about .about-col{
        flex-direction: column;
    }
    #about .about-col .img-col img{
        width: 50%;
    }
    #about .about-col .info-col h2{
        font-weight: 600;
        font-size: 25px;
        letter-spacing: 0px;
    }
    #about .about-col .info-col p{
        font-size: 14px;
        letter-spacing: 0px;
    }
    #about .about-col .info-col .icon-list-col{
        flex-direction: column;
        gap: 0;
    }
    #about .about-col .info-col .icon-list-col .icon-list ul li {
        margin: 10px 0;
    }
    #about .about-col .info-col .icon-list-col .icon-list ul li strong{
        font-weight: 500;
        margin-right: 0px;
    }
    #about .about-col .info-col .icon-list-col .icon-list ul li span{
        font-weight: 400;
        font-size: 13px;
    }
}

@media only screen and (max-width: 400px){
    #about .about-col .img-col img{
        width: 90%;
    }
}




/* <----------------------------------------------------------------------> */

/* ====== KOHO HLEDÁME ======= */
#fact{
    padding: 50px 30px;
    background-color: var(--black);
}
#fact .fact-row{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 50px;
    text-align: center;
}

#fact .fact-row .fact-box strong{
    color: var(--gold-2);
    font-size: 30px;
    margin-left: 5px;
    font-weight: 600;
    font-family: "Cormorant Upright", serif;
    text-align: center;
}
#fact .fact-row .fact-box p{
    color: var(--light-grey);
    font-weight: 500;
    font-size: 16px;
}

/* responzivita pro sekci KOHO HLEDÁME */
@media only screen and (max-width: 700px){
    #fact{
        padding: 40px 15px;
    }
    #fact .fact-row{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
}
@media only screen and (max-width: 370px){
    #fact .fact-row .fact-box i{
        font-size: 30px;
    }
    #fact .fact-row .fact-box strong{
        font-size: 20px;
    }
    #fact .fact-row .fact-box p{
        font-weight: 400;
        font-size: 14px;
    }
}





/* <---------------------------------------------------------------------------------------------> */

/* ====== CO POŽADUJEME ====== */
#resume{
    padding: 70px 30px;
    background-color: var(--black);
}
#resume .resume-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
}
#resume .resume-row .resume-cols{
    flex-basis: 50%;
}
#resume .resume-row .resume-cols h2 {
    color: var(--gold-2);
    font-weight: 600;
    font-size: 25px;
    margin: 15px 0;
    font-family: "Cormorant Upright", serif;
}

/**levá část*/

/*bod horní vlevo*/
#resume .resume-row .resume-cols .my-info{
    padding: 0 20px 0 20px;
    margin: 20px 0;
    border-left: 2px solid var(--gold-2);
    position: relative;
}
#resume .resume-row .resume-cols .my-info::before{
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--gold-2);
    background-color: white;
}

/*text horní vlevo*/

#resume .resume-row .resume-cols .my-info p{
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    margin: 10px 0;
}
#resume .resume-row .resume-cols .my-info ul li{
    margin: 10px 0;
    margin-left: 20px;
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 500;
}

/*bod dolní vlevo*/
#resume .resume-row .resume-cols .my-edu{
    padding: 0 20px 0 20px;
    border-left: 2px solid var(--gold-2);
    position: relative;
}
#resume .resume-row .resume-cols .my-edu::before{
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--gold-2);
    background-color: white;
}

/*text dolni vlevo*/
#resume .resume-row .resume-cols .sp-box{
    padding: 4px 22px;
    background-color: var(--light-grey);
    color: var(--textColor);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    margin: 15px 0;
    display: inline-block;
}

#resume .resume-row .resume-cols .my-edu span + p{
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}
#resume .resume-row .resume-cols .my-edu span + p + p{
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 15px;
}


/**pravá část*/

/*body vpravo*/
#resume .resume-row .resume-cols .pro-exp{
    padding: 0 20px 10px;
    border-left: 2px solid var(--gold-2);
    position: relative;
}
#resume .resume-row .resume-cols .pro-exp::before{
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--gold-2);
    background-color: white;
}

/*texty vpravo*/

#resume .resume-row .resume-cols .pro-exp ul li{
    margin: 10px 0;
    margin-left: 20px;
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 500;
}


/* responzivita pro sekci CO POŽADUJEME */
@media only screen and (max-width: 820px){
    #resume{
        padding: 50px 15px;
    }
    #resume .resume-row{
        flex-direction: column;
    }
    #resume .resume-row .resume-cols{
        flex-basis: 100%;
    }
}




/* <--------------------------------------------------------------------------------> */



/* ====== PORTFOLIO ====== */
#portfolio{
    padding: 70px 30px;
}
#portfolio .port-row{
    margin-top: 50px;
    margin-left: 400px;
    
    grid-gap: 35px;
    width: 500px;
    height: 500px;
}
#portfolio .port-row .port-item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#portfolio .port-row .port-item:hover {
    transition: 1s;
    opacity: 0.5;
}

#portfolio .port-row .port-item .port-img img{
    width: 100%;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}



/* responzivita pro sekci PORTFOLO */

@media only screen and (max-width: 1260px){
    #portfolio{
        padding: 50px 10px;
        align-items: center;
        justify-content: center;
        justify-items: center;
    }
    #portfolio .port-row{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        margin-left: 70px;
    }
   
}

@media only screen and (max-width: 650px){
    #portfolio{
        padding: 50px 10px;
        align-items: center;
        justify-content: center;
        justify-items: center;
    }
    #portfolio .port-row{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        margin-left: 70px;
    }

    .port-img img {
        width: 200px;
        height: 300px;
       
    }
   
}
@media only screen and (max-width: 350px){
    #portfolio .port-row{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
        margin-left: 10px;
    }

    .port-img img {
        width: 250px;
        height: 300px;
       
    }
}




/* <----------------------------------------------------------------------> */




/* ====== CO VÁM MŮŽEME NABÍDNOUT ====== */
#service{
    padding: 70px 30px;
    background-color: var(--black);
}
#service .service-row{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
#service .service-row .service-box{
    display: flex;
    gap: 20px;
}

#service .service-row .service-box .ser-info h4{
    color: var(--gold-2);
    font-size: 20px;
    font-weight: 600;
}
#service .service-row .service-box .ser-info h4 + p{
    color: var(--light-grey);
    font-size: 14px;
    font-weight: 500;
}

/* responzivita pro sekci CO VÁM MŮŽEME NABÍDNOUT */
@media only screen and (max-width: 850px){
    #service{
        padding: 50px 15px;
    }
    #service .service-row{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
}
@media only screen and (max-width: 550px){
    #service .service-row{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
}




/* <------------------------------------------------------------------------------------> */


/* ====== KONTAKT ====== */
#contact{
    padding: 70px 30px;
}
#contact .contact-row{
    margin-top: 50px;
    display: flex;
    gap: 20px;
    width: 100%;
}


/**levá část*/
#contact .contact-row .contact-left{
    flex-basis: 40%;
    min-width: 40%;
    background-color: var(--black);
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    border-radius: 4px;
    padding: 30px;
}

/*ikonky*/
#contact .contact-row .contact-left .icon-box{
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
}
#contact .contact-row .contact-left .icon-box .icon i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-2);
    text-align: center;
    line-height: 47px;
    font-size: 20px;
    color: var(--white);
    transition: 0.5s;
}
#contact .contact-row .contact-left .icon-box:hover .icon i{
    background-color: var(--gold-2);
    color: var(--white);
}

/*text*/
#contact .contact-row .contact-left .icon-box .info h4{
    font-size: 20px;
    color: var(--light-grey);
    font-weight: 600;
}
#contact .contact-row .contact-left .icon-box .info h4 + p{
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 500;
}


/**pravá část*/

/*formulář*/
#contact .contact-row .contact-right{
    flex-basis: 60%;
    min-width: 60%;
    background-color: var(--black);
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    padding: 30px;
}

/*inputy*/
#contact .contact-row .contact-right form input,
#contact .contact-row .contact-right form textarea{
    display: block;
    width: 100%;
    margin: 25px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--light-grey);
    padding: 10px 20px;
    border: 2px solid lightgray;
    border-radius: 25px;
    outline: none;
    resize: none;
    transition: 0.5s;
    background: none;
}

#contact .contact-row .contact-right form input:focus,
#contact .contact-row .contact-right form textarea:focus{
    border: 2px solid var(--light-grey) ;
}

/*submit*/
#contact .contact-row .contact-right form input[type=submit]{
    background-color: var(--gold-2);
    color: var(--bgColor);
    border: none;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
}


/* responzivita pro sekci KONTAKT */
@media only screen and (max-width: 800px){
    #contact{
        padding: 50px;
    }
    #contact .contact-row{
        flex-direction: column;
        gap: 10px;
    }
}
@media only screen and (max-width: 500px){
    #contact{
        padding: 50px 10px;
    }

}


/* SCROLL BAR */
::-webkit-scrollbar {
    display:none ;
  }