/* CSS for Chris and Suzanne */

/*--------------------------------------------------------------
    Reset
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
    -webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
    -moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
    box-sizing:         border-box;
}

body {
    background: #fff; /* Fallback for when background image doesn't load. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}

/*--------------------------------------------------------------
    Basic Styles
--------------------------------------------------------------*/

html,
button,
input,
select,
textarea {
    color: #fefefe; /* Font color */
    font-family: 'Lato', sans-serif;
}

html {
    font-size: 1em; /* Font sizing */
    line-height: 1.45; /* Line spacing */
}

body {
    background: url(images/suzy-bg-640.jpg) no-repeat top center fixed; /* Specifies phone sized background image */
    -webkit-background-size: cover; 
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; /* Easy, progressive CSS3 way */
}

hr { 
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc; /* Control line styling here */
    margin: 1em 0; /* Horiz line spacing */
    padding: 0;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

a {
    text-decoration: none;
    font-weight: 700;
    color: rgba(254, 254, 254, .95);
    border-bottom: 2px solid rgba(254, 254, 254, .95);
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

a:hover,
a:focus {
    color: rgba(17, 17, 17, 0.9);
    border-color: rgba(254, 254, 254, .95);
    background-color: rgba(254, 254, 254, .95);
}

.browsehappy { /* Style for a warning to IE8 and lower users to upgrade */
    margin: 0.2em 0;
    color: #000;
    background: #ccc;
    padding: 1em 0;
}

.site-header {
    padding: 0.5em;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.site-header a {
    color: #fefefe;
    border-bottom: none;
}

.site-header a:hover,
.site-header a:focus {
    color: #eee;
    background: transparent;
}

.site-title,
.site-resume h1 {
    margin-bottom: 0.25em;
    font-size: 1.25em;
}

.site-resume h2 {
    margin-bottom: 0.25em;
    font-size: 1.1em;
}

.site-nav {
}

.menu-item {
    display: inline-block;
}

.menu-icon {
    margin-right: 4px;
}

/* Spacing based on four menu items to keep menu centered */
.menu-item {
    margin-right: 1em;
}

.menu-item:last-child { /*Targets last menu item */
    margin-right: 0;
}

.go-back {
    text-align: center;
}

.site-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
    background: rgba(0, 0, 0, 0.9);
    font-size: 1.2em;

    /* Rounded corners for the box */
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.content-close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.content-title {
    font-size: 1.5em;
}

.content-copy {
    padding: 1em;
}

.content-copy p {
    margin-bottom: 0.5em;
}

.site-headshots .content-copy {
    text-align: center;
}

.content-headshot {
    margin: 0 auto 1em;
}

.site-contact,
.site-headshots,
.site-reel {
    display: none;
}

.vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.site-resume {
    width: 96%;
    max-width: 1300px;
    margin: 1em auto;
    padding: 2%;
    color: #111;
    background-color: #fff;
    font-size: 90%;

    /* Rounded corners for the box */
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.site-resume table {
    width: 100%;
    margin-bottom: 2em;
}

.site-resume td {
    width: 33%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
}

.site-resume blockquote {
    margin: 2em 0;
    font-size: 1.1em;
    font-style: italic;
}

.resume-link { 
    margin: 1em auto;
    font-size: 1.25em;
    text-align: center; 
}

.resume-link a {
    color: #000;
}

/*--------------------------------------------------------------
    Clearfixin'
--------------------------------------------------------------*/

.site-header:after,
.site-content:after {
    content: "."; 
    visibility: hidden; 
    display: block; 
    height: 0; 
    clear: both;
}

/*--------------------------------------------------------------
    Media Queries
--------------------------------------------------------------*/

@media only screen and (min-width: 620px) {
    /* This is how we're going to size up for tablets. */
    body {
        background: url(images/suzy-bg-910.jpg) no-repeat top center fixed; /* Specifies tablet sized background image */
    }

    .content-headshot {
        margin: 0 0 1em;
        max-width: 48%;
    }

    .left {
        float: left;
    }

    .right {
        float: right;
    }
}

@media only screen and (min-width: 712px) {
    .site-header {
        padding: 0.8em;
        font-size: 1.3em;
    }

    .site-title {
        float: left;
        margin: 0;
        font-size: 1em;
    }

    .site-nav {
        float: right;
    }

    .menu-item {
        margin: 0 0 0 1em;
    }

    .site-resume {
        font-size: 100%;
    }
}

@media only screen and (min-width: 900px) {
    /* This is how we're going to size up for desktop. */
    body {
        background: url(images/suzy-bg-1440.jpg) no-repeat top center fixed; /* Specifies desktop sized background image */
    }

    .site-content {
        font-size: 1.5em;
    }

    .content-copy {
        padding: 2em;
    }

    .content-headshot {
        margin: 0 0 1.5em;
    }
}

@media only screen and (min-width: 1440px) {
    /* This is how we're going to size up for huge screens and TVs. */
    body {
        background: url(images/suzy-bg-1680.jpg) no-repeat top center fixed; /* Specifies TV sized background image */
    }
}


/*--------------------------------------------------------------
    Print styles
--------------------------------------------------------------*/
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* And whatever else we need */
}