:root {
    --spotify-green: #1db954;
    --yt: #ff0000;
    --ig-gradient: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

header.sticky {
    position: fixed;
    height: 60px;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ffffff20;
    background-color: transparent;
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 100;
    font-family: "Wix Madefor Display", sans-serif;
}

header.sticky .headerMain {
    height: 60px;
    width: 100%;
    padding: 0 calc((100% - 1200px) / 2);
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #00000050;
    backdrop-filter: blur(12px);
}

header.sticky .headerMain span {
    align-content: center;
    text-align: center;
}

header.sticky .headerMain span#side {
    width: 60px;
    height: 60px;
}

header.sticky .headerMain span.logo#center {
    font-size: 30px;
    font-weight: semi-bold;
    height: 60px;
}

header.sticky .headerMain span#side #menuBtn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease, border-color 200ms ease;
    border: 1px solid transparent;
    border-radius: 50%;
}

header.sticky .headerMain span#side #menuBtn:hover {
    background-color: #ffffff10;
    transition: background-color 200ms ease;
}

header.sticky .headerMain span#side #menuBtn:active {
    background-color: #ffffff20;
    border-color: #ffffff30;
    transition: background-color 200ms ease, border-color 200ms ease;
}

#bitini {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#bar1,
#bar2,
#bar3 {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transform-origin: center left;
}

header.sticky .headerMenu {
    width: 100%;
    height: 220px;
    padding: 20px calc((100% - 1200px) / 2);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-image:
        linear-gradient(to bottom, #00000050, #00000025);
}

header.sticky .headerMenu .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    gap: 20px;
    width: calc(100% / 3);
    color: var(--text-color-secondary);
}

header.sticky .headerMenu .socials {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 160px;
    gap: 20px;
    width: calc(100% / 3);
    color: var(--text-color-secondary);
}

header.sticky .headerMenu .socials p {
    font-size: 14px;
    color: var(--text-color-third);
}

header.sticky .headerMenu .section a,
header.sticky .headerMenu .section a:link,
header.sticky .headerMenu .section a:visited,
header.sticky .headerMenu .socials a,
header.sticky .headerMenu .socials a:visited,
header.sticky .headerMenu .socials a:link {
    color: var(--text-color-secondary);
}

header.sticky .headerMenu .section a:hover,
header.sticky .headerMenu .section a:active,
header.sticky .headerMenu .socials a:hover,
header.sticky .headerMenu .socials a:active {
    color: var(--text-color-main);
    transition: color 200ms ease;
}


.icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.ig-link::before,
.spotify-link::before,
.yt-link::before {
    content: "";
    display: inline-block;
    height: 1em;
    width: auto;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    filter: grayscale(1) brightness(1.5);
    transition: filter 0.2s;
    vertical-align: middle;
}

.yt-link::before {
    background-image: url('../src/youtube_icon.svg');
    margin-top: 6px;
}

.yt-link:hover::before {
    filter: none;
}

.spotify-link::before {
    background-image: url('../src/spotify_icon.svg');
}

.spotify-link:hover::before {
    filter: none;
}

.ig-link::before {
    background-image: url('../src/instagram_icon.svg');
}

.ig-link:hover {
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: color 200ms ease;
}

.ig-link:hover::before {
    filter: none;
    transition: filter 200ms ease, color 200ms ease;
}

header.sticky .headerMenu .socials a.spotify-link:hover {
    color: var(--spotify-green);
    transition: color 200ms ease;
}

header.sticky .headerMenu .socials a.yt-link:hover {
    color: var(--yt);
    transition: color 200ms ease;
}

header.sticky .headerMenu #divider {
    width: 1px;
    height: 160px;
    background-color: #ffffff20;
    margin: 20px;
    transform-origin: top;
}


/* Scrollbar in here too */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff20;
    border-radius: 4px;
    width: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff40;
}