/* 
    Authors: Oakley Wysote Rain Gray, Ross Douglas Campbell
    Created: January 29th, 2021
    For: Entire Website Styling
*/

/* ----- Normilization ----- */

body,
html{
    margin: 0;
    padding: 0;

    font-family: 'Karla', sans-serif;
    background-color: #ffffff;
}

/* ----- Pre-Loader ----- */

.hidden {
    display:none;
}

.visible {
    display:block;
    position:absolute;
    top:0;left:0;
}

/* ----- Navbar ----- */

.navBar{
    padding: 1rem;
    display: grid;
    text-align: center;
    grid-template-columns: auto auto;
    position: fixed;
    top: 0;
    width: 100%;
    background: none;

    color: #e41414;
    transition: 0.5s;
}

.navLogo{
    height: 2rem;
    float: left;
    padding-right: 0.5rem;
}

.navTitle {
    margin: 0;
    text-align: left;

    font-family: 'Poppins', sans-serif;
}

.navTitle a{
    text-decoration: none;

    color: #e41414;
}

.navLinks{
    padding-right: 2rem;
}

.navLinks a,
.navLinks a:visited{
    margin-top: .5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: right;
    float: right;

    color: #e41414;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

.navLinks a:hover {
    text-decoration: none;
}

.navLinks a:after {
  display:block;
  content: '';
  border-bottom: solid 2px #e41414;  
  transform: scaleX(0);  
  transition: transform 0.15s ease-in-out;
}
.navLinks a:hover:after { transform: scaleX(1); }
.navLinks a.fromRight:after{ transform-origin:100% 50%; }
.navLinks a.fromLeft:after{  transform-origin:  0% 50%; }

.navActiveLink {
    font-weight: bolder;
    color: #e41414;
}

.spacer {
    display: block;
    height: 3rem;
}

/* ----- Hero Image ----- */

.heroimage{
    background-image: url("../img/hero.png");
    /*  background-color: #ffffff; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

/* ----- Card Object ----- */

.card{
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0rem 0rem 1rem rgb(226, 217, 217);
}

.card h2{
    font-family: 'Poppins', sans-serif;
    color: #e41414;
    margin: 0.25rem;
}

/* ----- Grid Objects ----- */

.gap{
    display: grid;
    gap: 2rem;
    padding:2rem;
    padding-bottom: 0rem;
}

.sideBySide{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* ----- Styling Individual Elements ----- */

h1{
    color: #e41414;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 0;
}

blockquote{
    margin-left: 2rem;
    padding: 0.5rem;
    border-left: #e41414 5px solid;
}

blockquote .fas{
    color: #e41414;
}

.quoteTitle{
    font-family: 'Poppins', sans-serif;
    color: #e41414;
}

.block{
    display: grid;
    grid-template-columns: auto auto;
}

/* ----- Footer ----- */

.footer{
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    
    background-color: #f3f3f3;
}

.footerText{
    color: #e41414;
    text-transform: uppercase;
    font-weight: bold;
}

.footerButton{
    padding: 0.25rem;
    height: 2rem;
    width: 2rem;
    margin: 0.5rem;
    border:1px #e41414 solid;
    background-color: none;
    color: #e41414;
    border-radius: 2rem;

    transition: 0.5s;
}

.footerButton:hover{
    color: #000000;
    border:1px #000000 solid;
}

/* ----- Media Queries ----- */

@media  only  screen and (max-width: 800px) {
    .navLinks a,
    .navLinks a:visited{
        padding: 0.5rem;
        border-right:none;
    }

    #pageTitleText{
        display: none;
    }

    .gallery{
        grid-template-columns: auto auto;
    }

    .block{
        grid-template-columns: auto;
    }

    #artistPicture{
        margin-left: auto;
        margin-right: auto;
    }
}

.galleryItemButton{
    border: none;
    padding: 0.25rem;
    border-radius: 10rem;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    background-color: #aaaaaa;
    transition: 0.55s;
    outline: none;
}

.galleryItemButton:hover{
    background-color: #e41414;
    box-shadow: 0rem 0rem 1rem rgb(226, 217, 217);
}

@media  only  screen and (max-width: 765px) {
    .pageLinks a,
    .pageLinks a:visited{
        padding: 0.5rem;
        border-right:none;
    }

    #pageTitleText{
        display: none;
    }

    .gallery{
        grid-template-columns: auto;
    }

    .block{
        grid-template-columns: auto;
    }

    #artistPicture{
        margin-left: auto;
        margin-right: auto;
    }
}

