/* 
MARK: GLOBAL STYLES
*/

html, body {
    padding: 0;
    margin: 0;
}

html {
    background-color: rgb(44, 37, 33);
}

span {
    font-family: 'Exo 2';
}

.hidden {
    display: none;
}

/* 
MARK: NAV BAR
*/

.navBar {
    width: 100%;
    height: 5.5rem;
    /* background-color: purple; */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .6) 0%, 
                                      rgba(0, 0, 0, 0) 100%);
    position: fixed;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2rem;
    z-index: 500;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    color: white;
    font-family: 'Domine';
    font-weight: 600;
    font-style: none;
    font-size: 18pt;
}

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    transition: .3s;
}

.nav-links a:hover {
    font-size: large;
    transition: .3s;
}

.nav-links span {
    color: white;
}

.nav-socials {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.social-icon img {
    width: 28px;
}

/*
MARK: HOME PAGE
*/

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

.landing-page {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgb(44, 37, 33, 0.7), rgb(44, 37, 33, 0.7)), 
                url("../imgs/j1crop.JPG") no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-headers {
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-end;
    filter: grayscale(0%);
}

.main-header {
    color: white;
    font-family: 'Domine';
    font-size: 48pt;
    font-style: none;
    color: rgb(201, 119, 52);
}

.sub-header {
    color: white;
    font-family: 'Domine';
}

/*
MARK: MUSIC
*/

.music-page {
    height: 110vh;
}

/*
MARK: ABOUT
*/

.about-page {
    height: 100vh;
    width: 100%;
    background-color: rgb(44, 37, 33);
    display: flex;
    flex-direction: row;

}

.about-text-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    width: 66%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.about-header {
    font-family: 'Domine';
    color: rgb(201, 119, 52);
}

.about-body {
    font-family: 'Domine';
    color: white;
}

.about-pic-container {
    width: 50%;
    display:flex;
    align-items: center;
    justify-content: center;
}

.about-pic {
    width: 80%;
    clip-path: circle(38% at 40%);
    margin-left: 33%;
}