/*----ROOT----*/

/*Global*/
html{
    scroll-behavior: smooth !important;
}
body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Alpino";
}

/*Fonts*/
@font-face {
    font-family: "FAWB";
    src: url("sources/fonts/fontawesome-webfont.ttf") format("truetype"); /*FONT NEFUNGUJE!*/
}
@font-face {
    font-family: "Alpino";
    src: url("sources/fonts/Alpino_Complete/Fonts/TTF/Alpino-Variable.ttf") format("truetype");
}

/*Presets*/
.flex_section_preset_A{
    position: relative;
    display: flex;
    justify-content: center;
}

/*--------------*/



/*----SECTIONS----*/

/*--Welcome Sec--*/
#welcome_section{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: whitesmoke;
}
.welcome_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.welcome_content{
    position: relative;
    z-index: 2;
}
.text_intro{
    font-size: 45px;
}
.continue_button{
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    background-color: rgb(42, 42, 101);
    border-radius: 5px;
    transition: all 0.5s ease;
    padding: 16px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100px;
    justify-self: center;
    user-select: none;
    text-decoration: none;
    color: whitesmoke;
}
.continue_button:hover{
    background-color: rgb(57, 57, 145);
}

/*--About Sec--*/
#about_section{ /*Preset A*/
    background-color: whitesmoke;
}
.about_info_container{
    display: flex;
    flex-direction: row;
    gap: 100px;
    padding: 10px;
    max-width: 50%;
    margin-top: 60px;
    margin-bottom: 60px;
}
.about_info_container_img > img{
    width: 300px;
    /*height: 200px;*/
    border-radius: 8px;
    justify-self: left;
}
.about_info_container_text{
    display: flex;
    flex-direction: column;
    justify-self: right;
}
.about_info_container_join_button{
    text-align: center;
    background-color: transparent;
    text-transform: uppercase;
    border: 3px solid rgb(34, 34, 107);
    padding: 10px;
    width: 180px;
    transition: all 0.5s ease;
    user-select: none;
}
.about_info_container_join_button:hover{
    background-color: rgb(34, 34, 107);
    color: whitesmoke;
    cursor: pointer;
}

/*--Coahches Sec--*/
#coaches_section{ /*Preset A*/
    background-color: rgb(235, 235, 235);
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
}
.coaches_section_header{
    text-align: center;
}
.coaches_section_overview{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.coaches_section_coach{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.coaches_section_coach_img > img{
    width: 250px;
}
.coaches_section_coach_img{
    margin: auto;
}
.coaches_section_coach_desc{
    max-width: 320px;
    text-align: center;
}

/*--Login Final Sec--*/
#login_section{ /*Preset A*/
    background-image: url('sources/imgs/newsletter-bg.jpg');
    background-size: cover;
    color: whitesmoke;
    
}
.login_section_main_container{
    margin: auto;
}
.login_section_content_container{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.login_section_header{
    text-align: center;
}
.login_section_username_password{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}
.username_pass_preset{
    display: flex;
    flex-direction: column;
}
.username_pass_preset > input{
    background-color: transparent;
    border: none;
    resize: none;
    color: whitesmoke;
    align-content: space-around;
    outline: none;
    width: 250px;
    padding: 5px;
}
.username_pass_preset > input:-webkit-autofill{
    -webkit-text-fill-color: white !important;
    background-color: transparent !important;
    caret-color: white;
}
.username_pass_preset > hr{
    width: 100%;
    margin-top: 0;
    transition: all 0.3s ease;
    border-color: rgb(138, 138, 138);
    border-style: solid;
}
#username_line.active{
    border-color: white;
}
#pass_line.active{
    border-color: white;
}
.login_section_button{
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.5s ease;
    padding: 8px;
    color: white;
    border: 2px solid white;
    width: 120px;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 12px;
    user-select: none;
    font-family: "Alpino";
    font-size: 15px;
}
.login_section_button:hover{
    cursor: pointer;
    color: black;
    background-color: white;
    
}

@media (max-width: 900px) {
    .about_info_container{
        flex-direction: column;
        gap: 20px;
    }
    .coaches_section_overview{
        flex-direction: column;
    }
    .coaches_section_coach_desc{
        margin: auto;
        margin-bottom: 30px;
    }
    .coaches_section_coach{
        gap: 0px;
    }
    .login_section_username_password{
        flex-direction: column;
        width: 50%;
        justify-self: center;
    }
    .about_info_container_img > img{
        width: 55vw;
    }
    .coaches_section_coach_img > img{
        width: 50vw;
    }
}