:root {
	--text-default: #000;
	--text-header: #FFF;
	--background-default: #1A2B1C;
	--background-wrapper: #FFF;
	--background-header: #153902;
	--background-footer: #8E8E8E;
}

/* MOBILE FIRST STYLING */

h1,
h2,
h3,
h4,
body,
blockquote,
p,
main,
section,
section,
header,
footer,
img {
	margin: 0;
	padding: 0;
	font: inherit;
	font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial, "sans-serif";
}

body {
	font-size: 100%;
	background-color: var(--background-default);
}

div.wrapper {
	width: 95%;
	background: var(--background-wrapper);
	color: var(--text-default);
	margin: 0 auto;
	font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial, "sans-serif";
	font-size: 1em;
	line-height: 1.25em;
	min-width: 320px;
	max-width: 1550px;
}

h1 {
	font-size: 2em;
	line-height: 1em;
	padding: 1em 8px;
}

h2 {
	font-size: 1.625em;
	line-height: 1.15384615em;
	padding: 5px;
}

h3 {
	font-size: 1.375em;
	line-height: 1.13636364em;
	padding: 5px;
}

h4 {
	font-size: 1.125em;
	line-height: 1.11111111em;
	padding: 5px;
}

blockquote {
	font-size: 1.25em;
	font-style: italic;
	font-family: Baskerville, Palatino Linotype, Palatino, Century Schoolbook L, Times New Roman, serif;
	line-height: 1.25em;
	margin: 5px 20px;
}

p {
	font-size: 1em;
	line-height: 1.25em;
	padding: 5px;
}

ul {
	margin-left: .75em;
}



.responsive-nav .nav-items {
	background-color: red;
	list-style: none;
	padding: 0;
	display: none;
}

.responsive-nav .nav-items a {
	text-decoration: none;
	color: white;
}

.responsive-nav button {
	border: none;
	background-color: transparent;
	color: white;
	font-size: 1.5em;
}

.desktop-nav {
	display: none;
}

.desktop-nav ul {
	background-color: black;
	list-style: none;
	padding: 0;
	display: flex;
	margin: auto;

}

.desktop-nav ul li {
	padding: 0.5em;
}

.desktop-nav ul a {
	text-decoration: none;
	color: white;
}

.desktop-nav ul a:hover {
	text-decoration: none;
	color: salmon;
	background-color: white;
}


header {
	color: var(--text-header);
	background: url("../images/background-dew-on-grass.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-color: var(--background-header);
}

.content {
	display: grid;
	grid-template-columns: 1fr;
}

section.gallery {
	text-align: center;
}

section.gallery img {
	width: 88%;
	height: auto;
	margin: 0.5em auto;
	display: grid;
	grid-template-columns: 1fr;
}

section.gallery h2 {
	text-align: left;
	padding-bottom: 0;
}

section.testimonials quotes {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1em;
	line-height: 1.5em;

}

footer {
	text-align: center;
	font-size: .75em;
	color: var(--background-footer);
}

/* ADD STYLING BELOW FOR MEDIUM & LARGE LAYOUTS */

/* Tablet? - Screen is larger than 780px */
@media screen and (min-width: 600px) {
	header h1 {
		font-size: 3.6rem;
	}

	.content {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	section.tours {
		grid-row: 1 / 3;
	}

	/* section.equipment {
		grid-column-start: 2;
	} */



	div.images {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	nav.desktop-nav {
		display: block;
	}

	nav.responsive-nav {
		display: none;
	}
}

/* Tablet? - Screen is larger than 1024px */
@media screen and (min-width: 1024px) {
	header h1 {
		font-size: 6rem;
	}

	.content {
		display: grid;
		/* grid-template-columns: 1fr 1fr 1fr; */
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 10px;
	}

	div.images {
		display: grid;
		/* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
		grid-template-columns: repeat(6, 1fr);

	}

	.quotes {
		display: grid;
		/* grid-template-columns: 1fr 1fr 1fr; */
		grid-template-columns: repeat(3, 1fr);
	}
}