/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */

body {
    color: #526066;
    font-family: "Helvetica, Arial, sans";
}

h1 {
    font-family: 'Indie Flower', 'Arial Narrow', serif;
}

h2, h3 {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    line-height: 1.6em;
    font-family: 'Indie Flower', 'Arial Narrow', serif;
}

a {
    color: #26ADE4;
    text-decoration: none;
}

a:visited {
    color: #1E627E;
}

.linktext {
    font-family: 'Indie Flower', 'Arial Narrow', serif;
    font-size: 36px;
    margin-top: 10px;
}

.gradient {
    /* webkit example */
    background-image: -webkit-gradient( linear, right top, left top, from(rgba(255, 255, 255, 1.0)), to(rgba(255, 255, 255, 0)));
    /* mozilla example - FF3.6+ */
    background-image: -moz-linear-gradient( right center, rgba(255, 255, 255, 1.0) 20%, rgba(255, 255, 255, 0) 95%);
    /* IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.gradient( gradientType=1, startColor=0, endColorStr=#FFFFFF);
    /* IE8 uses -ms-filter for whatever reason... */
    -ms-filter: progid:DXImageTransform.Microsoft.gradient( gradientType=1, startColor=0, endColoStr=#FFFFFF);
}

/*
 * -- Layout Styles --
 */

.l-content {
    margin: 0 auto;
}

.l-box {
    padding: 0.5em 2em;
}

/*
 * -- MENU STYLES --
 * Make the menu have a very faint box-shadow.
 */

.pure-menu {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

/*
 * -- BANNER --
 * The top banner with the headings. By using a combination
 * of `display: table;` and `display: table-cell;`, we can
 * vertically center the text.
 */

.banner {
    background: transparent url('/img/sky-web.png') 0 0 no-repeat fixed;
    text-align: center;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://24.media.tumblr.com/ccb268832580ac12951828a1c179de69/tumblr_mo2xbk8JUK1st5lhmo1_1280.jpg', sizingMethod='scale');
    height: 200px;
    width: 100%;
    margin-bottom: 3em;
    display: table;
}

.banner {
    height: 100%;
    overflow: hidden;
    opacity: 1.0;
    -webkit-transition: background-image 1.5s linear;
    -moz-transition: background-image 1.5s linear;
    -o-transition: background-image 1.5s linear;
    -ms-transition: background-image 1.5s linear;
    transition: background-image 1.5s linear;
}

.banner-head {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0;
    font-size: 2em;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 1px black;
}

/*
 * -- PRICING TABLE WRAPPER --
 * This element wraps up all the pricing table elements
 */

.pricing-tables, .information {
    max-width: 980px;
    margin: 0 auto;
}

.pricing-tables {
    margin-bottom: 3.125em;
    text-align: center;
    table-layout: auto;
}

/*
 * -- PRICING TABLE  --
 * Every pricing table has the .pricing-table class
 */

.pricing-table {
    border: 1px solid #ddd;
    margin: 0 0.5em 2em;
    /** apollo: remove bottom padding 0 0 3em;*/
}

/*
 * -- PRICING TABLE HEADER COLORS --
 * Choose a different color based on the type of pricing table.
 */

.pricing-table-free .pricing-table-header {
    background: #519251;
}

.pricing-table-biz .pricing-table-header {
    background: #2c4985;
}

/*
 * -- PRICING TABLE HEADER --
 * By default, a header is black/white, and has some styles for its <h2> name.
 */

.pricing-table-header {
    background: #111;
    color: #fff;
}

.pricing-table-header h2 {
    margin: 0;
    padding-top: 2em;
    font-size: 1em;
    font-weight: normal;
}

/*
 * -- PRICING TABLE PRICE --
 * Styles for the price and the corresponding <span>per month</span>
 */

.pricing-table-price {
    font-size: 6em;
    margin: 0.2em 0 0;
    font-weight: 100;
}

.pricing-table-price span {
    display: block;
    text-transform: uppercase;
    font-size: 0.2em;
    padding-bottom: 2em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    *color: #fff;
}

/*
 * -- PRICING TABLE LIST --
 * Each pricing table has a <ul> which is denoted by the .pricing-table-list class
 */

.pricing-table-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

/*
 * -- PRICING TABLE LIST ELEMENTS --
 * Styles for the individual list elements within each pricing table
 */

.pricing-table-list li {
    padding: 0.8em 0;
    background: #f7f7f7;
    border-bottom: 1px solid #e7e7e7;
    font-size: 16px;
}

.pricing-table-list li:hover {
    background: #fbfbfb;
}

/*
 * -- LINK IMAGES (apollo)
 * Align link images vertically to link text.
 */

.pricing-table-list li img {
    vertical-align: middle
}

.pricing-table-list li a {
    color: #26ADE4;
    text-decoration: none;
}

.pricing-table-list li a:visited {
    color: #1E627E;
    text-decoration: none;
}

.pricing-table-list li a:hover {
    font-weight: bold;
}

/*
 * -- PRICING TABLE BUTTON --
 * Styles for the "Choose" button at the bottom of a pricing table.
 * This inherits from Pure Button.
 */

.button-choose {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    border-radius: 2em;
    font-weight: bold;
    position: relative;
    bottom: -1.5em;
}

.information-head {
    color: black;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.footer {
    background: #111;
    color: #888;
    font-size: 10px;
    text-align: center;
}

.footer a {
    color: #ddd;
}

/*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various pricing tables
 */

@media(min-width: 767px) {
    .banner-head {
        font-size: 4em;
    }
    .pricing-table {
        margin-bottom: 0;
    }
}

/*
 * -- PHONE MEDIA QUERIES --
 * On phones, we want to reduce the height and font-size of the banner further
 */

@media (min-width: 480px) {
    .banner {
        height: 300px;
        /** apollo: default 400px **/
    }
    .banner-head {
        font-size: 3em;
    }
}
