/* reset browser styles */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
ol { 
	padding-left: 1.4em;
	list-style: decimal;
}
ul {
	padding-left: 1.4em;
	list-style: square;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*small screens first*/
/*box-sizing: https://css-tricks.com/box-sizing/ */
html {
    box-sizing: border-box;
    color:#2E2E2E;
    background-color: #FFF;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: Arial, Verdana, sans-serif;
}

#container {
    min-width:225px;
    margin: 0 auto;
    background-color: #FFF;
}

header {
    height: 55px;
    background:black;
    color:#DCDCDC;
    font-size:1.2em;
    padding: 10px;
}

header p {
    float:left;
    line-height:2;
    padding-left: 15px;
}

.btn-menu{
    float:right;
    background-color:black;
    border:none;
    outline:none;
    clear:right;
}

.btn-menu:hover{
    background-color:#373737;
}

.nav-box {
    display:none;
    position:relative;
    margin-top:45px;
    margin-right:-15px;
    margin-left:-15px;
    width:110%;
    background-color:black;
}

.nav-box ul {
    list-style: none;
    margin:0;
    padding:15px;
}
.nav-box a {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    margin-left:-15px;
    display: block;
    text-decoration: none;
    color: #F0F0F0;    
}

.nav-box a:hover {
    background-color:#C9BEAC;
    color: #000;
}

.nav-box a:active {
    background-color:#6B5F58;
    color: #D0CBCD;    
    padding-left: 15px;
}

.btn {
    text-decoration:none;
    border-radius: 5px;
    padding:5px;
    font-size: .75em;
    color:#000;
    border:thin solid #000;
}

a.btn:hover {
    background-color:#6B5F58;
    color: #FFF;
    border:thin solid #FFF;
}

.bkg-home {
    background-image: url(../images/eclairs2.jpg);
}

.bkg-contact {
    background-image: url(../images/cookie_stand_small.jpg);
}

.bkg-products {
    background-image: url(../images/hero_cookie2.jpg);
}


.parallax {
    /* Set a specific height, if needed 
    min-height: 250px; 
    */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.full-width {
    width: 100%;
    margin: 0 auto;
    margin-bottom:5px;
    text-align: center;
}

.hero-content {
    min-height: 300px;
    color:#FFF;
}

.hero-content h1 {
    font-size: 2.5em;
    font-weight:normal;
    text-shadow: 1px 2px 1px rgba(0,0,0,0.2);
    padding-top: 50px;
    padding-bottom: 20px;
}


.hero-content .btn {
    color:#F0F0F0;
    border:thin solid #F0F0F0;
}



.info-box {
    padding: 15px;
}

.info-box h2 {
    font-size: 1.75em;
    font-weight:normal;
    padding-bottom:5px;
}

.info-box p {
    font-size:1em;
    padding-bottom: 20px;
}

.info-box img {
    border-radius: 5px;
    max-width: 100%;
    text-align: center;
}

.more-content {
    font-size: 1.15em;
    color:#000;
    padding: 5%;
    text-align: center;
    line-height:2;
    background-image: url(../images/cake2.jpg);
} 

footer {
    padding: 20px 5px;
    text-align: center;
}

/*mid size screens*/
@media screen and (min-width:926px) {

    #menu_btn {
        display:none;
    }

    .nav-box {
        margin:0;
        display:inline;
    }

    .nav-box nav {
        display:inline; 
        text-align:right;
    }

    .nav-box ul {
        padding: 0;
        line-height: 2;
    }
    .nav-box li {
        display: inline;
        padding: 0 5px;
    } 

    .nav-box a {
        padding: 15px;
        display: inline;
        text-decoration: none;
        color: #F0F0F0;    
    }


    .hero-content h1 {
        font-size: 3.5em;
        padding-top: 50px;
        
    }

    .row {
        padding: 0 0 0 20px;
    }

    .info-box {
        /*creates 2 columns across*/
        display:inline-block;
        vertical-align: top;
        width:45%;
        padding: 0;
    }

    .more-content {
        font-size: 1.25em;
    }
}

/*larger screens*/
@media screen and (min-width:1200px) {

    html {
        background-color: #a06331;
    }

    #container {
		max-width:1200px;
    }
    
    .hero-content, .row {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 50px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 4em;
    }

    .info-box {
        /*creates 3 columns across*/
        display:inline-block;
        vertical-align: top;
        width:33%;
        padding-right: 20px;
    }

    .row {
        padding-right: 10px;
    } 

}
