/* custom variables created here */
:root {
    --trim-color: rgb(247, 230, 174);
    --bg-color: rgb(175, 193, 253);
    --text-color: rgb(51, 41, 38);
  }
/* p= large font, for text and buttons */
p {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 600;
    font-style: normal;
    padding-left: 2%;
    padding-right: 2%;
    color: var(--text-color);
    font-size: large;
}
/* p2= small font for captions*/
p2 {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 600;
    font-style: normal;
    padding-left: 2%;
    padding-right: 2%;
    color: var(--text-color);
}
/* p3= x-large font (rarely use)*/
p3 {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 600;
    font-style: normal;
    padding-left: 2%;
    padding-right: 2%;
    color: var(--text-color);
    font-size: x-large;
}
/* general */
body{
    margin: 0px;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    background-size: contain;
}
img{
    max-width: 100vw;
}
/*MENU*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav{
    background-color: var(--trim-color);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.486);
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 800;
    font-size:x-large;
    font-style: normal;
}
nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color:var(--text-color)
}
nav a:hover{
    background-color:rgb(253, 184, 105);
}
/*hamburger*/
.hamburger{
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    z-index: 999;
    background-color: var(--trim-color);
    box-shadow: 3px 3px 5px rgb(0.5, 0.5, 0.5, 0.5);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.hamburger li{
    width: 100%;
}

.hamburger a{
    width:100%;
}
.menuButton{
    display: none;
}


/* GALLERIES for murals, paintings, archive*/
#gallery{
    width: 100%;
}

#gallery img{
    width: 47%;
    padding: 1.5%;
}

#gallery img:hover{
    filter: drop-shadow(0px 0px 10px rgb(45, 46, 110))
}

#main_artwork {
    position: relative;
}


/* makes sidebar invisible unclickable when desktop */
.hamburger{
    opacity: 0;
    pointer-events: none;
}

/* GALLERY FOR HOMEPAGE: TOP WORKS SLIDESHOW*/
#slides img{
    position: relative;
}
#slides {
    padding: 0;
    margin: 0;
}
#slides * {
    padding: 0;
    margin: 0;
}


/* SLIDESHOW BUTTONS*/

.slideshow_buttons {
    width: auto;
    height: 20vh;
    display: flex;
    position: fixed;
    top: 50vh;
    cursor: pointer;

}

#next_slide{
}

#prev_slide{
    left: 0;
}

/* for about, contact*/
.headerpic{
    max-width: 96vw;
    margin: 2vw;
}

.block{
    font-size: xx-large;
    color: var(--text-color);
}


#tag{
    position: absolute;
    width: 20vw;
    right: 3vw;
    top: 8vh;
}


#gallery2{
    width: 100%;
}

#gallery2 img{
    width: 100%;
    padding: 1.5%;
}

#gallery2 img:hover{
    filter: drop-shadow(0px 0px 10px rgb(45, 46, 110))
}

.container{
    position: relative;       
    display: inline-block;
    width: 47%;
    padding: 1.5%;
}
.container img{
    height: 50vh;
    object-fit: cover;
    width: 100%;
}
.headline{
    position: absolute;
    color: var(--text-color);
    background-color: var(--trim-color);
    vertical-align: middle;
    top: 20%;
    left: 0;          
    font-size: xx-large;
    pointer-events: none;
    margin: 1.75%;
    padding: 0.75%;
}



/* For Mobile */
@media(max-width: 990px){
    .hamburger{
        opacity: 100;
        pointer-events: auto;
    }
    .hideOnMobile{
        display: none;
    }
    .menuButton{
        display: block;
    }  
    #gallery img{
        width: 96%;
        padding: 2%;
    }
    .container{
        width: 96%;
        padding: 1%;
    }

}