: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;
}

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: 620px;
}

h1 {
	font-size: 2em;
	line-height: 1em;
	padding: 1em 8px;
}

h2 {
	font-size: 1.625em;
	line-height: 1.15384615em;
	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 {
	background-color: var(--background-header);
	text-align: right;
	position: sticky;
	top: 0;
}

.responsive-nav .hamburger {
	font-size: 1.5em;
	color: var(--text-header);
	background-color:
		transparent;
	cursor: pointer;
	border: none;

}

.responsive-nav .nav-items {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.responsive-nav li {
	padding: 0.5em;
}

.responsive-nav a {
	text-decoration: none;
	color: var(--text-header);
}

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);
}

section.gallery {
	text-align: center;
}

section.gallery img {
	width: 88%;
	height: auto;
	margin: 0.5em auto;
}

section.gallery h2 {
	text-align: left;
	padding-bottom: 0;
}

footer {
	text-align: center;
	font-size: .75em;
	color: var(--background-footer);
}

/*elements that i added to hide in mobile view*/
.hidden_slash {
	display: none;/*for the nav*/
}

br {
	display:none;/*for the title*/
}

/* ADD STYLING BELOW FOR MEDIUM & LARGE LAYOUTS */



/*ipad or meduim responsive design starts here*/

@media (min-width: 48rem) {
	* {
	font-size: 1.3rem;
}
	div.wrapper {
		font-size: 1em;
		min-width: 48rem;
		max-width: none;
		width: 95%;
		margin: 0 auto;
	}

	h1 {
		font-size: 2em;
		line-height: normal;
	}

	h2 {
		font-size: 1.625em;
		line-height: normal;
		padding: 5px;
	}

	.responsive-nav {
		text-align: left;
		position: sticky;
		top: 0;
	}

	.tours {
		grid-area: tours;
	}

	.participants {
		grid-area: participants;
	}

	.equipment {
		grid-area: equipment;
	}

	.firstgrid {
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-areas: 
		"tours participants"
		"tours equipment";
		gap: 20px;
	}


	.tours,
	.participants,
	.equipment {
		width: 100%;
	}

	p {
		font-size: .7em;
	}

	section.gallery {
		text-align: center;
		width: 100%;
	}

	.images{
		display:grid;
		grid-template-columns: 1fr 1fr;
	}

	.first_qoute {
		grid-area: first;
		padding-left: .5em;
		padding-right: .5em;
	}

	.second_quote {
		grid-area: second;
		padding-left: .5em;
		padding-right: .5em;
	}

	.third_quote {
		grid-area: third;
		padding-left: .5em;
		padding-right: .5em;
	}

	blockquote {
		font-size: 1em;
		padding: .8em;
	}

	.testimonials h2 {
		padding-left: .5em;
		padding-right: .5em;
	}

	footer {
		padding-top: 1.5em;
	}

	.responsive-nav .hamburger {
		display: none;
	}

	.responsive-nav .nav-items {
		font-size: .7em;
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.swapping {
		display: flex;/*this was the method i used to put the nav below the title*/
		flex-direction: column-reverse;
	}

	.hidden_slash {
		/*the slash for the nav bar*/
		display: unset;
		color: white;
	}

	.first_column {
		grid-area: line1;
	}

	.second_column {
		grid-area: line2;
	}

	.first_column,
	.second_column {
		padding: 1em;
		line-height: 1em;

	}

	.list_split {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "line1 line2";
	}

	.list_split li {
		font-size: .7em;
	}

	.break {
		display: unset;
	}

	h1 {
		font-size: 2em;
		line-height: 1em;
		padding: 15px;
	}
}

/*desktop responsive design starts here*/
/*i copied and pasted what i did in the medium sized but change the grid of the sections and the grid of the images*/


@media (min-width: 64rem) {
	* {
	font-size: 1.3rem;
}
	div.wrapper {
		font-size: 1em;
		min-width: 64rem;
		max-width: none;
		width: 95%;
		margin: 0 auto;
	}

	h1 {
		font-size: 2em;
		line-height: normal;
	}

	h2 {
		font-size: 1.625em;
		line-height: normal;
		padding: 5px;
	}

	.responsive-nav {
		text-align: left;
		position: sticky;
		top: 0;
	}

	.tours {
		grid-area: tours;
	}

	.participants {
		grid-area: participants;
	}

	.equipment {
		grid-area: equipment;
	}

	.firstgrid {
		display: grid;
		grid-template-columns: 1fr 1fr 2fr;
		grid-template-areas: "tours participants equipment";
		margin-left: .3em;
		margin-right: .3em;
	}

	.tours,
	.participants,
	.equipment {
		width: 100%;
		padding: .3em;
	}

	p {
		font-size: .7em;
	}



	section.gallery h2 {
		padding-left: .5em;
		padding-right: .5em;
	}
	section.gallery {
		text-align: center;
		width: 100%;
	}

	.images{
		display:grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	}


	.quotes {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-areas: "first second third";
		margin-left: 1em;
		margin-right: 1em;
	}

	.first_qoute {
		grid-area: first;
		padding-left: .5em;
		padding-right: .5em;
	}

	.second_quote {
		grid-area: second;
		padding-left: .5em;
		padding-right: .5em;
	}

	.third_quote {
		grid-area: third;
		padding-left: .5em;
		padding-right: .5em;
	}

	blockquote {
		font-size: 1em;
	}

	.testimonials h2 {
		padding-left: .5em;
		padding-right: .5em;
	}

	footer {
		padding-top: 1.5em;
	}

	.responsive-nav .hamburger {
		display: none;
	}

	.responsive-nav .nav-items {
		font-size: .7em;
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.swapping {
		display: flex;
		flex-direction: column-reverse;
	}

	.hidden_slash {
		display: unset;
		color: white;
	}

	.first_column {
		grid-area: line1;
	}

	.second_column {
		grid-area: line2;
	}

	.first_column,
	.second_column {
		padding: 1em;
		line-height: 1em;

	}

	.list_split {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "line1 line2";
	}

	.list_split li {
		font-size: .7em;
	}

	.break {
		display: unset;
	}

	h1 {
		font-size: 2em;
		line-height: 1em;
		padding: 15px;
	}
}
