/*---------------------- global-ish --------------------------*/
:root{
    --font-1:'Lucida Sans Unicode', 'Verdana';
    --font-2:'Libre Baskerville', 'Palintino Linotype';
    --color-1:#dedede;
    --color-2:#d6c7b8;
    --color-3:#a4a5a6;
    --color-4: #424949;
}
html{
    font-size: 62.5%;
}
body{
    background-color: var(--color-2);
    font-size: 62.5%;
    margin: 0px;
}
.hide{
    display: none;
}
p{
    font-family: var(--font-1);
    font-size: 1.5rem;
    display: inline-block;
    color: var(--color-4);
}
.subtitle{
    font-family: var(--font-1);
    font-size: 3.25rem;
    text-align: center;
    padding-top: 2.5rem;
    color: var(--color-4);
}
.subtitle2{
    font-family: var(--font-1);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-4);
    margin-bottom: 0;
}
a:link{
    Color:var(--color-4);
    text-decoration: none;
}
a:visited{
    Color:var(--color-4);
    text-decoration: none;
}
a:hover{
    Color:var(--color-3);
    text-decoration: none;
}
#title-top a{
    color: var(--color-4);
}
img{
    max-width: 100%;
    height: auto;
}
#content-wrapper{
    background-color: var(--color-1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#content{
    width: 82%;
    padding-bottom: 8%;
}
/*--------------------- mobile ------------------------*/
.mobile-flex{
    display: flex;
    flex-direction: column;
}
.desktop-flex{
    display: flex;
    flex-direction: row;
}
.desktop-flexr{
    display: flex;
    flex-direction: row-reverse;
}
/*--------------------- containers -----------------------*/
.container1{
    align-items: center;
    justify-content: space-between;
}
.container1 > div{
    padding: 1.25rem;
    justify-content: center;
}
.container1r{
    align-items: center;
    justify-content: space-between;
}
.container1r > div{
    padding: 1.25rem;
    justify-content: center;
}
.container2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.container3{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.container3 > div{
    padding: 1.25rem;
    justify-content: center;
    width: 100%;
}
.container4{
    padding: 1.25rem;
    display: block;
}
/*------------------- contact form ----------------------*/
#hello{
    text-align: left;
    display: none;
}
label{
    display: inline;
    width: 100%;
    margin-top: .75%;
    margin-bottom: .75%;
    font-family: var(--font-1);
    font-size: 1.5rem;
    display: inline-block;
    color: var(--color-4);
}
label.half{
    display: inline;
    width: 49%;
    margin-top: .75%;
    margin-bottom: .75%;
    font-family: var(--font-1);
    font-size: 1.5rem;
    display: inline-block;
    color: var(--color-4);
}
input[type="text"]{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical;
    display: inline;
}
input[type="text"].half{
    width: 49.5%;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical;
}
textarea{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical;
}
select{
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 2.5%;
    border: 1px solid #ccc;
    color: var(--color-4);
    border-radius: 3px;
}
button{
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 2%;
    background-color: var(--color-4);
    color: var(--color-1);
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
#hideform{
    font-family: var(--font-1);
    font-size: 1.5rem;
    display: none;
    color: var(--color-4);
    text-align: center;
}
/*--------------------- navigation ----------------------*/
#navigation{
    display: flex;
    justify-content: right;
    font-family: var(--font-1);
    font-size: 1.5rem;
}
nav{
    width: 100%;
}
#nav-icon-box{
    display: flex;
    flex-direction: row;
    justify-content: right;
    padding-right: 1%;
}
#nav-icon{
    padding: 1%;
}
#nav-items{
    padding: 1%;
}
#nav-items > *{
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}
#nav-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--color-1);
}
#title-top.mobile{
    padding-top: 5%;
    padding-bottom: 5%;
}
#nav-wrapper.mobile-menu{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: rgba(239, 239, 239, 0.92);  
}
#nav-wrapper.mobile-menu a{
    padding-bottom: 6%;
}
#nav-wrapper.mobile-menu #hide-button{
    padding-bottom: 6%;
}
#hide-button{
    display: none;
    color: var(--color-4);
}
.mobile a{
    display: block;
}
.mobile #hide-button{
    display: block;
}
.mobile-menu{
    font-size: 1.75rem;
    width: 100%;
}
#title-top{
    width: 33%;
    line-height: 1.1;
    color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2%;
}
#t1-top{
    font-family: var(--font-1);
    font-size: 2.75vw;
    text-align: center; 
}
#t2-top{
    font-family: var(--font-2);
    font-size: 1.375vw;
    text-align: center;
}
/*---------------------- footer -----------------------*/
#footer-wrapper{
    background-color: var(--color-3);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#footer{
    width: 82%;
    display: flex;
    flex-direction: column;
    padding-top: 3%;
    padding-bottom: 2%;
    color: var(--color-1);
    background-color: var(--color-3);
}
#footer a:link{
    Color:var(--color-1);
    text-decoration: none;
}
#footer a:visited{
    Color:var(--color-1);
    text-decoration: none;
}
#footer a:hover{
    Color:var(--color-1);
    text-decoration: none;
}
#footer > div{
    padding-bottom: 5.75%;
    color: var(--color-1);
}
#footer-icons{
    display: flex;
    justify-content: center;
    padding-bottom: 1%;
}
#social-icons{
    display: flex;
    justify-content: center;
    padding-bottom: 1%;
}
.icon{
    display: inline;
    max-width: 50px;
    padding: 2.5px;
}
#up{
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: var(--font-1);
    font-size: 1.5rem;
    padding-bottom: 1rem;
}
#footer-menu a{
    width:33%;
    text-align: center;
    font-size: 1.5rem;
}
#footer-menu{
    display: flex;
    justify-content: space-around;
    font-family: var(--font-1);
}
#copyright{
    text-align: center;
    font-family: var(--font-1);
    font-size: 1.25rem;
}
/*---------------------- main title --------------------------*/
#title-box{
    width: 100%;
    height: 100%;
    text-align: center;
}
#title{
    z-index: 0;
    color: var(--color-1);
    width:100%;
    line-height: 1.1;
}
#vector{
    width: 375px;
    max-width: 575px;
    z-index: -1;
}
#rectangle{
    background-color: var(--color-3);
    z-index: -2;
    height: 42.5%;
    width: 75%;
}
#t1{
    font-family: var(--font-1);
    font-size: 5.5vw;
    text-align: center;
}
#t2{
    font-family: var(--font-2);
    font-size: 2.75vw;
    text-align: center;
}

