/* Sharon Rousseau Photography - Static Site Styles */

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Raleway", sans-serif;
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    margin: 0;
}

/* --- Typography --- */

h1, h2, h3, h4, h5, h6, p, a {
    font-family: "Raleway", sans-serif;
}

h1 {
    text-transform: uppercase;
    margin: 0.67em 0;
    font-size: 16px;
    font-weight: normal;
    border-bottom: thin solid #222;
}

h2 {
    font-size: 14px;
    margin: 0.83em 0;
    text-transform: uppercase;
    font-weight: normal;
}

h3 {
    font-size: 1em;
    margin: 1em 0;
    font-weight: normal;
    text-transform: uppercase;
}

p {
    margin: 6px 0;
    font-size: 14px;
}

a {
    color: #222;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

/* --- Fixed Header / Nav --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background-color: #333;
    height: 45px;
}

nav {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    height: 45px;
    position: relative;
    z-index: 9999;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 45px;
}

nav ul li a {
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    padding: 0 40px 0 10px;
    letter-spacing: 1px;
}

nav ul li a:hover {
    opacity: 0.7;
}

/* --- Content Area --- */

#content {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    padding: 0 15px 60px;
}

#content h1 {
    margin-bottom: 26px;
}

#content h2 {
    color: #222;
    text-decoration: none;
    font-size: 2.6em;
}

/* --- Blog Posts --- */

.post {
    margin-bottom: 60px;
}

.post .entry-content img {
    margin-bottom: 40px;
    max-width: 100%;
    height: auto;
    display: block;
}

.post .entry-content p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.post .entry-content a {
    color: #222;
}

/* --- Contact Form --- */

#contact-sharon {
    width: 400px;
    max-width: 100%;
    margin-top: 20px;
}

#contact-sharon input {
    width: 100%;
    clear: both;
    margin: 9px 0;
    font-size: 16px;
    padding: 13px;
    box-sizing: border-box;
    text-transform: none;
    font-family: "Raleway", sans-serif;
    border: 1px solid #ccc;
}

#contact-sharon textarea {
    clear: both;
    margin: 16px 0;
    font-size: 16px;
    width: 100%;
    text-transform: none;
    padding: 13px;
    border: solid 1px #ccc;
    box-sizing: border-box;
    min-height: 200px;
    font-family: "Raleway", sans-serif;
    resize: vertical;
}

#contact-sharon #send {
    font-size: 14px;
    padding: 7px;
    background-color: #222;
    border: none;
    color: #fff;
    margin-bottom: 0;
    width: 200px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
}

#contact-sharon #send:hover {
    background-color: #444;
}

/* --- Fixed Footer --- */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 21px;
    padding: 2px 0;
    background: #222;
    z-index: 100;
}

#foot_wrap {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    text-align: right;
    padding: 0 15px;
}

footer a {
    color: #fff;
    float: right;
    font-size: 12px;
    margin-left: 20px;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}

footer a:hover {
    opacity: 0.7;
}

/* --- Images --- */

img {
    border: 0;
    vertical-align: middle;
}

/* --- Responsive --- */

@media (max-width: 768px) {
    nav {
        padding: 0 15px;
    }
    nav ul li a {
        padding: 0 15px 0 5px;
        font-size: 11px;
    }
    #content {
        margin-top: 60px;
    }
    #contact-sharon {
        width: 100%;
    }
}

/* --- Print --- */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    header, footer {
        position: static;
    }
    #content {
        margin-top: 0;
    }
}
