:root {
	--kendal_charcoal: #686662;
	--caliente: #852928;
	--sunflower_fields: #f5ad50;
	--sunflower_fields_a: #f5ad5090;
	--light_sunflower_fields: #F5D2A4;
	--light_sunflower_fields_a: #F5D2A490;

	--pale-greyblue: #ddedf0;
	--primary-colour: #C4391D;
	--outline-colour: white;
	--complimentary-colour: #1DA8C4;
	--pri-palette-one: #F0E2D3;
	--pri-palette-two: #F59E71;
	--pri-palette-three: #F57174;
	--pri-palette-three-lighter: #E58083;
	--pri-palette-four: #F5C871;
	--pri-palette-five: #F5D3C2;
	--home-font: Vidaloka, 'Bodoni Moda', 'PT Serif';


	--primary-colour: var(--caliente);
	--pri-palette-one: var(--light_sunflower_fields);
	--pri-palette-one-a: var(--light_sunflower_fields_a);
	--pri-palette-three: #F57174;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Verdana sans-serif;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: var(--pri-palette-one);
	color: var(--primary-colour);
}

a:active, a:link, a:visited, a:hover {
	text-decoration: none;
}
a:hover {
	transform: translateX(5px);
}

header_spacer {
	height: 90px;
	display: none;
}

.container {
	display: flex;
	flex-direction: row;
}
.spacer {
	flex: 1;
}

.section {
	/* padding-top: 7px; */
}
.section .content {
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.section h2 {
	align-self: flex-start;
	margin-bottom: 1rem;
}
.section p {
	max-width: 900px;
}

.section_break {
	padding-top: 20px;
	padding-bottom: 7px;
	max-width: 1400px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	
}
.section_break .red {
	background-color: var(--primary-colour);
}
.section_break .clear {
	background-color: var(--pri-palette-one);
}
.section_break .thin {
	height: 15px;
}
.section_break .thick {
	height: 33px;
}

.section_spacer {
	margin-top: 35px;
}


/* Top Banner */
.banner {
	display: flex;
	flex-direction: row;
	background: linear-gradient(135deg, var(--pri-palette-three) 0%, var(--primary-colour) 100%);
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	color: white;
	padding: 1rem 2rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	text-align: center;
	justify-content: space-between;
}
.banner a:active, .banner a:link, .banner a:visited, .banner a:hover {
	color: white;
}

.banner .reservations {
	display: flex;
	flex-direction: row;
}
@media screen and (max-width: 1000px) {
	.banner .reservations {
		display: flex;
		flex-direction: column;
	}
	.section_spacer {
		margin-top: 71px;
		margin-bottom: 20px;
	}
}

.banner .reservations .details {
	display: flex;
	flex-direction: column;
}

.banner .reservations h2 {
	margin-right: 15px;
}

.banner h1 {
	font-size: 2rem;
	font-weight: 600;
}
.banner h2 {
	font-size: 1.5rem;
	font-weight: 600;
}
.banner h3 {
	font-size: 1rem;
	font-weight: 600;
}

/* Main Layout */
#main {
	padding: 2rem;
	overflow-y: auto;
	align-items: stretch;
	display: flex;
	flex-direction: column;
}

.section h3 {
	line-height: 1.6;
	margin-bottom: 1rem;
}
.section p {
	line-height: 1.6;
	margin-bottom: 1rem;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 123px;
}

.topnav {
	/* background-color: #f8f9fa; */
	background-color: var(--pri-palette-one);
	overflow: hidden;
	padding: 0.5rem;
	/* border-left: 1px solid #e9ecef; */
	border-left: 1px solid var(--pri-palette-one);
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: #495057;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	transition: all 0.2s ease;
}

/* Change the color of links on hover */
.topnav a:hover {
	/* background-color: #667eea; */
	background-color: var(--primary-colour);
	color: white;
	transform: translateX(5px);
}

/* Add an active class to highlight the current page */
.topnav a.active {
	/* background-color: #667eea; */
	background-color: var(--pri-palette-three);
	color: white;
}

.topnav a.active:hover {
	/* background-color: #5b6ddb; */
	background-color: var(--primary-colour);
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

@media screen and (max-width: 784px) {
	/*.topnav a:not(:first-child) {display: none;}*/
	.topnav a:not(.active) {display: none;}
	.topnav a.icon {
		float: right;
		display: block;
	}
}
@media screen and (max-width: 784px) {
	.topnav.showmenu {position: relative;}
	.topnav.showmenu a.icon {
		position: absolute;
		right: 0.5rem;
		top: 0.5rem;
	}
	.topnav.showmenu a {
		float: none;
		display: block;
		text-align: left;
	}
}

#home {
	padding-top: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#home .content {
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url("house.jpg") no-repeat fixed center;
	/* background-color: rgba(255, 255, 255, 0.6); */
	background-color: var(--pri-palette-one-a);
	background-blend-mode: lighten;
	/* opacity: 0.5; */
}

#home div h1 {
	color: var(--primary-colour);
	font-size: 80pt;
	text-align: center;
	font-family: var(--home-font);
	margin: 30px;
	max-width: 600px;
}
#home div h2 {
	color: var(--primary-colour);
	font-size: 48pt;
	text-align: center;
	font-family: var(--home-font);
	margin: 30px;
}
#home div h3 {
	color: var(--primary-colour);
	font-size: 18pt;
	text-align: center;
	margin: 30px;
	max-width: 700px;
}

#find a:link, #find a:visited, #find a:hover, #find a:active {
	color: var(--primary-colour);
}
#find .reservations {
	display: flex;
	flex-direction: row;
}
#find .reservations .details {
	margin-left: 15px;
	display: flex;
	flex-direction: column;
}
#find .reservations .details p {
	margin-bottom: 5px;
}

#bruce .bruce_trail {
	display: flex;
	flex-direction: row;
}

#bruce .bruce_trail .left {
	display: flex;
	flex-direction: column;
	max-width: 300px;
	margin-top: 30px;
}
#bruce .bruce_trail .right {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
}

#outdoors p {
	padding-top: 20px;
}
#outdoors .content div .content {
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}


#outdoors .bike_shops .left {
	display: flex;
	flex-direction: column;
	max-width: 300px;
}
#outdoors .bike_shops .right {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	max-width: 300px;
}
#outdoors .bike_shops .right .intro {
	font-style: italic;
}
#outdoors .bike_shops .right .blurb {
	font-size: 10pt;
	text-align: center;
}

#local h3 {
	margin: 1rem;
}
#local p {
	margin: .1rem;
}
#local .flow {
	display: flex;
	flex-wrap: wrap;
}
#local .address {
	margin: 1rem;
	min-width: 300px;
}
#local .address p:first-child { font-weight: bold;}

#local a:active, #local a:link, #local a:visited, #local a:hover {
	color: var(--primary-colour);
}

.row > .column {
  padding: 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}
.column img {
	width: 200px;
	height: 200px;
	object-fit: cover;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
