@import url("variables.css");
@import url("fonts.css");
@import url("typography.css");
@import url("point-of-interest.css");
@import url("range_slider.css");
@import url("section_all.css");

@import url("section_1.css");
@import url("section_2.css");
@import url("section_3.css");
@import url("section_4.css");
@import url("section_5.css");
@import url("section_6.css");
@import url("section_7.css");
@import url("section_8.css");
@import url("section_9.css");
@import url("section_10.css");
@import url("section_11.css");
@import url("section_12.css");
@import url("section_13.css");
@import url("section_14.css");

.section-cover.title-box{
    scale: 1;
    transition: scale 1s;
}

footer{
    height: 320px;
    width: 100%;
    background-color: var(--vt-smoke);
    color: var(--vt-text-black);
    font-size: 1.125rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

#telemetry, #gesture{
    position: fixed;
    background: var(--vt-maroon);
    color: var(--vt-burntOrange);
    padding: 10px;
    border: solid 1px var(--vt-burntOrange);
    ul{
        list-style: none;
        margin: 0;
        padding: 0;
    }
}


#telemetry{
    top: 0;
    left: 0;
}
#gesture{
    bottom: 0;
    left: 0;
}

.scroll-feedback {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 10px;
    z-index: 99999;
    box-sizing: border-box;
    display: flex;
    .story-progress{
        width: 50%;
        height: 0;
        transition: height 0.2s;
        background-color: var(--vt-burntOrange);
    }
    .story-progress-bar{
        height: 100%;
        width: 50%;
        background-color: pink;

    }
    .square{
        width: 5px;
        height: calc((100dvh / 42) * 1);
        background-color: var(--vt-impactOrange);
        position: absolute;
        border-top: 3px solid var(--vt-maroon);
        border-bottom: 3px solid var(--vt-maroon);;
        top: 100%;
        left: 0;
        box-sizing: border-box;
    }
}
.menu-btn-container{
    position: absolute;
    z-index: 10;
    top:20px;
    left:20px;
    width: 48px;
    height: calc(100dvh - 40px);
    .menu-btn{
        position: absolute;
        width: 48px;
        height: 48px;
        overflow: hidden;
        background: url("images/menu_white.svg") center center no-repeat;
        border: none;
        text-indent: -9999px;
    }
    .story-progress-bar{
        padding: 48px 0 0 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        .progress{
            height: 0;
            width: 10px;
            background: var(--vt-burntOrange);
            opacity: .5;
            transition: height 0.2s;
        }
    }

    @media (max-width: 900px) {
        top:0;
        left:0;
        .story-progress-bar{
            .progress{
                width: 5px;
            }
        }
    }

}
.navigation-container{
    border: solid red 1px;
    position: absolute;
    top:0;
    left:-100%;
    padding-top:68px;
    height: 100%;

    z-index: 100;
    background: var(--vt-white);
    border-right: solid 5px var(--vt-burntOrange);
    transition: left 0.2s ease-in-out;

    &.active{
        left: 0;
    }

    .close-btn{
        position: absolute;
        width: 48px;
        height: 48px;
        overflow: hidden;
        right:20px;
        top:20px;
        background: url("images/close_orange.svg") center center no-repeat;
        border: none;
        text-indent: -9999px;
    }

    ul{
        list-style: none;
        margin: 0;
        padding: 10px 40px;
        background: var(--vt-white);

        li{
            padding: 10px;
            font-size: 1.5rem;
            a{
                font-weight: 400;
                &.active{
                    font-weight: bold;
                    color: var(--vt-maroon);
                }
                &:hover{
                    color: var(--vt-impactOrange);
                    font-weight: bold;
                }
            }
        }

    }
    @media (max-width: 900px) {

        width: 100%;


        ul{
            height: 100dvh;
            padding: 20px;

            li{
                font-size: 1.25rem;
            }
        }
    }
}

