/* define colors */

:root {

    /* revisions one  */
    --black: #0A0A0A;
    --grey: #151515;
    --light-grey: #2c2c2c;
    --gold: #F9D371;
    --dark-blue: #0d0f14;


    --pink: #EE4C7C;
    --dark-pink: #9A1750;
    --light-pink: #E3AFBC;
    --cream: #E3E2DF;
    --dark-cream: hsl(45, 7%, 82%);
    --dark-red: #9A1750;

    --nu-black: #1A1A1D;
    --nu-grey: #4E4E50;
    --nu-dark-red: #6F2232;
    --nu-pink: #950740;
    --nu-red: #C3073F;

}


/* -------------------------------------------------------- */
/* CSS RESET                                                */
/* -------------------------------------------------------- */



/* This is to attempt to make the webpage look the same in every browser */

/* box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* margins */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
picture {
    margin: 0;
}


/* set up the body */

body {
    line-height: 1.5;
    min-height: 100vh;

}

/* make images easier to work with */

img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}

/* remove animations for people who've turned them off */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



html {
    scroll-behavior: smooth;
}

/* make it so you can't scroll horizontally */
.siteWrapper {
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-bottom: 0;
}


::-webkit-scrollbar {
    background-color: var(--dark-blue);
    border-left: solid 1px rgba(255, 255, 255, 0.198);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.198);
    border-radius: 20px;
    border: 4px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.403);
}

/*-------------------*/
/* NEW NAVBAR        */
/*-------------------*/




#toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--nu-grey);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#toggle::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transform: translateY(-5px);
    transition: 0.2s;
}

#toggle::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transform: translateY(5px);
    transition: 0.2s;
}

#toggle.active::before {
    transform: translateY(0px) rotate(45deg);
}

#toggle.active::after {
    transform: translateY(0px) rotate(-45deg);
}

#sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    /* background: rgba(40, 40, 40, 0.9); */
    background: var(--nu-black);
    transition: 0.5s;
}

#sidebar.active {
    left: 0px;
}

#sidebar ul {
    position: relative;
    margin-top: 50px;
}

#sidebar ul li {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 10px 40px;
    text-transform: uppercase;
}

#sidebar ul li:hover {
    background: var(--nu-grey);
}

#sidebar ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 2.5rem;
}



header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 99;
    font-family: "Kanit";
}

header i {
    color: var(--cream);
    cursor: pointer;
}


@media(max-width:500px) {}


@media screen and (min-width: 1240px) {
    #toggle {
        display: none;
        top: -20px;
    }


}

@media screen and (max-width: 1240px) {
    header li {
        display: none;
    }

    header #checkbox {
        display: none;
    }

}

@media screen and (min-width: 1240px) {

    #sidebar {
        display: none;
    }



    #toggle {
        display: none;
    }

    .checkbox {
        display: none;
    }


    header ul {
        flex: 2;
        display: flex;
        justify-content: space-evenly;

    }

    header i {
        color: var(--cream);

    }

    header ul li {
        list-style: none;

    }

    header ul li a {
        text-decoration: none;
        color: var(--cream);
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;

    }

    header ul li a:hover {
        border-bottom: 2px solid var(--cream);
    }

    header .menu {
        font-size: 2.5em;
        display: none;


    }
}



/*-------------------*/
/* HERO SECTION      */
/*-------------------*/



