*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: black;
    overflow-x: hidden;
}

p, a, h1, h2, h3, h4, h5 {
    font-family: "athelas", serif;
    font-weight: 700;
    font-style: normal;

    text-decoration: none;
}

a {
    cursor: pointer;
}

h2 {
    color: #fff;
    font-size: 2rem;
}

h3 {
    color: #fff;
    font-size: 1.4rem;
}

@keyframes homepageCover {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.homepage-section2 {

    background-color: transparent;
    display: flex;
    width: 100%;
    height: 100vh;
    top: 0;
    /* border: 5px solid red; */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.homepage-section2 h1 {
    /* color: rgb(233, 235, 247); */
    font-size: clamp(3rem, 10vw, 11rem);
    mix-blend-mode: difference;
    font-weight: 200;
    
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;


    /* animation: phraseShrink 5s ease-in-out 1; */
}

.homepage-section2-cover {
    /* margin-top: -28px; */
    position: absolute;
    /* top: 0; */
    width: 100%;
    height: 100vh;
    z-index: -1;
    
    background-image: url('images/hp-sec1-cover.jpg');
    background-position: center center;
    background-size: cover;

    animation: homepageCover 3s ease-in-out infinite;
    animation: fadeIn 4s ease-in-out 1;
    /* filter: saturate(40%); */
}

.contact-section1 {

    background-color: transparent;
    display: flex;
    width: 100%;
    height: 500px;
    top: 0;
    /* border: 5px solid red; */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-section2 {
    display: grid;
    width: 100%;
    height: 100vh;
    top: 0;
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s;
    opacity: 1;
}

.contact-section2 img {
    width: 50px;
    margin: 20px;
}

.contact-section2 h2 {
    color: #fff;
    font-size: 2rem;
}

.contact-section2 a {
    color: #fff;
    transition: opacity 0.2s;
    font-size: 1.5rem;
}

.contact-section2 a:hover {
    opacity: 0.4;
}

.music-sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 40px;
    align-items: start;

    width: min(1200px, 100%);
    height: 600px;
    /* transition: opacity 0.2s; */
    opacity: 1;
    padding: 20px clamp(16px, 4vw, 40px);
    margin: 0 auto;
}

.music-section2 {
    display: grid;
    grid-template-columns: auto;
    justify-content: start;
    align-items: start;
    text-align: left;
    width: 100%;
    height: 100%;
    /* transition: opacity 0.2s; */
    opacity: 1;
    padding: 20px;
    margin-left: 0;
    /* border: 5px solid red; */
}

.music-section2 > div {
    display: flex;
    align-items: center;
    margin: 12px 0;
}

.music-section2 h3 {
    margin: 0;
    transition: 0.2s;
}

.music-section2 img {
    width: 50px;
    /* margin: 20px; */
}

.music-section2 a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.music-section2 a:hover {
    opacity: 0.3;
    margin-left: 20px;
}

.music-section3 {
    display: grid;
    grid-template-columns: auto;
    justify-content: start;
    align-items: start;
    text-align: center;
    width: 100%;
    height: 100%;
    /* transition: opacity 0.2s; */
    opacity: 1;
    padding: 20px;
    margin-left: 0;
    /* right: 100;
    margin-right: 0; */
    /* border: 5px solid red; */
}

.music-section3 h2 {
    font-size: 1.5rem;
}

.about-section2 {
    display: flex;
    /* position: absolute; */
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    /* border: 5px solid red; */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px;
    line-height: 40px;
}

.about-section2 p,
.about-section2 a {
    /* font-size: 0.2rem; */
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.about-section2 a:hover {
    opacity: 0.4;
}

#drippinginroses {
    display: flex;
    align-items: center;
    margin: 12px 0;
    background-color: #3b0a0a;
}

#inextreamis {
    display: flex;
    align-items: center;
    margin: 12px 0;
    background-color: #646237;
}

#bitbird {
    display: flex;
    align-items: center;
    margin: 12px 0;
    background-color: #b63939;
}

#foundred {
    display: flex;
    align-items: center;
    margin: 12px 0;
    background-color: #c15e5e;
}

#arcade {
    display: flex;
    align-items: center;
    margin: 12px 0;
    background-color: #17161c;
}

.music-section3 > div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    padding: 30px;
    height: 20px;
    transition: 0.3s;
}

.music-section3 > div:hover {
    cursor: pointer;
    padding-top: 40px;
    padding-bottom: 40px;
    filter: brightness(150%);
}

.music-section3 h3 {
    margin: 0;
    line-height: 1;
    justify-self: center;
    transition: 0.2s;
    z-index: 1;
}

.music-section3 img {
    width: 50px;
    justify-self: start;
}

.music-section3 a {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    transition: 0.2s;
    width: 100%;
}

#ncsaIcon {
    /* width: 90px; */
    filter: saturate(0%) brightness(270%);
}

#frIcon {
    /* width: 45px; */
}

#bbIcon {
    width: 30px;
    filter: saturate(0%) brightness(270%);
}

#scIcon {
    filter: invert(100%);
}

#igIcon {
    filter: invert(100%);
}

#skIcon {
    filter: saturate(0%) brightness(270%);
    width: 50px;
    margin: 20px;
}

.tour-section2 {
    display: flex;
    width: 100%;
    height: 100vh;

    justify-content: center;
    align-items: center;


    /* border: 5px solid red; */
}

