/**
 * @file style.css
 *
 * Main styles for the Iron Man landing page.
 */


body {
    background: #efefef;
    line-height: 1.4;
}

body,
input,
select,
textarea {
    color: #444;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
}


/**
 * Main site wrapper
 */

.site-wrapper {
    padding: 20px 0;
    max-width: 880px;
    margin: 0 auto;
}


/**
 * H1 and h2
 */

h1 {
    color: #4e0c50;
    font-size: 2.5em;
    text-align: center;
}

h1 span {
    color: #666;
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    font-style: italic;
}

h2 {
    font-size: 2em;
    text-align: center;
}


/**
 * Paragraphs
 */

p {
    margin-bottom: 25px;
}

p.intro {
    font-size: 21px;
}



/**
 * Blockquotes
 */

blockquote {
    margin: 0 0 30px 0;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: inherit;
    font-size: 21px;
    font-weight: 100;
    font-style: italic;
}

blockquote:before,
blockquote:after {
    position: absolute;
    z-index: 1;
    color: rgba(0,0,0,.08);
    font-size: 90px;
    display: block;
    font-family: Georgia,Times New Roman,Bitstream Charter,Times,serif;
    font-style: normal;
    line-height: 1;
    height: 40px;
}

blockquote:before {
    top: 0;
    left: 0;
    content: '\201C';
}

blockquote:after {
    bottom: 0;
    right: 0;
    content: '\201D';
}


/**
 * Hyperlinks
 */

a {
    color: #4e0c50;
}

a:hover {
    color: #a90170;
}


/**
 *
 */

.text-center {
    text-align: center;
}


/**
 * Book cover image
 */

.book-cover {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
    max-width: 40%;
}


/**
 * Video
 */

iframe {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 100%;
}



/**
 * Form
 */

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    border: 1px solid #fff;
    font-weight: 300;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #a90170;
}

textarea {
    padding: 15px;
    height: 150px;
}

input[type="submit"],
button {
    background: #be2a81;
    border: none;
    color: #fff;
    cursor: pointer;
    outline: none;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover,
button:hover {
    background: #e32293;
}

form {
    margin: 0 -10px;
    overflow: hidden;
}

.field {
    float: left;
    width: 25%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.field label {
   display: none;
}

.field .input input,
.field .input textarea {
    width: 100%;
}


/**
 * Callout
 */

.callout {
    background: #2e1631;
    border-radius: 3px;
    padding: 35px 15px;
}

.callout__inner {
    max-width: 880px;
    margin: 0 auto;
}

.callout h2 {
    color: #fff;
    margin-top: 0;
}