#parallax {
    width: 100%;
    height: 100vh;
    background-color: var(--cream);
    background-image: url("img/Hero_img2.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}


.hero-text h1 {
    font-size: 10rem;
    margin-bottom: 5px;
    text-transform: capitalize;
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: var(--cream);

}


.hero-text h5 {

    font-size: 3rem;
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Montserrat Black', sans-serif;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e3e2dfc4;
    ;
}


.hero-text button {
    position: relative;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat Thin', sans-serif;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;

    font-size: 1.5rem;
    transition: all 0.3s ease;

    color: var(--cream);
    background-color: transparent;
    border: solid var(--nu-red);
}



.hero-text button:hover {
    border: solid var(--nu-red);
    background-color: var(--nu-red);
    color: var(--cream);
    cursor: pointer;
    transition: ease;
}


.hero-text p {
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    letter-spacing: .2rem;
    margin-bottom: 2rem;
    transform: rotate(90deg);
    transition: ease;
}

.hero-text i {
    color: var(--cream);
}

.scroll-icon {
    transform: translateY(145px);
    transition: ease;
    animation: scroll-icon 2s ease-in-out infinite;
    position: absolute;
    top: 590px;
    right: 1px;

}

@keyframes scroll-icon {
    0% {
        opacity: 50%;
        transform: translateY(135px);
    }

    50% {
        opacity: 100%;
        transform: translateY(145px);
    }

    100% {
        opacity: 50%;
        transform: translateY(135px);
    }
}




@media screen and (max-width: 1500px) {
    .hero-text h1 {
        font-size: 6rem;
    }

    .hero-text h5 {
        font-size: 1.8rem;
    }

}

@media screen and (max-width: 1172px) {
    .hero-text h1 {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .hero-text span {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .hero-text h5 {
        font-size: 1.8rem;
    }
}



@media screen and (max-width: 650px) {
    .hero-text h1 {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .hero-text span {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .hero-text h5 {
        font-size: 1.6rem;
    }


}





/*-------------------*/
/* ABOUT SECTION     */
/*-------------------*/


.about {
    width: 100%;
    height: 100vh;
    background-color: var(--nu-black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about img {
    height: auto;
    width: 600px;
    max-width: 100%;
    padding: 0 10px;

}

.content .text {
    margin-top: 14%;
    width: 550px;
    max-width: 100%;
    padding: 0 10px;
}


.content {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.content .text h1 {
    font-size: 4rem;
    margin-bottom: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);

}


.content .text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
}

.content .text h5 {
    color: var(--cream);
    font-size: 1.5rem;
    font-family: 'Montserrat Black', sans-serif;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
}


.content .text a {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--nu-cream);
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.content .text span {
    color: var(--nu-red);
}

.content .text p {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: 1.2px;
    margin-bottom: 45px;
}


.content .text button {
    position: relative;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat Thin', sans-serif;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;

    font-size: 1.5rem;
    transition: all 0.3s ease;

    color: var(--cream);
    background-color: transparent;
    border: solid var(--nu-red);

    margin-bottom: 200px;
}


.content .text button:hover {
    border: solid var(--nu-red);
    background-color: var(--nu-red);
    color: var(--cream);
    cursor: pointer;
}

@media screen and (max-width: 1180px) {
    .about {
        width: 100%;
        height: auto;
        padding: 70px 0px;
    }
}

@media screen and (max-width: 650px) {
    .content .text button {
        margin-bottom: 20px;
        margin-left: 25%;
    }
}



@media screen and (max-width: 1172px) {}



@media screen and (max-width: 650px) {}


/*-------------------*/
/* WORK SECTION      */
/*-------------------*/

.work {
    background-color: var(--nu-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    min-height: 120vh;
    /* changed from height */
    height: auto;
    /* add this */
    text-align: center;
    padding: 30px;
}


.work-text {
    max-width: 100%;
    padding: 0 10px;
}

.work-text2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding: 0 10px;
}

.work-text3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding: 0 10px;
}

.work h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    padding-bottom: 50px;

}

@media screen and (max-width: 1172px) {

    .work iframe {
        width: 400px;
        height: 225px;
    }
}



@media screen and (max-width: 1240px) {


    .work iframe {
        width: 300px;
        height: 168.75px;
    }
}



@media screen and (max-width: 650px) {
    .work h1 {
        margin-bottom: 0px;
        font-size: 3rem;
    }

    .work {
        min-height: 130vh;
        height: auto;
    }

    .work-content {
        margin-bottom: 150px;
    }
}

/*-------------------------*/
/* DISCOGRAPHY SECTION     */
/*-------------------------*/

.DISCOGRAPHY {
    background-color: var(--nu-dark-red);
    text-align: center;
    padding-bottom: 200px;
    padding-top: 30px;
}


.disc-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.disc-container h1 {
    font-size: 4rem;
    margin-top: 50px;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    justify-content: center;
    padding-bottom: 50px;
}

.row {
    width: 100%;
    justify-content: center;
    display: flex;

    flex-wrap: wrap;


}

.image {
    background: var(--nu-black);
    position: relative;
    flex: auto;
    max-width: 300px;
    height: 300px;
    margin: 20px;
    overflow: hidden;
}

.image img {
    opacity: 1;
    position: relative;
    vertical-align: top;
    transition: 0.6s;
    transition-property: opacity;
}

.image:hover img {
    opacity: 0.2;
}

.image .details {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    width: 100%;
    height: 100%;
}

.image .details h2 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 100px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0;
    transition: 0.6s;
    transition-property: opacity, transform;
}

.image .details h2 {
    font-weight: 900;
}

.image:hover .details h2 {
    transform: translateY(-65px);
    opacity: 1;
}

.image .details p {
    margin: 30px 30px 0 30px;
    font-family: 'Montserrat Black', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: 0.6s;
    transition-property: opacity, transform;
}

.image:hover .details p {
    opacity: 1;
    transform: translateY(-85px);
}

.more {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    bottom: -60px;
    transition: 0.6s;
    transition-property: bottom;
}

.more a {
    font-family: 'Montserrat', sans-serif;
}

.image:hover .more {
    bottom: 0;
}

.more .read-more {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;

}

.more .read-more span {
    font-weight: 900;
}

.more .icon-links i {
    color: #000;
    font-size: 20px;
}

.more .icon-links a:not(:last-child) i {
    margin-right: 20px;
}

/* Responsive CSS */

@media (max-width: 1080px) {
    .image {
        flex: 100%;
        max-width: 300px;
        max-height: 300px;
    }

    .disc-container h1 {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    .image .details p {
        font-size: 16px;
    }



    .more .read-more,
    .more .icon-links a i {
        font-size: 18px;
    }
}

/*---------------------------*/
/* CONTACT SECTION           */
/*---------------------------*/

/* remove the ugly stock focus highlights */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}



.contact {
    width: 100%;
    height: auto;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Montserrat Black', sans-serif;

}

.form {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    width: 80%;
    max-width: 1000px;
    border: 0;
}

.form-input,
.form-button {
    font-family: inherit;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1.5px;
    border: 0;
    background-color: var(--dark-cream);
}

.form-input::placeholder {
    opacity: 0.5;
}

.form-input {
    padding: 1.5em;
    width: 100%;
}

.form-input:focus::placeholder {
    color: var(--nu-red);
    opacity: 0.85;
}

.form-item:nth-of-type(1) {
    position: relative;
}


.form-item:nth-of-type(2) {
    position: relative;
}

.form-item:nth-of-type(3) {
    position: relative;
}

.form-item:nth-of-type(4) {
    position: relative;
}

.form-item:nth-of-type(1)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}

.form-item:nth-of-type(2)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}

.form-item:nth-of-type(3)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}

