/* CSS Document */

/* Reset
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, 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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* Layout */
html {
    height: 100%;
}
body {
    font-family: Montserrat, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
    color: #333;
}
div#top-nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
}
nav, article {
    max-width: 960px;
    margin: 0 auto;
}
nav {
    padding: 1em 2em;
}
article {
    padding: 2em;
}
header {
    height: 400px;
    background: url("img/blumen.jpg") no-repeat bottom center;
    background-size: cover;
}
section:nth-child(3n+1),
footer {
    background-color: #e0e2cf;
}
section:nth-child(3n+2) {
    background-color: #f0edc8;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 0.5em;
}
h1 {
    font-size: 2em;
    color: #808f1c;
}
h2 {
    font-size: 1.75em;
    color: #808f1c;
}
h3 {
    font-size: 1.5em;
    margin-top: 1.5em;
}
h4 {
    font-size: 1.25em;
    margin-top: 1.25em;
}
p {
    margin: 1em 0;
}

ul {
    list-style: square;
    margin-left: 1em;
}
ol {
    list-style: decimal;
    margin-left: 1.3em;
}
ol.list-alpha {
    list-style: lower-alpha;
    margin-left: 1.3em;
}
li {
    margin: 0.5em 0;
}
th {
    text-align: left;
    font-weight: 500;
    padding: 0.15em 0.3em 0.15em 0;
}
td {
    padding: 0.15em 0.1em;
}
strong {
    font-weight: 500;
}
a {
    color: #777;
}
a.tel {
    text-decoration: none;
    color: #808f1c;
}
nav a {
    text-decoration: none;
    margin-right: 1em;
    color: #808f1c;
}
a.tel:hover, a.tel:focus, a.tel:active,
nav a:hover, nav a:focus, nav a:active {
    text-decoration: underline;
    color: #7f8b09;
}


