:root {
    --socialWidth: 4rem
}

body {
    /* background-color: #fffdea; */
    background-color: #FBE6D2;

    font-family: 'Montserrat', sans-serif;
    margin: 0;

    animation: fade_in forwards 1s;
    padding-bottom: 10vh;
}

/* Hide scrollbars (Chrome)*/
body::-webkit-scrollbar {
    display: none;

    /* Hide scrollbars (Other) */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

main {
    /* Leave space for video */
    padding-top: 100vh;
    overflow-x: hidden;
    overflow: hidden;
    margin: 0;
}



/* Fonts */
.therapy_cursive {
    font-family: "shabby-chic", sans-serif;
    font-weight: 400;
    font-style: normal;
}



/* Logo in top left */
.page-logo {
    position: absolute;
    left: 1rem;
    top: 1rem;
    height: 8vh;
    /* filter: brightness(0) invert(1); */
    filter: invert(17%) sepia(69%) saturate(1333%) hue-rotate(15deg) brightness(96%) contrast(105%);
    z-index: 10;
    cursor: pointer;
}

/* Page title on sub pages */
.page-title {
    font-size: 6vh;
    font-weight: 400;
    text-align: center;
    color: #906B43;
    text-transform: uppercase;
}

/* Video background */
.page-animated-background {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

/* Scroll chevron down */
.page-scroll-suggestion {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 93vh;
    height: 7vh;
    /* width: 5vh; */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.page-scroll-suggestion span {
    margin-bottom: -0.5rem;
}

.page-scroll-suggestion svg {
    height: 6vh;
    width: 6vh;

    animation: bounce ease-in infinite 1.5s;
}

/* Socials container */
.socials-container {
    position: absolute;
    right: 2rem;
    top: calc(100vh - var(--socialWidth) - 3rem);
    height: 4rem;
    list-style-type: none;
}

.socials-container li {
    display: inline-block;
    margin: 0.5rem;
}

.socials-container li:hover > img{
    opacity: 1;
}


.socials-container img {
    width: var(--socialWidth);
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.socials-container ul {
    /* display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%; */
}


/* Outer container for navigation */
.navigation-menu-container {}

.navigation-menu-icon {
    position: fixed;
    right: 1rem;
    top: 1rem;
    user-select: none;
    z-index: 11;
    cursor: pointer;
    transition: transform 0.3s;
}

.navigation-menu-icon.expanded {
    transform: rotate(90deg);
}

.navigation-menu-icon svg {
    fill: white;
    height: 4rem;
    width: 4rem;
    transition: fill 0.3s;
}

.navigation-menu-icon:hover svg {
    fill: #906B43;
}


/* Side pane that opens from navigation menu */
.side-menu-container {
    position: fixed;
    right: -25vw;
    top: 0;
    width: 25vw;
    height: 100vh;
    z-index: 10;
    background-color: #906b4381;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 1s;
}

.side-menu-container.expanded {
    right: 0;
}

.side-menu-container a {
    text-decoration: none;
    margin: 1rem;

}

.side-menu-container span {
    color: white;
    font-size: 4vh;
    /* cursor: pointer; */
    transition: color 0.2s;
    text-transform: uppercase;
}

.side-menu-container span:hover {
    color: rgb(124, 75, 0);

}


/* 
=======================
      MAIN CONTENT
=======================
*/

.latest-release-container {
    width: 100%;
    height: 80vh;
    /* background-color: white; */
    background-color: #FBE6D2;
    color: #906B43;
    /* background-color: rgb(221, 173, 84); */
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin-bottom: 10rem; */
    /* margin-top: -0.5rem; */
    /* box-shadow: -2rem 5rem 16px 20px rgb(0 0 0 / 20%); */
    padding-left: 8rem;
    justify-content: center;
}

.latest-release-container>* {
    opacity: 0;
    animation: fade_in 1.5s ease-in forwards;
}

.latest-release-section-title {
    /* position:absolute;
    transform: rotate(-90deg); */
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 7vh;
    height: 60vh;
    text-align: center;

    color: #906B43;
    left: 4rem;
    font-weight: 100;
    top: unset;
    /* margin-left: 10rem; */
}

.latest-release-cover {
    /* margin-left: 6rem; */
    height: 60vh;
    object-fit: cover;
    animation: float_in forwards ease-in-out 1s;
}

.latest-release-inner {
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: flex-start;
    margin-left: 6vh;
    align-items: center;
    justify-content: center;
}

.latest-release-title {
    /* font-size: 10vh;
    font-weight: 500;
     */
    width: 40vw;

}

/* Animation from https://codepen.io/csbatista/pen/EgxQgx*/
.latest-release-title text {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill: #906B43;
    animation: animate_stroke 3s ease-in forwards, animate_fill 2.5s ease-in forwards;
}


@keyframes animate_stroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes animate_fill {
    from {
        fill-opacity: 0;
    }

    to {
        fill-opacity: 1;
    }
}

@keyframes fade_in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float_in {
    from {
        opacity: 0;
        box-shadow: 0px 2rem 4rem rgba(0, 0, 0, 0.2);
        transform: translate(0, -5vh);
    }

    50% {
        opacity: 1;
    }

    to {

        opacity: 1;
        transform: translate(0, 0);
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

    }
}

@keyframes bounce {
    from {
        transform: translate(0, -6px);
    }

    50% {
        transform: translate(0, 6px);
    }

    to {
        transform: translate(0, -6px);
    }
}

.latest-release-action {
    width: fit-content;
    padding: 0.5rem;
    border-radius: 12px;
    border: thin solid #906B43;

    font-size: x-large;
    color: #906B43;
    font-weight: 100;
    margin-top: 1rem;

    cursor: pointer;

    transition: background-color 0.3s, color 0.3s;
}

.latest-release-action:hover {
    background-color: #cc9e6c;
    color: white;

}

/* For non selectable elements */
.unselectable {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}