/* 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;
}
/* MY STYLE RULES START HERE*/

body{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    color:black;
    background-color: #ffffff;
    margin: 20px 20px 10px 20px;
    padding:40px 20px 10px 20px;
    line-height:2;
}
h1{
    font-family: "Rock 3D", serif;
    font-weight: 400;
    font-style: oblique;      
    font-size: 38px;
    text-align: left;
	margin: 10px 20px 10px 0;
    padding:5px 20px 10px 0;
}
h2{
    font-family: Helvetica, Arial, sans-serif;
    font-weight:400;
    font-style: normal;
	font-size: 20px;
    text-align: left;
	margin: 10px 10px 10px 0;
    padding:10px 20px 10px 0;
	text-transform: lowercase;
	text-decoration: underline;
}
h3{
	font-family: Helvetica, Arial, sans-serif;
    font-weight:400;
    font-style: normal;
	font-size: 20px;
    text-align: left;
	margin: 10px 10px 10px 0;
    padding:10px 20px 10px 0;
	text-transform: lowercase;
	text-decoration: none;
}
nav ul li a{
    text-decoration:none;
    color:rgb(35, 35, 35);
    text-decoration-line: none;
    display: inline;
}
nav a {
    color: black; /* Default color */
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}
header nav a:hover {
    color: #d19b06;
    background-color: #ffffff;
}
li{
    text-decoration:none;
    color:rgb(35, 35, 35);
    text-decoration-line: none;
	display:inline;
	text-align: left;
	padding: 0px 20px 20px 0px;
	text-transform: lowercase;
}
figure a{
	text-decoration: none;
	color:#000000;
}
footer{
	width: 100%;
	background-color: #d19b06;
	padding: 10px 0 0px 10px;
}
 
/* menu toggle */
input[type="checkbox"]#menu-toggle {
	opacity: 0;
	position: absolute;
}
label.toggle {
	display: inline-block;
	width: auto;
	margin: 0;
	position: relative;
	padding-top: 10px;
	text-transform: uppercase;
	font-size: 1.2em;
	line-height: 1;
}
nav label.toggle:hover, nav label.toggle:active, nav label.toggle:focus-visible {
	cursor: pointer;
}
/* visual focus */
nav .toggle::before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
}
/* show/hide menu */
input[type="checkbox"]#menu-toggle + label.toggle + ul {
	display: none;
}
input[type="checkbox"]#menu-toggle:checked + label.toggle + ul {
	display: block;
}
/* 3 lined toggle vis  */
label.toggle strong {
	position: absolute;
	display: block;
	width: 80vw;
	top: 12px;
	left: calc(6vw + 42px);
}
label.toggle:hover strong {
	color: #fff;
}
label.toggle [class*='line-'] {
	background: #d19b06;
	display: block;
	border-radius: 3px;
	height: 3px;
	width: 26px;
	margin: 0 0 6px 6vw;
	transform: rotate(0deg);
	transition: .2s ease all;
}
label.toggle:hover [class*='line-'] {
	background: #000000;
}
input[type="checkbox"]#menu-toggle:checked + label.toggle .line-top {
	transform: rotate(45deg);
	transform-origin: 0 0;
}
input[type="checkbox"]#menu-toggle:checked + label.toggle .line-mid {
	opacity: 0;
}
input[type="checkbox"]#menu-toggle:checked + label.toggle .line-bot {
	transform: rotate(-45deg);
	transform-origin: 0 90%;
}
/*image & grid styling*/
.row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}
  
  /* Create two equal columns that sits next to each other */
.box{
    display:flex;
    padding:20px 2px 20px 2px;
    margin:20px 10px 20px 10px;
    justify-content:left;
}
.block-1{
    text-align:left;
 }
img {
    float:left;
    width:100%;
    height:auto;
    padding:1em 1em 1em 0;
}

@media (min-width: 520px) {	
    /* show/hide menu */	
        input[type="checkbox"]#menu-toggle + label.toggle + ul, input[type="checkbox"]#menu-toggle:checked + label.toggle + ul {
            display: block;
        }	
        input[type="checkbox"]#menu-toggle + label.toggle, input[type="checkbox"]#menu-toggle:checked + label.toggle {
            display: none;
        }	
		.img-grid{
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: auto auto;
			max-width:1300px;
			margin: 0 auto;
		}
	}