body, html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}

.trashlogo{
    margin: 5px;
    min-width: 100px;
    width: 10vw;
    height: 10%;
}
strong{
    color: whitesmoke;
}

#main_top_sec{
    height: fit-content;
    /*border: 2px solid black;*/
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(imgs/sněm.jpg);
    background-size: cover;
    padding-bottom: 140px;
}
.header_info_top{
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 10%;
    background-image: linear-gradient(rgb(36, 36, 36), transparent);
    z-index: 2;
    font-family: Calibri, sans-serif;
}
.main_header{
    font-size: 5vw;
    text-align: center;
    color: whitesmoke;
    margin-top: 20px;
    margin-left: 17%;
}
.top_links{
    position: relative;
    display: flex;
    justify-content: space-evenly;
    margin: 5px;
    margin-right: 100px;
    gap: 50px;
    transform: translateY(35%);
}

.top_links > a{
    color: whitesmoke;
    font-weight: bold;
    text-decoration: none;
    transition: all ease 0.3s;
    font-size: 20px;
}
.top_links > a:hover{
    color: whitesmoke;
    text-decoration: none;
}

.top_links > a::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #7f7334;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.top_links > a:hover::after {
  transform: scaleX(1);
}

/*.welcomevid_continue{ Deprecated
    z-index: 1;
    
}
.thething{
    z-index: 1;
    width: 100%;
    filter: brightness(65%);
}*/

.welcomevid_title_button{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 30%;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 2vw;
    margin: auto;
    position: relative;
    margin-top: 16%;
}

.kurzy_button{
    width: fit-content;
    height: fit-content;
    background-color: white;
    border-radius: 5px;
    color: black;
    text-align: center;
    align-content: space-around;
    border: none;
    transition: all 0.4s ease;
    margin: auto;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}
.kurzy_button:hover{
    background-color: black;
    color: white;
}
.clickme:hover{
    text-decoration: none;
}




#second_sec{
    height: fit-content;
    background-color: rgb(20, 20, 20);
    position: relative;
    z-index: 1;
    padding-top: 25px;
}
.kurzy_subsec{
    margin: auto;
    width: 100%;
    height: fit-content;
    padding: 8px;
}
.kurzy_header{
    text-align: center;
    margin: auto;
    color: whitesmoke;
    font-size: 60px;
}
.kurzy{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.kurzadj{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
}
.how_behave:hover{
    scale: 1.1;
}
.how_become:hover{
    scale: 1.1;
}
.oversea_travel_edu:hover{
    scale: 1.1;
}
.kurz_img{
    width: 18vw;
    max-height: 300px;
    border-radius: 8px;
    border: 2px solid white;
    min-width: 200px;
}
.kurz_gif{
    border-radius: 6.5px;
    width: 17.8vw;
    height: 25vh;
    max-height: 300px;
    min-width: 200px;
}
.kurz_desc{
    text-align: center;
    color: rgb(210, 210, 210);
    font-style: italic;
    font-size: 25px;
}

.about_subsec{
    margin: auto;
    width: 100%;
    height: fit-content;
    padding: 8px;
}
.about_desc{
    color: rgb(210, 210, 210);
    text-align: center;
    font-size: 20px;
}
.contact_header{
    text-align: center;
    margin: auto;
    color: whitesmoke;
    font-size: 30px;
    margin-top: 50px;
}
.contact_desc{
    color: rgb(210, 210, 210);
    text-align: center;
    font-size: 15px;
}
.final_hr{
    border: 1px solid white;
    width: 90%;
    border-radius: 10px;
    margin-top: 60px;
}


.counter_box{
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3vw;
    margin-top: 100px;
    text-align: center;
}
.counter_desc{
    font-style: italic;
    font-size: 2vw;
}

.idk_bro_arrow{ /*robitá animace, protože flexbox...*/
    margin-left: 6px;
    transition: transform 0.3s ease;
    transform: translateY(5px);
}
.arrow_active .idk_bro_arrow{
    translate: 0 -5px;
    transform: rotate(180deg);
}
.show_evilcounter_button{
    color: black;
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 100px;
    text-align: center;
    display: flex;
    justify-self: center;
}
.show_evilcounter_button:hover{
    text-decoration: none;
    color: initial;
    background-color: rgb(205, 204, 204);
}





/* Overlay stuff */
.hover-overlay-container {
  position: relative;
  display: inline-block;
}

.hover-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hover-overlay-container:hover .hover-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hover-overlay span {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}


.galerie{
    margin-top: 200px;
}
.car_imgs{
    width: 40%;
    height: 55vh;
    max-height: 700px;
    min-width: 400px;
}
/*.carousel-inner{
    display: flex;
    justify-content: space-evenly;
    gap: 90px;
}*/
.carousel-item{
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}
.imgs_desc{
    color: whitesmoke;
    font-style: italic;
    font-size: 20px;
}

/* Kurz Behave */
.bg_kurzy{
    background-color: rgb(20, 20, 20);
    color: whitesmoke;
}

#lektor_sec{
    margin: auto;
}
.lektor_header{
    margin-top: 125px;
    text-align: center;
}
.lektor_box{
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 40%;
    min-width: 300px;
    padding: 5px;
    justify-self: center;
}
.lektor_img{
    width: 55vw;
    height: 20vw;
    border-radius: 8px;
    max-width: 250px;
    max-height: 250px;
    min-height: 200px;
    min-width: 200px;
    align-self: center;
}

.lektor_desc{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about_desc_k{
    color: rgb(210, 210, 210);
    text-align: center;
    font-size: 18px;
    margin: auto;
    max-width: 80%;
}
.about_kurz_img{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about_kurz_img > img{
    max-width: 620px;
    border-radius: 10px;
    width: 42vw;
    min-width: 250px;
}
.about_kurz_img_desc{
    color: rgb(210, 210, 210);
    font-style: italic;
    margin: auto;
    font-size: 20px !important;
    text-align: center;
}

.interest_box{
    display: flex;
    flex-direction: column;
    max-width: 28%;
    min-width: 200px;
    margin: auto;
    color: whitesmoke;
    font-size: 18px;
}

.recenze_box{
    width: 25vw;
    max-width: 400px;
    min-width: 300px;
    margin: auto;
    border: 3px solid white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.rec_top{
    margin: 5px;
}
.info_rec{
    float: left;
}
.hodnoceni{
    float: right;
}
.person_rec{
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}
.person{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 10px;
}
.person > img{
    width: 80px;
    border-radius: 100%;
    height: 78px;
}
.per_name{
    text-align: center;
    font-weight: bold;
}
.actual_rec{
    margin: 5px;
}




/*OPT*/ /*Hej už fakt nwm ale... Aspoň to není totálně rozdrbaný... rip responizivita i guess*/
@media screen and (max-width: 1024px) {
    .top_links{
        flex-direction: column;
        margin: auto;
    }
    .header_info_top{
        flex-direction: column;
    }
    .main_header{
        font-size: 8vw;
        margin-left: 5%;
    }
    .kurzy{
        flex-direction: column;
    }
    .welcomevid_title_button{
        font-size: 3vw;
    }
}
@media screen and (max-width: 768px) {
    .lektor_box{
        flex-direction: column;
    }
    .person_rec{
        flex-direction: column;
    }
    .top_links{
        flex-direction: column;
        margin: auto;
        margin-bottom: 20px;
    }
    .person > img{
        margin: auto;
    }
    .interest_box{
        font-size: 17px;
    }
}
