/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    color: #526066;
}

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

p {
    line-height: 1.6em;
}


/*
 * -- Layout Styles --
 */
.l-content {
    margin: 0 auto;
}

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


/*
 * -- 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:url('http://jankeweb.com/images/grass-background-repeat-6.png');
    background-attachment: fixed;
    text-align: center;

    height: 200px;
    width: 100%;
    margin-bottom: 0em;
    display: table;
}

    .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
 */
 .product-tables,
 .information {
    max-width: 980px;
    margin: 0 auto;
 }
.product-tables {
    margin-bottom: 3.125em;
    text-align: center;
}

/*
 * -- PRICING TABLE  --
 * Every pricing table has the .product-table class
 */
.product-table {
    border: 1px solid #ddd;
    margin: 2em 0.5em 2em;
    max-width:300px;
    padding: 0;
}

.product-header-lw {
height:300px;
background-image: url("http://jankeweb.com/images/linkywink_square_300.png");
background-repeat: no-repeat;
background-size: contain;
}

.product-header-ich {
height:300px;
background-image: url("http://jankeweb.com/images/ich_300.png");
background-repeat: no-repeat;
background-size: contain;
}

.product-header-stadiography {
height:300px;
background-image: url("http://jankeweb.com/images/stadiography_square_300.png");
background-repeat: no-repeat;
background-size: contain;
}

.product-header-bf {
height:300px;
background-image: url("http://jankeweb.com/images/bf_300.png");
background-repeat: no-repeat;
background-size: contain;
}

.product-header-thepult {
height:300px;
background-image: url("http://jankeweb.com/images/thepult_square_300.png");
background-repeat: no-repeat;
background-size: contain;
}

/*
 * -- PRICING TABLE LIST --
 * Each pricing table has a <ul> which is denoted by the .product-table-list class
 */
.product-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
 */
.product-table-list li {
    padding: 0.4em 0;
    background: #ffffff;
    border-bottom: 1px solid #e7e7e7;
}

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

.product-link a {
color:#526066;
text-decoration:none;
}

/*
 * -- 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;
}

.footer {
    background:url('http://jankeweb.com/images/grass-background-repeat-6.png');
    background-attachment: fixed;
    color: #fff;
    font-weight:bold;
    text-align: center;
}
    .footer a {
        color: #fff;
        font-weight:bold;
    }



/*
 * -- 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;
        height: 150px;
    }
    .product-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: 320px) {
    .banner {
        height: 100px;
    }
    .banner-head {
        font-size: 3em;
    }
}
