/* style.css prelim for lesson 3 Adrian Benson */

/**********
Pasta Amore correct colors:
Marinara: RBG 207,28,68  HEX CF1C44
Leafy Green:  RGB 11,148,70   HEX 0B9446
Cafe: RGB 124,87,63   HEX 7B573E
Canoli: RBG 216,198,84 HEX D7C5B7
Espresso: RGB: 85,50,55   HEX 543136
Wine: RBG 95,19,18   HEX 5E1211
***********/


/** default page styling **/
body {
    background-color: #5E1211;
    color: #D7C5B7;
    padding-top: 20px;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Klinic Slab Light";
    font-size: 1.2em;
}

/* Set up to use Style guide preferred font */
@font-face {
    font-family: "Klinic Slab Light";
    src: url("../fonts/klinicslablight.otf");
}

@font-face {
    font-family: "Klinic Slab Bold";
    src: url("../fonts/klinicslabbold.otf");
}

/** anchor tag syling.  Use Pasta Amore's 
 ** palette vs. default blue/purple **/
a {
    color: #0B9446;
}

a:visited {
    color: #D7C5B7;
}

a:hover {
    font-weight: bold;
}

/********** home page styles **************/
/** nav styling */
#navigation {
    background-color: #CF1C44;
    font-size: 1.5em;
/*    width: 700px;*/
	height: 45px;
}

#menu-bar {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

#menu-bar li {
    display: inline;
    padding: 10px;
    align-content: center;
}


/** Feature styling **/
section#feature {
    background-color: black;
    background: url('../images/interior3_final.jpg') no-repeat;
    width:inherit;
    height: 720px;
	border: 2px solid #0B9446;
}

section#feature h1, h2{
    text-align: center;
    font-size: 3.5em;
    font-family: "Klinic Slab Bold";
}

section#feature h2 {
    font-size: 2.0em;
    padding-top: 2.0em;    
}

/* home text */
section#home-text {
    background-color: #7B573E;
    padding: 10px;
    float: left;
/*    width: 500px;*/
    width: 455px;
    height: 350px;
    margin-bottom: 20px;
    border: 2px solid #0B9446
}

section#home-text h1 {
    font-family: "Klinic Slab Bold";
    margin-bottom: 1.0em;
}

section#home-text p {
    font-size: 1.1em;
}

/* special offers */
section#offers {
    background-color: #7B573E;
    padding: 10px;
    float: right;
/*    width: 410px;*/
    width: 455px;
    height: 350px;
    margin-bottom: 20px;
    border: 2px solid #0B9446;
}

section#offers h1 {
    font-family: "Klinic Slab Bold";
}

section#offers li {
    padding: 10px;
    font-size: 1.1em;
}

/* footer (may not have one...) */
footer {
    margin-top: 1.0em;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    clear: both;
}

/********** content pages styling ****************/

section#page-text {
    background-color: #7B573E;
    padding: 20px;
    margin-top: 5px;
    border: 2px solid #0B9446;
}

section#page-text h1 {
    font-weight: bold;
}

section#page-text p {
    font-size: 1.1em;
    padding: 5px;
}

/********** menu table ***********/
th {
    text-align: center;
    border: 1px solid #CF1C44;
    background-color: #5E1211;
    padding: 5px;
}

td {
    text-align: center;
    border: 1px solid #0B9446;
    background-color: #543136;
    padding: 5px;
}

table#pizzas {
    margin-bottom: 2em;
}

/* menu images */
.menu-img {
    max-width: 30%;
    margin: 0px auto 15px auto;
    padding-left: 20px;
}

/********** locations ***********/
.hours {
    text-decoration: underline;
}

/********** news image ***********/
#exterior {
    float: right;
    max-height: 25%;
    max-width: 25%;
}




