/*
Light Gray: #cccccc
Yellow: #edda00
Dark Gray: #181818



*/

/* ---------------------------------------------------------- */
/* BASIC SETUP */
/* ---------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html  {
    background-color: #181818;
    color: #ccc;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 300px;
    text-rendering: optimizeLegibility;
    -ms-overflow-style: scrollbar;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

body.is-loading *, body.is-loading *:before, body.is-loading *:after {
    -moz-animation: none !important;
    -webkit-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}




/* ---------------------------------------------------------- */
/* REUSABLE COMPONENTS */
/* ---------------------------------------------------------- */

section {
    padding: 0px 0px;
}



/*--------HEADINGS-------*/
h1,
h2,
h3  {
    font-weight: 600;
    text-transform: uppercase;
    
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #edda00;
    font-size: 350%;
    word-spacing: 4px;    
    letter-spacing: 1px;

}

h2 {
    font-size: 130%;
    word-spacing: 2px;
    text-align: left;
    margin-bottom: 10px;    
    letter-spacing: 1px;
	color: #181818;

}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}


/*--------PARAGRAPHS-------*/
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    padding-bottom: 20px;
	color: #181818;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/*--------LINKS-------*/
a:link,
a:visited {
    color: #888;
    text-decoration: none;
    padding-bottom: 1px;
}

a:hover,
a:active {
    color: #555;
    text-decoration: none;
}

/* ---------------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------------- */

.topquote {
	width: 75%;
	text-align: center;
	font-family: 'Caveat', cursive;
	font-size: 200%;
	padding-top: 30px;
	padding-bottom: 30px;
}


header {
    background-image: url("");
    background-size: cover;
    background-position: center;
    height: 600px;

}

.logo-box {
    width: 100%;
    float: left;
}



.logo {
    width: 50%;
    padding-top: 30px;
}


/* ---------------------------------------------------------- */
/* ABOUT */
/* ---------------------------------------------------------- */
#about {
	padding: 25px;
}

#about p {
	font-size: 160%;
}

/*-------------------------------------------------------*/
/* Gallery */
/*-------------------------------------------------------*/

#galleries h2 {
	color: #edda00;
}

@-moz-keyframes gallery {
    100% {opacity: 1;}
}

@-webkit-keyframes gallery {
    100% {opacity: 1;}
}

@-ms-keyframes gallery {
    100% {opacity: 1;}
}

@keyframes gallery {
    100% {opacity: 1;}
}

.gallery {
    padding: 3.5em;
    position: relative;
    overflow: hidden;
    min-height: 37em;
    background-color: #181818;
}

.gallery header {
    display: -ms-flexbox;
    -ms-flex-pack: justify;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

.gallery header.special {
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.gallery footer {
    text-align: center;
    margin-top: 4em;
}

.gallery .content {
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: -moz-flex-start;
    -webkit-justify-content: -webkit-flex-start;
    -ms-justify-content: -ms-flex-start;
    justify-content: flex-start;
}

.gallery .content .media {
    -moz-animation: gallery 0.75s ease-out 0.4s forwards;
    -webkit-animation: gallery 0.75s ease-out 0.4s forwards;
    -ms-animation: gallery 0.75s ease-out 0.4s forwards;
    animation: gallery 0.75s ease-out 0.4s forwards;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;
    position: relative;
    width: 25%;
}

.gallery .content .media a {
    display: block;
}

.gallery .content .media img {
    -moz-transition: -moz-transform 0.2s ease-in-out;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    -ms-transition: -ms-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.gallery .content .media:hover img {
    -moz-transform: scale(1.075);
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075);
}


/* STORE */
/* ---------------------------------------------------------- */

#store {
	padding-: 25px;
	background-color: #181818;
}



/* ---------------------------------------------------------- */
/* CONTACT */
/* ---------------------------------------------------------- */

#contact {
	padding: 25px;
	background-color: #edda00;
}

/* ---------------------------------------------------------- */
/* ORDER */
/* ---------------------------------------------------------- */

#order {
	padding: 25px;
	background-color: #edda00;
}


/* ---------------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------------- */

footer p {
    padding: 10px;
    font-size: 50%;
    text-align: center;
}