/*--------------------------- home -----------------------------*/
.headshot{
    min-width: 33%;
    max-width: 32.5rem;
    height: auto;
    justify-content: center;
}
.menubox{
    position: relative;
    max-width: 550px;
    padding: 1%;
    padding: 1.25rem;
    justify-content: space-between;
    flex-grow: 1;
    width: 250px;
    min-width: 40%;
}
.menubox:hover .overlaybox{
    visibility: visible;
    opacity: 1;
}
.menubox:hover .overlaybox_text{
    transform: translateY(0);
}
.showfeature .overlaybox{
    visibility: visible;
    opacity: 1;
}
.showfeature .overlaybox_text{
    transform: translateY(0);
}
#featurenav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.overlaybox{
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(237, 237, 237, 0.6);
    text-align: justify;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.overlaybox_text{
    transition: .2s;
    transform: translateY(1em);
    font-size: 2.85rem;
}
/*---------------------------- services ----------------------------*/
.services-img{
    max-width: 30rem;
    height: auto;
    justify-content: center;
}
/*-------------------------- performances --------------------------*/
.card{
    font-family: var(--font-1);
    font-size: 1.5rem;
    display: inline-block;
    color: var(--color-4);
}
/*----------------------------- music -----------------------------*/
.soundcloud{
    padding: 1.25rem;
    justify-content: space-between;
    flex-grow: 1;
    width: 250px;
    min-width: 40%;
}
/*----------------------------- connect -----------------------------*/
#connect-text{
    text-align: center;
}
/*--------------------------- media player ---------------------------*/
.play-controls{
    display: flex;
    justify-content: center;
    padding-bottom: 1%;
}