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

/*Global adj*/
#mainbody{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/*Fonty*/
@font-face {
    font-family: "WVF";
    src: url('fonts/wasted-vindey.regular.ttf') format('truetype');
}
/*---------------------*/


/*----WELCOME SEC----*/

/*Welcome con*/
#main_welcome_section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: whitesmoke;
}

/*Welcome Bg img*/
#welcome_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    z-index: 1;
}

/*Welcome content*/
#welcome_content {
    position: relative;
    z-index: 2;
    width: 80%;
    /*max-width: 800px;*/
    padding: 20px;
}

/*Welcome header*/
#main_header {
    font-size: 6rem;
    /*font-weight: bold;*/
    color: rgb(252, 197, 124);
    font-family: "WVF";
    letter-spacing: 4px;
}

/*Intro*/
#intro {
    font-size: 1.5rem;
    margin: 20px 0;
}

/*Ref btn sec*/
#ref_inner_section {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    gap: 10%;
}

/*Ref btn sec container*/
.ref_sec {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid white;
    width: 400px;
    text-align: center;
    transition: all ease-out 0.5s;
}

/*Ref buttons*/
.ref_button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    color: whitesmoke;
    font-weight: bold;
    background-color: rgb(196, 145, 6);
    border-radius: 10px;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.ref_button:hover {
    color: rgb(196, 145, 6);
    border-color: rgb(196, 145, 6);
    background-color: whitesmoke;
}
.ref_sec:hover{
    scale: 1.1;
}
/*---------------------*/


/*----CONTENT SEC----*/
h2, h4, h5{
    font-weight: bold;
}


/*Content sec*/
#main_content_section{
    position: relative;
    width: 100%;
    height: min-content;
    background-color: rgb(78, 57, 9);
}

/*Content sec stuff*/
.content_inner_sections{
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 20px;
    /*margin-bottom: 100px;*/
    padding-top: 30px;
    height: min-content;
}
.content_inner_sections:last-child{
    padding-bottom: 30px;
}
.content_inner_sections:nth-child(3){
    align-items: center;
    margin-top: 110px;
    margin-bottom: 110px;
}
.content_inner_sections > img{
    width: 60%;
    max-width: 450px;
    height: min-content;
    border-radius: 8px;
}
.content_sections_desc{
    width: 50%;
    color: white;
}

.content_inner_sections > img.left{
    order: -1;
}
.content_inner_sections > img.right{
    order: 1;
}

.content_show_additional_button{
    width: fit-content;
    text-align: center;
    align-content: space-around;
    border-radius: 8px;
    background-color: rgb(215, 161, 89);
    font-weight: bold;
    font-size: large;
    padding: 7px;
    color: black;
    cursor: pointer;
    transition: all ease 0.5s;
    user-select: none;
}
.content_show_additional_button:hover{
    background-color: rgb(255, 204, 138);
    text-decoration: none;
    color: black;
}
.idk_bro_arrow{
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.arrow_active .idk_bro_arrow{
    transform: rotate(180deg);
}
.haha_table_fix_bruh{
    color: white;
}

.tablee_fiix{
    margin-top: 5px;
}

#brands_ref_con{
    width: fit-content;
    padding: 8px;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 20px;
}
.brand_link{
    transition: all ease 0.5s;
    width: 13%;
    max-width: 100px;
}
.brand_img{
    width: 100%;
    max-width: 100px;
    height: auto;
}
.brand_link:hover{
    scale: 1.2;
}

#how_make_video{
    width: fit-content;
    margin: auto;
}
#how_make_video > iframe{
    width: 70vh;
    height: 40vb;
    border: none;
    border-radius: 6px;
}
.how_make_iframe_label{
    width: fit-content;
    margin: auto;
}
/*---------------------*/


/*----FOOTER SEC----*/

#main_footer_section{
    position: relative;
    width: 100%;
    height: min-content;
    background-color: rgb(50, 37, 6);
    color: whitesmoke;
    padding: 5px;
}
.contacts_con{
    width: fit-content;
    text-align: center;
    margin: auto;
}
.hahaaaaaaa{
    font-weight: bold;
}

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


/*---- AGE ----*/
.blurred-wrapper {
    filter: blur(10px);
    pointer-events: none; /* Prevents interactions with blurred content */
    scale: 1.1;
}

.age-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.95);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1000;
    width: 300px;
}

.age-popup input {
    width: 50px;
    padding: 5px;
    text-align: center;
    font-size: 16px;
    margin: 10px;
}

.age-popup button {
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    background: #28a745;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.age-popup button:hover {
    background: #218838;
}

.age-popup .error {
    color: red;
    font-size: 14px;
}

/*OPT SEC*/

/*Mobile, Tablet - Main Welcome + ~300px video adjust*/
@media (max-width: 1000px) {
    #main_header {
        font-size: 4.5rem;
    }

    #intro {
        font-size: 1.2rem;
    }

    #ref_inner_section {
        flex-direction: column;
        align-items: center;
    }

    .ref_sec {
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }
}
/*Mobile, Tablet - Main Content + ~300px video adjust*/
@media (max-width: 1000px) {
    .content_inner_sections {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .content_inner_sections > img {
        width: 80%;
    }

    .content_sections_desc {
        width: 90%;
    }

    .content_inner_sections > img.left, .content_inner_sections > img.right {
        order: 0;
    }

    .tablee_fiix{
        justify-self: center;
    }

    #how_make_video > iframe{
        width: 40vh;
        height: 30vb;
    }

    .nwm_jak_se_to_ma_uz_jmenovat{
        display: block;
    }
}

/*Mobile, Tablet - Footer + ~300px video adjust*/
/*@media (max-width: 1000px) {
    .contacts_con{
        text-align: center;
        margin: auto;
    }
}*/