.form-item:nth-of-type(4)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}


.contact h1 {
    font-size: 4rem;
    margin-top: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: var(--nu-black);
}


.form-button {
    background-color: var(--nu-red);
    color: var(--cream);
    padding: 1em 2em;
    font-size: 1.5rem;
    border: solid var(--nu-red);
    transition: all 0.3s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

}

.form-button:hover {
    color: var(--nu-red);
    background-color: var(--cream);
    border: solid var(--nu-red);
    cursor: pointer;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}



@media screen and (max-width: 1172px) {}



@media screen and (max-width: 1240px) {
    .contact h1 {
        font-size: 3rem;
        margin-bottom: 20px;

    }
}



@media screen and (max-width: 650px) {}



/*-------------------*/
/* FOOTER SECTION    */
/*-------------------*/


.footer__container {
    background-color: var(--cream);
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: -100px;
}

#footerLogoScooterAllen {
    color: var(--nu-black);
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}


.social__icon--link {
    color: var(--nu-black);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social__icon--link:hover {
    color: var(--nu-red);
}

.social__media {
    width: 100%;

}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 60%;
    margin: 40px auto 0 auto;

}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;

}

.website__rights {
    color: var(--nu-black);

}

@media screen and (max-width: 1400px) {

    .social__media--wrap {
        max-width: 100%;
    }


    #footerLogoStevePerrino {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 3rem;
    }

    .social__media--wrap {
        flex-direction: column;
    }

}

@media screen and (max-width: 650px) {

    .footer__container {
        margin-top: 0px;
    }
}










/*-------------------*/
/* FAQ SECTION     */
/*-------------------*/


.faq {
    width: 100%;
    height: auto;
    background-color: var(--nu-black);
    display: flex;
    justify-content: center;
    align-items: center;
}


.faq_content .faq_text {
    margin-top: 14%;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
}


.faq_content {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.faq_content .faq_text h1 {
    font-size: 4.5rem;
    margin-bottom: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);

}


.faq_content .faq_text h2 {
    font-size: 2.1rem;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
}

.faq_content .faq_text h5 {
    color: var(--cream);
    font-size: 1.5rem;
    font-family: 'Montserrat Black', sans-serif;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
}


.faq_content .faq_text a {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--nu-cream);
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.faq_content .faq_text span {
    color: var(--nu-red);
}

.faq_content .faq_text p {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1.5rem;
    letter-spacing: 1.2px;
    margin-bottom: 45px;
}



@media screen and (max-width: 1180px) {
    .faq_about {
        width: 100%;
        height: auto;
        padding: 70px 0px;
    }
}

@media screen and (max-width: 650px) {
    .faq_content .faq_text button {
        margin-bottom: 20px;
        margin-left: 25%;
    }
}



@media screen and (max-width: 1172px) {}



@media screen and (max-width: 650px) {}