/* Songkick widget sizing */
.tour-section2 .songkick-widget,
.tour-section2 .songkick-widget iframe {
    width: min(1000px, 92vw);
    max-width: 100%;
    display: flex;
    margin: 0 auto;
}

.tour-section2 h2,
.tour-section2 a {
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
    color: rgb(255, 255, 255);
    mix-blend-mode: difference;
    font-weight: 400;
    transition: 0.2s;
    /* box-shadow: 5px, black; */
}

.tour-section2 a {
    font-size: clamp(1rem, 3vw, 2rem);
}

.contact-section1 h1 {
    /* color: rgb(233, 235, 247); */
    font-size: clamp(2.5rem, 8vw, 7rem);
    mix-blend-mode: difference;
    font-weight: 200;
    
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    /* animation: phraseShrink 5s ease-in-out 1; */
}

.about-section1-cover {
    /* margin-top: -28px; */
    position: absolute;
    /* top: 0; */
    width: 100%;
    height: 100vh;
    z-index: -1;
    
    background-image: url('images/gear-shoot-pic-2.jpeg');
    /* background-position: center; */
    background-position-y: 890px;
    background-size: cover;
    background-attachment: fixed;

    animation: homepageCover 3s ease-in-out infinite;
    animation: fadeIn 4s ease-in-out 1;
    filter: brightness(40%);
}


.contact-section1-cover {
    /* margin-top: -28px; */
    position: absolute;
    /* top: 0; */
    width: 100%;
    height: 100vh;
    z-index: -1;
    
    background-image: url('images/hp-sec1-cover.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    animation: homepageCover 3s ease-in-out infinite;
    animation: fadeIn 4s ease-in-out 1;
    filter: brightness(40%);
}

.tour-section1-cover {
    /* margin-top: -28px; */
    position: absolute;
    /* top: 0; */
    width: 100%;
    height: 100vh;
    z-index: -1;
    
    background-image: url('images/jb-burdalls-art-still.png');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    animation: homepageCover 3s ease-in-out infinite;
    animation: fadeIn 4s ease-in-out 1;
    filter: brightness(40%);
}

.music-section1-cover {
    /* margin-top: -28px; */
    position: absolute;
    /* top: 0; */
    width: 100%;
    height: 600px;
    z-index: -1;
    
    background-image: url('images/jb-burdalls-art-still.png');
    background-position: center 50px;
    background-size: cover;
    background-attachment: fixed;

    animation: homepageCover 3s ease-in-out infinite;
    animation: fadeIn 4s ease-in-out 1;
    filter: brightness(40%);
}

.homepage-section1 {

    background-color: transparent;
    display: flex;
    width: 100%;
    height: 100vh;
    top: 0;
    /* border: 5px solid red; */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.homepage-section1 h1 {
    color: rgb(233, 235, 247);
    font-size: clamp(3rem, 10vw, 11rem);
    mix-blend-mode: color-dodge;
    animation: phraseShrink 5s ease-in-out 1;
}

.homepage-section1-cover {
    margin-top: -28px;
    position: absolute;
    /* top: 0; */
    width: 100%;
    height: 100vh;
    z-index: -1;
    
    animation: homepageCover 3s ease-in-out infinite;
    animation: fadeIn 4s ease-in-out 1;
    /* filter: saturate(40%); */
}

.homepage-section1-cover video {
    width: 100%;
    height: 100%;
}

@keyframes phraseShrink {
    0% {
        opacity: 0;
        letter-spacing: 100px;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
        letter-spacing: normal;
    }
}

.nav-container {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
    animation: fadeIn 4s ease-in-out 1;
    transition: transform 0.15s ease, opacity 0.25s ease;
}

.nav-container button {
    border: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 46px;
    height: 46px;
    margin-top: 12px;
    /* border: 1px solid rgba(255, 255, 255, 0.811); */
    /* border-radius: 20px; */
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    margin: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-container.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-container.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-container.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.nav-container.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

nav {
    width: 100%;
    background-color: transparent;
    padding: 20x;
    padding-top: 40px;
    padding-bottom: 10px;
}

nav a {
    padding: 90px;
    padding-bottom: 30px;
    font-size: 1.5rem;
    color: white;
    transition: 0.3s;
    font-weight: 400;
}

nav a:hover {
    opacity: 0.3;
    letter-spacing: 20%;
}

@media (max-width: 720px) {
    .about-section2 {
        padding: 80px;
    }

    .nav-container {
        z-index: 2;
        background-color: black;
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    nav {
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease;
    }

    .nav-container.is-open nav {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
    }

    nav a {
        display: block;
        padding: 14px 0;
        font-size: 1.2rem;
    }

    .music-sections-container {
        grid-template-columns: 1fr;
        height: auto;
        margin-left: 0;
        padding: 16px;
    }

    .music-section2,
    .music-section3 {
        height: auto;
        margin-left: 0;
        padding: 16px;
    }

    .music-section2 img,
    .music-section3 img {
        width: 40px;
    }

    .music-section3 > div {
        height: auto;
        padding: 12px;
    }

    .music-section3 a {
        grid-template-columns: 40px 1fr 40px;
    }
}

/* ik this is shit but it's fine it works, cba to do it properly */

@media (max-width: 520px) {
    .about-section2 {
        padding: 40px;
    }

    .about-section2 p,
    .about-section2 a {
        font-size: 1.2rem;
    }
}
