@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    color: black;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 400px;
    background-image: url("images/borge.jpg");
    background-position: center top;
    background-size: cover;
    color: white;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.borge {
    font-size: 7.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    user-select: none;
    -webkit-user-select: none;
    margin: 0 50px;
    color: white;
    mix-blend-mode: difference;
}

.headerRoles {
    font-size: 1.6rem;
    font-weight: 200;
    margin: 0 50px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.photoBy {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-weight: 300;
}

.logos {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    width: 80vw;
    justify-content: space-around;
    filter: grayscale(100%);
    width: 100vw;
}

.logos > div > div {
    width: 3.2rem;
    height: 3.2rem;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.logos > div > .front {
    position: absolute;
    transition: opacity 0.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.logos > div > .front:hover {
    opacity: 0;
}

.logos > div > .back {
    background-size: 150%;
    transition: background-size 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.logos > div > .front:hover ~ .back {
    background-size: 100%;
}

.elektrolud > .front {
    background-image: url("images/logos/elektrolud\ front.jpg");
}

.elektrolud > .back {
    background-image: url("images/logos/elektrolud\ back.jpg");
}

.tou > .front {
    background-image: url("images/logos/tou\ front.png"), linear-gradient(white, white);
}

.tou > .back {
    background-image: url("images/logos/tou\ back.jpg");
}

.ttime > .front {
    background-image: url("images/logos/ttime\ front.jpg");
}

.ttime > .back {
    background-image: url("images/logos/ttime\ back.jpg");
}

.arcticrights > .front {
    background-image: url("images/logos/arcticrights\ front.jpg");
}

.arcticrights > .back {
    background-image: url("images/logos/arcticrights\ back.jpg");
}

.fjordheimdrums > .front {
    background-image: url("images/logos/fjordheimdrums\ front.jpg");
}

.fjordheimdrums > .back {
    background-image: url("images/logos/fjordheimdrums\ back.jpg");
}

.paiste > .front {
    background-image: url("images/logos/paiste\ front.png");
}

.paiste > .back {
    background-image: url("images/logos/paiste\ back.jpg");
}

.columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100vw;
    margin-top: 80px;
    margin-bottom: 20px;
}

.studio, .live {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50vw;
}

.studioTitle, .liveTitle {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 500;
}

.searchBar {
    width: 75%;
    max-width: 580px;
    font-size: 1rem;
    font-family: "Montserrat", "FontAwesome", sans-serif;
    padding: 7px 15px;
    margin-top: 25px;
    border-radius: 100vw;
    border: 1px solid rgb(150, 150, 150);
}

.searchBar::placeholder {
    font-weight: 500;
    color: rgb(150, 150, 150);
}

.roles {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 1.2rem;
    margin-top: 10px;
    flex-wrap: wrap;
    margin: 0 50px 70px 50px;
}

.role {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 7px;
    margin-right: 7px;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 1px rgba(164, 164, 164, 0);
    transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 5px;
    padding: 2px 10px;
    margin-top: 10px;
}

.selected {
    background-color: rgb(238, 238, 238);
}

.circle {
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
}

.smallCircle {
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-top: 5px;
    border-radius: 50%;
}

.red {
    background-color: rgb(210, 0, 0);
}

.blue {
    background-color: rgb(0, 100, 200);
}

.purple {
    background-color: rgb(130, 0, 130);
}


.green {
    background-color: rgb(0, 190, 0);
}

.yellow {
    background-color: rgb(255, 222, 0);
}

.albums {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 85%;
    min-width: fit-content;
}

.colors {
    display: flex;
    flex-direction: column;
}

.colorContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 3.5rem;
    width: 65px;
}

.covers {
    display: flex;
    flex-direction: column;
}

.cover {
    width: 3rem;
    height: 3rem;
    background-size: cover;
    background-position: center;
    margin-bottom: 0.5rem;
}

.names {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 5px;
}

.infoContainer {
    height: 3.5rem;
}

.albumName, .artistName {
    font-size: 1.1rem;
    font-weight: 300;
}

.transparent {
    opacity: 0.3;
}

.date {
    font-size: 1rem;
    font-weight: 300;
}

.artists {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.artistContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.thumbnail {
    background-color: black;
    background-size: cover;
    background-position: center;
    width: 5rem;
    height: 3.5rem;
}

.othersTitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 80px;
}

.others {
    margin: 0 120px;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.links {
    display: flex;
    width: 80%;
    justify-content: space-around;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.links > a {
    cursor: pointer;
    text-decoration: none;
    color: black;
}

.websiteBy {
    right: 20px;
    bottom: 5px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: right;
    margin-right: 20px;
}

@media (max-width: 1200px) {
    .header {
        height: 300px;
    }

    .borge {
        font-size: 6rem;
        margin: 0 50px;
    }

    .headerRoles {
        font-size: 1.25rem;
    }

    .columns {
        flex-direction: column;
        align-items: center;
    }

    .studio, .live {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
    }

    .live {
        margin-top: 80px;
    }

    .websiteBy {   
        margin-bottom: 80px;
    }
}

@media (max-width: 1000px) {
    .borge {
        font-size: 4.8rem;
    }

    .headerRoles {
        font-size: 1rem;
    }
}

@media (max-width: 850px) {
    .header {
        height: 300px;
    }

    .borge {
        font-size: 4rem;
        margin: 0 50px;
    }

    .headerRoles {
        font-size: 0.85rem;
    }

    .columns {
        flex-direction: column;
        align-items: center;
    }

    .studio, .live {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
    }

    .studioTitle, .liveTitle {
        font-size: 1.8rem;
    }

    .live {
        margin-top: 80px;
    }
}

@media (max-width: 600px) {
    .logos > div > div {
        width: 3rem;
        height: 3rem;
    }

    .albumName, .artistName {
        font-size: 1rem;
    }

    .smallCircle {
        width: 7px;
        height: 7px;
        margin-right: 4px;
    }

    .date {
        font-size: 0.9rem;
    }

    .thumbnail {
        width: 4rem;
        height: 2.8rem;

    }

    .others {
        margin: 0 50px;
        margin-bottom: 25px;
    }
}

@media (max-width: 550px) {
    .albumName, .artistName {
        font-size: 0.85rem;
    }

    .date {
        font-size: 0.8rem;
    }
}