* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family:'kola';
    src: url(resources/fonts/Kola-Regular.woff2)
}

/* anims */

@keyframes fade_in {
    from {
        opacity: 0;
    }

    to {
        opacity: .7;
    }
}

@keyframes logo_intro {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes scale_up {
    from {opacity: 0; transform: scale(0)}
    to {opacity: 1; transform: scale(1)}
}

@keyframes slide_in {
    from {opacity: 0; transform: translateX(20%);}
    to {opacity: 1; transform: translateX(0%)}
}



.strikethrough {
  text-decoration: line-through;
  color: grey
}

/* Main container */


.main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(500px, 50%);
    height: max(250px, 33%);
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    transform: translate(-50%, -50%);
}


#logo-loop{
    position: relative;
    top: 50%;
    left: 50%;
    border: 0px solid white;
    background-color: rgba(56, 144, 116, 0);
    opacity: 0;
    width: 60%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
    transform: translate(-50%, -50%) scale(0.85);

    animation: logo_intro .8s .3s cubic-bezier(.22,.03,.43,.98) forwards


}

/* Music, shop, tour */


.category-container {
    position: absolute;
    top: 0%;
    right: 10%;
    width: 15%;
    height: 100%;
    background-color: rgba(144, 56, 56, 0);
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3%;
}

.category-item {
    text-align: center;
    align-content: center;
    background-color: rgba(30, 121, 200, 0);
    color: white;
    text-decoration: none;
    opacity: 0;

    animation: slide_in 1.5s ease forwards;
    animation-delay: calc(var(--text_num) * 0.2s + 0.5s);

}

.category-item:nth-child(1) { --text_num: 0; }
.category-item:nth-child(2) { --text_num: 1; }
.category-item:nth-child(3) { --text_num: 2; }


.category-item.ready{
    animation: none;
    opacity: 1;
    transform: translateX(0%);
    transition: transform 0.3s cubic-bezier(.13,.71,.46,.98)
}

.category-item.ready:hover{
    transform: scale(1.1)
}

.category-text {
    font-family: "kola";
    letter-spacing: 50%;
    font-size: 1.3vmax;
}

/* Social media icons */

.icon-container{
    position: absolute;
    display: flex;
    background-color: rgba(255, 255, 255, 0);

    justify-content: center;
    gap: 20px;

    width: max(200px, 20%);
    height: max(30px, 4%);
    left: 50vw;
    bottom: 3vh;
    transform: translateX(-50%);

}

.small-icon {
   background-color: rgba(50, 252, 131, 0);
   aspect-ratio: 1/1;
}

.small-icon img {
    width: 100%;
    height: 100%;
    opacity: 0;

    animation: scale_up .5s ease forwards;
    animation-delay: calc(var(--icon_num) * 0.1s + 0.4s)
}

.small-icon.ready img{
    animation: none;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(.13,.71,.46,.98)
}

.small-icon.ready:hover img{
    transform: scale(1.3)
}






.small-icon:nth-child(1) {--icon_num: 0}
.small-icon:nth-child(2) {--icon_num: 1}
.small-icon:nth-child(3) {--icon_num: 2}
.small-icon:nth-child(4) {--icon_num: 3}
.small-icon:nth-child(5) {--icon_num: 4}


/* Background elements */


.dark-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 1;
    z-index: 0;
    pointer-events: none;

    animation: fade_in .7s ease forwards
}


#bgvideo {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none
}





@media (aspect-ratio < 1/1) {

    
    
}

@media screen and (max-width: 768px) and (min-height: 588px) {
   
    

}
