/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - General */

html {
    font-size: 16px;
    font-family: var(--font-family-standard);
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 550px) {
    html {
        font-size: 14px;
    }
}

:root {
    --color-bg: #000000;
    --color-main: #FF07C5; /* #ff00d0 */
    --color-main-dark: #ED07B8;
    --color-main-light: #FF33D4; /* #ff3ddb */
    --color-second: #D0DDEE;
    --color-third: rgb(20, 20, 20); /* #141414 */
    --color-third-dark: rgb(8, 8, 8);
    --color-third-light: rgb(32, 32, 32);
    --font-family-standard: Verdana;
    --font-size-standard: 1rem;
    --font-size-small: 0.8rem;
    --font-size-title: 2rem;
    --font-size-sub-title: 1.5rem;
    --box-shadow: -2px 2px 10px 0 rgba(255, 255, 255, 0.3);
    --header-height: 75px;
    --bg-desktop: linear-gradient(to right, #121212 0%, black 50%);
    --bg-mobile: linear-gradient(to right, #121212 -25%, black 50%);
    --bg-main-color: linear-gradient(to right, var(--color-main-light) 0%, var(--color-main) 30%, var(--color-main) 70%, var(--color-main-dark) 100%);
}

h1 {
    font-size: 2rem;
}

p {
    line-height: 1.5;
}

* {
    margin: 0;
    padding: 0;
    color: white;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

/* Inactivate scroll bar when mobile menu is opened */
body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--color-main);
    transition: 0.5s;
}

button {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
}

button:hover {
    cursor: pointer;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - General */

.bc-text-justify {
    text-align: justify;
}

.bc-text-center {
    text-align: center;
}

.bc-m-05 {
    margin: 0.5rem;
}

.bc-m-1 {
    margin: 1rem;
}

.bc-m-t-025{
    margin-top: 0.25rem;
}

.bc-m-t-05{
    margin-top: 0.5rem;
}

.bc-m-t-1{
    margin-top: 1rem;
}

.bc-m-t-2{
    margin-top: 2rem;
}

.bc-m-b-025 {
    margin-bottom: 0.25rem;
}

.bc-m-b-05 {
    margin-bottom: 0.5rem;
}

.bc-m-b-1 {
    margin-bottom: 1rem;
}

.bc-m-b-2 {
    margin-bottom: 2rem;
}

.bc-m-b-3 {
    margin-bottom: 3rem;
}

.bc-p-05 {
    padding: 0.5rem;
}

.bc-p-1 {
    padding: 1rem;
}

.bc-p-l-1 {
    padding-left: 1rem;
}

.bc-p-r-1 {
    padding-right: 1rem;
}

.bc-p-2 {
    padding: 2rem;
}

.bc-m-b-05 {
    margin-bottom: 0.5rem;
}

.bc-m-b-1 {
    margin-bottom: 1rem;
}

.bc-m-l-1 {
    margin-left: 1rem;
}

.bc-m-r-1 {
    margin-right: 1rem;
}

.bc-h-100 {
    height: 100%;
}

.bc-w-75 {
    width: 75%;
}

.bc-w-90 {
    width: 90%;
}

.bc-w-100,
.bc-div-width-12 {
    width: 100%;
}

.bc-div-width-1 {
    width: calc((1 / 12) * 100%);
}

.bc-div-width-2 {
    width: calc((2 / 12) * 100%);
}

.bc-div-width-3 {
    width: calc((3 / 12) * 100%);
}

.bc-div-width-4 {
    width: calc((4 / 12) * 100%);
}

.bc-div-width-5 {
    width: calc((5 / 12) * 100%);
}

.bc-div-width-6 {
    width: calc((6 / 12) * 100%);
}

.bc-div-width-7 {
    width: calc((7 / 12) * 100%);
}

.bc-div-width-8 {
    width: calc((8 / 12) * 100%);
}

.bc-div-width-9 {
    width: calc((9 / 12) * 100%);
}

.bc-div-width-10 {
    width: calc((10 / 12) * 100%);
}

.bc-div-width-11 {
    width: calc((11 / 12) * 100%);
}

.bc-width-cap {
    max-width: 1920px;
    width: 100%;
}

.bc-center-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bc-center-center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bc-center-center-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bc-center-top-column {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.bc-center-top-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
}

.bc-spread-center-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.bc-spread-center-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bc-evenly-center-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.bc-left-center-row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.bc-left-center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.bc-left-top-column {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.bc-right-center-row {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.bc-right-center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.bc-mirror {
    transform: scaleX(-1);
}

@media(max-width: 768px) {

    .bc-div-width-1,
    .bc-div-width-2,
    .bc-div-width-3,
    .bc-div-width-4,
    .bc-div-width-5,
    .bc-div-width-6,
    .bc-div-width-7,
    .bc-div-width-8,
    .bc-div-width-9,
    .bc-div-width-10,
    .bc-div-width-11 {
        width: 100%;
    }

    .bc-center-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bc-center-center-row {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .bc-right-center-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* To make pictures appear on top of text on phone size, but not on desktop */
    .bc-column-reverse {
        flex-direction: column-reverse !important;
    }
}


/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Icons */

.bc-icon-footer {
    width: 1.2rem;
    margin-right: 0.5rem;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Page Components */

.bc-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-desktop);
    min-height: 100vh;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .bc-page {
        background: var(--bg-mobile);
    }
}

.bc-header {
    width: 100%;
    min-height: var(--header-height);
    /* background: linear-gradient(to right, #121212 0%, black 50%); */
    padding: 0 80px 0 40px;
}

@media(max-width: 768px) {
    .bc-header {
        padding: 0 40px 0 20px;
    }
}

@media(max-width: 550px) {
    .bc-header {
        padding: 0 20px 0 10px;
    }
}

.bc-body {
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bc-footer {
    width: 100%;
    background: linear-gradient(to right, var(--color-third-light) 0%, var(--color-third) 30%, var(--color-third) 70%, var(--color-third-dark) 100%);
    padding: 2.5rem 2rem 2.5rem 2rem;
}

.bc-footer p {
    font-size: var(--font-size-small);
}

.bc-footer-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .bc-footer-div {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: auto;
    }
}

.bc-footer-div-list {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

@media (max-width: 768px) {
    .bc-footer-div-list {
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Divs */

.bc-div-standard {
    width: 100%;
    padding: 60px;
}

@media(max-width: 768px) {
    .bc-div-standard {
        padding: 30px;
    }
}

@media(max-width: 550px) {
    .bc-div-standard {
        padding: 15px;
    }
}

.bc-div-sub {
    width: 100%;
    padding: 1.1rem;
}

@media(max-width: 768px) {
    .bc-div-sub {
        padding: 0.9rem;
    }
}

@media(max-width: 550px) {
    .bc-div-sub {
        padding: 0.7rem;
    }
}

.bc-landing-page-image {
    width: 100%;
}

.bc-div-tile {
    border-radius: 5px;
    border: 1px solid var(--color-main);
    background: linear-gradient(to right, var(--color-third-light) 0%, var(--color-third) 30%, var(--color-third) 70%, var(--color-third-dark) 100%);
    box-shadow: var(--box-shadow);
}

.bc-envelope-div {
    border: 1px solid rgba(255, 0, 247, 0.548);
    border-radius: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: var(--color-third);
    background: linear-gradient(to right, var(--color-third-light) 0%, var(--color-third) 30%, var(--color-third) 70%, var(--color-third-dark) 100%);
}

.bc-envelope-div:hover {
    box-shadow: 0px 0px 1.5rem rgba(255, 255, 255, 0.4);
}


/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Buttons */

.bc-button-standard {
    border-radius: 3px;
    padding: 0.4rem;
    background-color: var(--color-main);
    color: white;
    font-size: var(--font-size-standard);
    transition: all 0.3s ease;
}

.bc-button-standard:hover {
    background-color: var(--color-main-dark);
}

.bc-button-form {
    margin-top: 0.8rem;
    width: 100%;
}

.bc-nav-button {
    margin: 0 10px 1px 10px;
    transition: color 0.5s ease;
}

.bc-nav-button:hover {
    color: var(--color-main);
    cursor: pointer;
}

.bc-nav-button-mobile {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    transition: color 0.5s ease;
}

.bc-nav-button-mobile:hover {
    color: var(--color-main);
    cursor: pointer;
}

.bc-header-menu-button-div {
    display: none;
}

@media (max-width: 768px) {
    .bc-header-menu-button-div {
        display: flex;
    }
}

.bc-header-menu-button {
    width: 2.5rem;
}


/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Elements */

.bc-input {
    padding: 0.4rem;
    color: black;
    border-radius: 3px;
    font-size: var(--font-size-standard);
}

.bc-form-element {
    width: 100%;
    margin-bottom: 1rem;
}

.bc-message-box {
    background: linear-gradient(to right, var(--color-main-light) 0%, var(--color-main) 35%, var(--color-main) 65%, var(--color-main-dark) 100%);
    border-radius: 3px;
    box-shadow: var(--box-shadow);
}


/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Effects */

.bc-fx-landing-image {
    opacity: 0;
    animation: fadeInImage 6s ease-in-out forwards;
}

.bc-fx-fade-in-lr {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeftToRight 3s ease-in-out forwards;
}

.bc-fx-fade-in-rl {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRightToLeft 3s ease-in-out forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRightToLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bc-fx-hover-white {
    color: var(--color-main);
    transition: color 0.5s ease;
}

.bc-fx-hover-white:hover {
    color: white;
}


/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Texts */

.bc-text-warning {
    font-size: var(--font-size-small);
    color: var(--color-main);
    font-style: italic;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* BoonCode - Specific */

.bc-header-mobile {
    display: none;
}

.bc-mobile-menu-div {
    position: fixed;
    padding: 0.5rem;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-mobile);
    display: none;
    gap: 2rem;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 10000;

}

@media (max-width: 768px) {
    .bc-header-desktop {
        display: none;
    }

    .bc-header-mobile {
        display: flex;
    }
}

.bc-landing-page-div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
}

@media (max-width: 768px) {
    .bc-landing-page-div {
        flex-direction: column-reverse;
    }
}

.bc-landing-page-right-div {
    display: flex;
    justify-content: end;
    align-items: center;
}

.bc-standard-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .bc-standard-image {
        width: 100%;
        max-height: 250px;
        object-fit: contain;
    }
}

.bc-song-image {
    width: 12rem;
    border-radius: 0px;
}

@media (max-width: 768px) {
    .bc-song-image {
        border-radius: 3px;
    }
}

.bc-profile-image {
    width: 70%;
    max-width: 70%;
    max-height: 400px;
    object-fit: contain;
}

.bc-subscribe-button {
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
}

.bc-subscribe-button-green {
    background: linear-gradient(to right, #1AA34A 0%, #1db954 40%, #1db954 60%, #199E48 100%);
}

.bc-subscribe-button-green:hover {
    background: linear-gradient(to right, #15823B 0%, #1AA34A 40%, #1AA34A 60%, #15873D 100%);
}

.bc-subscribe-button-red {
    background: linear-gradient(to right, #CF0D0D 0%, #EE0F0F 40%, #EE0F0F 60%, #B50B0B 100%);
}

.bc-subscribe-button-red:hover {
    background: linear-gradient(to right, #B50B0B 0%, #D40D0D 40%, #D40D0D 60%, #A10A0A 100%);
}

.bc-subscribe-button-orange {
    background: linear-gradient(to right, #D6661E 0%, #F37422 40%, #F37422 60%, #C45E1B 100%);
}

.bc-subscribe-button-orange:hover {
    background: linear-gradient(to right, #C45E1B 0%, #C9601C 40%, #C9601C 60%, #AD5318 100%);
}