/*--------------------------------------*/
/* BASIC SETUP */
/*By <a href="//commons.wikimedia.org/wiki/User:Taxiarchos228" title="User:Taxiarchos228">Taxiarchos228</a> - <span class="int-own-work" lang="en">Own work</span>, <a href="http://creativecommons.org/licenses/by/3.0" title="Creative Commons Attribution 3.0">CC BY 3.0</a>, https://commons.wikimedia.org/w/index.php?curid=22553573*/

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

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 20px 0;
    
}

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

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #000;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
    text-align: center;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
    text-align: center;
    vertical-align: middle;
    /*display: inline-flex;*/
}

.writings-title {
    font-weight: bold;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #e67e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

/* PARAGRAPHS */
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

/* ICONS */
.icon-big {
    font-size: 350%;
    display: block;
    color: #e67e22;
    margin-bottom: 10px;
}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #e67e22;
    font-size: 120%;
    margin-right: 10PX;
    
    /*align text and icons*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}

.ion-chevron-left {
    float: left;
}

.ion-chevron-right {
    float: right;
}

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

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/landscape.jpg);
    /*the linear gradient lets you apply a tint over the background image, 
    darkening the image to make text more visible on top*/
    background-size: cover;
    background-position: center;
    height: 100vh;
    /*100vh allows the image to cover the entire browser viewport*/
    background-attachment: fixed;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*transfom with the translate modifer allows you to move the element left(-)-right(+) and up(-)-down(+)*/
}

.hero-text-box h1 {
    color: #fff;
    text-align: left;
}

.logo {
    height: auto;
    width: auto;
    float: left;
    margin-top: 20px;
}

/* Main nav */

.main-nav {
    float: right;
    list-style: none;
    margin-top: 30px;
}

.main-nav li,
.work-nav li {
    display: inline-block;
    margin-left: 30px;
}

.main-nav li a:link,
.main-nav li a:visited,
.work-nav li a:link,
.work-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    /*changes the text to all uppercase*/
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
    /*this creates a smooth transition between the border-bottom property found in the link or visited state vs. the hover or active state that takes 0.2s*/
}

.main-nav li a:hover,
.main-nav li a:active,
.work-nav li a:hover,
.work-nav li a:active {
    border-bottom: 2px solid #e67e22;
}

.work-nav {
    float: right;
    list-style: none;
    margin-top: 12px;
    opacity: 0;
    animation-duration: 1s;
}

.work-nav.animated {
    opacity: 1;
}

/* Mobile nav */
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/* Sticky nav */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 5px #e3e3e3;
    z-index: 9999;
}

.sticky-short {
    height: 55px;
}

.sticky-tall {
    height: 95px;
}

.sticky .main-nav { margin-top: 18px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited,
.sticky .work-nav li a:link,
.sticky .work-nav li a:visited {
    padding: 8px 0;
    color: #555;
}

.sticky .logo { margin-top: 10px; }
/*.sticky .logo-black { display: block; }*/

/*--------------------------------------*/
/* BOOKS */

/*.section-books {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/library.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
}*/

.text-box {
    /*background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 5px 5px #f4f4f4;*/
}

.image-box {
    /*background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 5px 5px #f4f4f4;*/
    text-align: center;
}

.image-box img {
    width: 90%;
    max-width: 250px;
}

/*--------------------------------------*/
/* PLAYS */

/*.section-plays {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/broadway_posters.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
}*/

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

footer {
    background-color: #333;
    padding: 50px;
    font-size: 100%;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li: last-child,
.social-links li: last-child {
    display: inline-block;
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.footer p a:link,
.footer p a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #fff;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active,
.footer p a:hover,
.footer p a:active {
    color: #ddd;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 160%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-twitter:hover {
    color: #00aced;
}

.ion-social-googleplus:hover {
    color: #dd4b39;
}

.ion-social-linkedin:hover {
    color: #007bb5;
}

.social-links li a:link,
.social-links li a:visited {
    
}

footer p {
    color: #fff;
    text-align: center;

}

/*--------------------------------------*/
/* Magnific Popup */

/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
	padding: 0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
	top: 0;
	bottom: 0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
	padding: 0;
}

.image-source-link {
	color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out; 
	-moz-transition: all 0.3s ease-out; 
	-o-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

/* Left and right arrow for galleries 
.zoom-gallery:before {
    content: '<i class="">';
}*/
.gallery_description {
    margin-top: 30px;
}