.page-logo {
    /* Override main logo colour */
    filter: brightness(0) invert(1) !important;
}

/* Releases container */
.releases-container {
    margin: 40vh 0;
    height: 50vh;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}

.releases-container-title,
.videos-container-title,
.about-container-title,
.live-container-title {
    font-size: 7vh;
    color: #906B43;
    font-weight: bold;
    margin-bottom: 10vh;
}

.releases {
    display: flex;
    width: 80%;

}

.release-item {
    animation-duration: 1s;
    aspect-ratio: unset;
}

.releases-action,
.videos-action,
.about-action,
.live-action {
    text-align: right;
    width: 80%;
}

.releases-action a,
.videos-action a,
.about-action a,
.live-action a {
    font-size: 3vh;
    color: #906B43;
    font-weight: 400;
    margin-right: 3rem;

    cursor: pointer;
    text-decoration: none;

    transition: color 0.3s;
}

.releases-action a:hover,
.videos-action a:hover,
.about-action a:hover,
.live-action a:hover {
    color: white;
}


/* Videos */
.videos-container {
    margin-top: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}



.videos-embed {
    width: 60%;
    aspect-ratio: 16 / 9;
    animation: float_in forwards 1s;
    margin-bottom: 2rem;
}

/* About */
.about-container {
    margin-top: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-inner-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;

}

.about-inner-container img {
    object-fit: cover;
    width: 30%;
    border-radius: 2px;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 20%);
    aspect-ratio: 1/1;
    animation: float_in 1s forwards;
}

.about-bio-desc {
    color: #906B43;
    font-size: 2.5vh;
    flex-grow: 2;
    text-align: justify;
    margin: 3rem;
    line-height: 1.5em;
    animation: fade_in 1s forwards;

}

.about-action a {
    margin-top: -6rem;
    position: absolute;
    width: max-content;
    margin-left: -15rem;
}


/* Live */
.live-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 40vh;

}


.live-inner-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
}

.live-inner-item {
    width: 50%;
    cursor: pointer;
    position: relative;

}
.live-inner-item img:hover,
.live-item-action:hover ~ img{
    /* width: 40%; */
    transform: scale(1.1);
    opacity: 0.6;
    filter: blur(4px);
}
.live-inner-item:hover > .live-item-action {
    opacity: 1;
}

.live-inner-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s, filter 0.3s;


}

.live-item-action{
    width: fit-content;
    padding: 1rem;
    border-radius: 12px;
    border: thin solid white;

    font-size: 4vh;
    color: white;
    font-weight: 100;
    cursor: pointer;
    background-color: #cc9e6c;

    transition: background-color 0.3s, color 0.3s, opacity 0.3s;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    z-index: 10;

}

.live-item-action:hover{
    background-color: #906B43;
    color: white;
/* 906B43 */
}
/* Redefined keyframes due to Safari/Webkit bug with keyframes in different css file */
@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 fade_in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}