@charset "UTF-8";
/* CSS Document */

/* -------------------------------- BASICS */
body {
	width: 100%;
	max-width: 2560px;
    font-size: 15px;
}
#PageContainer, #PageFooter {
	width: 100%;
    max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
    padding: 0px;
    box-sizing: border-box;
    padding-top: 5em;
}
/* -------------------------------------------------- NAV */
nav {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-direction: row;
    padding: 1em;
    width: 100%;
    max-width: 1500px;
    transform: translateX(-50%);
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
}
    nav a {
        position: relative;
        color: #000000;
        z-index: 10;
        margin: 1em 2.6em 2em;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        font-size: 0.9em;
    }
        nav .pip {
            position: absolute;
            left: 50%;
            top: 200%;
            transform: translate(-50%, -50%);
            display: none;
            border: 1px solid rgba(255,255,255,0.5);
        }
.section-home .nav-home .pip,
.section-about .nav-about .pip,
.section-studio .nav-studio .pip,
.section-contact .nav-contact .pip {
    display: inline;
}
    #Burger {
        position: absolute;
        left: 100%;
        top: 0;
        display: none;
        background-color: rgba(255,255,255,0.8);
        font-size: 1.5em;
        padding: 0.6em;
        box-sizing: border-box;
    }
p, h1, h2 {
    margin: 1em 0;
    line-height: 1.5em;
}
h1, h2 {
    color: #ad8261;
    text-transform: uppercase;
}
#Gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1500px;
    padding: 6px;
    color: #ad8261;
    box-sizing: border-box;
}
    #Gallery .title-column {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
    }
        #Gallery .title-box {
            background-color: #414042;
            text-align: center;
            box-sizing: border-box;
            margin: 6px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding: 15% 2%;
            font-weight: 300;
        }
            #Gallery .title {
                text-transform: uppercase;
                letter-spacing: .5em;
            }
            #Gallery .pip {
            }
            #Gallery .location,
            #Gallery .dates {
                text-transform: uppercase;
                letter-spacing: 0.3em;
                font-size: 0.9em;
            }
            #Gallery .dates {
                text-transform: uppercase;
            }
            #Gallery img {
                box-sizing: border-box;
                border: 6px solid transparent;
                object-fit: cover;
            }
        #Gallery .title-image {
            width: 100%;
            object-fit: cover;
        }
        #Gallery .statement-box {
            background-color: #414042;
            color: #ffffff;
            box-sizing: border-box;
            margin: 6px;
            padding: 2em;
        }
            #Gallery .statement {
                color: #ad8261;
                font-size: 1.25em;
            }

/* -------------------------------- MISCELLANY */
.full-width {
	width: 100%;
}
.limited-width {
	width: 100%;
	max-width: 1000px;
}
.hilight {
    color: #ad8261;
}
.icon {
    vertical-align: -0.3em;
    width: 1.2em;
}

