/* --- Fonts ---
font-family: 'Cabin', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Merienda', cursive; */

/* --- Colors ---
Gold #EFBB2E 
Gray #3b3a3a
Black #131313*/


body {
	font-family: 'Cabin', sans-serif;
	color: #f8f2f2;
	font-size: 100%;
	font-size: 1.3rem;
	line-height: 1.5;
	background-image: url(../img/leather_tile.jpg);
	}

/* --- Responsive Sidebar navigation adapted from W3.CSS Templates --- */
.w3-bar-block {
	display: flex;
	justify-content: left;
	padding-top: 80px;
	display:none;
	z-index:2;
	width:20%;
	min-width:300px
}

.w3-bar-item {
	padding:8px ;
	width:auto;
	border:none;
	display:block;
	outline:0;
	width:100%;
	white-space:normal;
	font-size: 24px;  /*  Menu items font size  */
}

.w3-bar {
	width:100%;
	overflow:hidden
}

.w3-top,
.w3-bottom {
	position:fixed;
	width:100%;
	z-index:1
	}

.w3-top {
	top:0;
	font-size: 48px;  /* Hamburger bars size */
}

.w3-card {
	box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
}

.w3-sidebar {
	height:100%;
	width:200px;
	background-color:#fff;
	position:fixed!important;
	z-index:1;
	overflow:auto;
}

.w3-animate-left {
	position:relative;
	animation:animateleft 0.4s;
}

@keyframes animateleft { from {left:-300px;opacity:0} to{left:0;opacity:1}}
/* The @keyframes CSS at-rule controls the intermediate steps in a CSS animation
sequence by defining styles for keyframes (or waypoints) along the animation
sequence. */ 

.w3-button {
	border:none;
	display:inline-block;
	padding:8px 16px;
	vertical-align:middle;
	overflow:hidden;
	text-decoration:none;
	color:inherit;
	background-color:inherit;
	text-align:center;
	cursor:pointer;
	white-space:nowrap}

.w3-button {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none} 

.w3-button:disabled {
	cursor:not-allowed;
	opacity:0.3
}

/* --- Typographical Scales --- */

 /* Viewport is the browser window size. 1vw = 1% of viewport width. */
header h1 { /* 64px is 3.333%  of 1920px */
	font-size: 3.333vw;
	font-weight: 900;
	color:#000000 ;
}

header h2 { /* 40px is 2.083%  of 1920px */
	font-size: 2.083vw;
	color: #000000;
	line-height: 1.2;
} 

h2 {font-size: 5.55vw;}
  
h3 {font-size:6.66vw;}
  
h1, h2, h3 {
	font-family: 'Lato', sans-serif;
	color: #EFBB2E;
	text-align:center;
}

main h2, main h3 {
	line-height: 1;
	margin: 40px 0; 
}

p {
	margin-bottom: 1.1rem;
}

/* --- Navigation --- */

nav {
	background-color: #fff;
	width: 100%;
}

.w3-bar-item:link, .w3-bar-item:visited {
	color:#335A8F;
	text-decoration: none;
}

.w3-bar-item:hover, .w3-bar-item:active {
	color: #333;
	text-decoration: underline;
}

header {
	margin-top: 80px;  /* Space for the nav on page load */
}

/*  Places the content image in the bg with the headings on top  */
.header-bg-wrap {
  	overflow: hidden;
  	position: relative;
}

.header-bg-image {
  	/* opacity: 0.25; */
  	/*The opacity property specifies the opacity/transparency of an element.*/
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
}

.header-content {
	height: 100px;
	/* height: 46.296vh; */
	 /* Roughly 500px of 1080px high screen */
 	position: relative;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
	/* padding-left: 15%; */
	/* background-color: rgba(0,0,0, 0.3); */
  }

.text-container {
    text-align: center;
}
/*  --- Yellow Duct Tape Area --- */

 .dates-container{
	position: relative;
 }

.dates-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.dates-content {
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	}

.dates-content h2 { 
	color: #000000;
	text-shadow: 1px 1px 2px rgb(58, 58, 58);
}

.dates-content a {
	text-align: center;
	width: 30%;
	font-size: 2.083vw;
	padding: .5rem .5rem;
	border: 2px solid #000;
	border-radius: 10px;
	text-decoration: none;
	text-shadow: 1px 1px 2px rgb(58, 58, 58);
	}
}

.dates-content a:link,
.dates-content a:visited {
	background-color: #EFBB2E;
}

.dates-content a:hover,
.dates-content a:active {
	background-color:#f8f2f2 ;
	color:#333;
}

main {
	width: 90%;
	margin: 0 auto;
} 

main article, .bg-container {
	width: 71%;
	margin: 20px auto;
	}

main,
article {
	padding-top: 20px;
	overflow: hidden;
}

.content {
	margin-left: auto;
 	margin-right: auto;
  	width: 80%;
}

.strong {
	font-weight: 700;
}

article img {
	border: none;
	-webkit-box-shadow: 3px 3px 7px #777;
	-moz-box-shadow: 3px 3px 7px #777;
}

.image-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.full-width-container {
	width: 100%;
	padding: 1rem;
	background-color: rgba(255,255,255, 0.3);
	-webkit-box-shadow: 3px 3px 7px rgb(223, 221, 221);
	-moz-box-shadow: 3px 3px 7px rgb(223, 221, 221);
	}

.lonely-p {
	text-align: center;
	margin: 1rem 0;
}

ol {
	padding: 1rem;
}	

.accommodation-left li,
.accommodation-right li {
	list-style-type: none;
	margin-bottom: 1rem;
}

.accommodation-right  {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;

}

.accommodation-right li:last-child {
	margin-top: 2rem;
	font-size: .8rem;
}	

.call-to-action:link,
.call-to-action:visited {
	color: #EFBB2E;
	border: 2px solid #efbb2e;
	border-radius: 8px;
	padding: 6px;
	text-decoration: none;
}

.call-to-action:hover,
.call-to-action:active {
	color:#ffffff;
	border: 2px solid #ffffff;
	
}

.bottom-content h3 {
	font-size: 4.444vw ;
}

footer {
	padding: 40px 0;
	margin-top: 24px;
	background-color: #EFBB2E;  /*--- Color will pass Color Contrast Analyzer ---*/
}

footer ol {
	font-size: 3.333vw;
	text-align: center;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}

footer ol li {
	margin: 10px;
	display: block;
	/*Makes the li selectable up the to the edge of the margins*/
}

footer a:link, a:visited {
	color:#131313;
	text-decoration: none;
}

footer a:hover, a:active {
	color: #3b3a3a;
	text-decoration: underline;
}

/* -- Code for the Cookie Compliance popover window -- */

#cookiePopup {

	background-color: #EFBB2E;
	position: absolute;
	left: 5%;
	bottom: 0;
	width: 90%;
	z-index: 500;
	box-shadow: 0 0 2em rgba(240, 240, 243, 0.15);
	font-family: "Poppins", sans-serif;
	text-align: justify;
	line-height: 1.8em;
	margin: 0 auto;
	padding: 2em 1.4em;
	border: 2px solid #000;
	border-radius: 6px;
	transition: all 0.5s ease-in-out;
  }

  #cookiePopup p {
	text-align: center;
	margin: 1.4em 0;
	color: #131313;
 }

  #cookiePopup button {
	background-color:#f5e1aa ;
	border: none;
	color: #131313;
	font-size: 1.2em;
	padding: 1em 1.4em;
	display: block;
	position: relative;
	margin: auto;
	border-radius: 5px;
	cursor: pointer ;
  }

  #cookiePopup a {
	color:#000000;
  }

  .hide {
	visibility: hidden;
  }

  .show {
	visibility: visible;
   }
  /* -- End of Code for the Cookie Compliance popover window -- */

/* --- Start of media queries --- */

@media only screen and  (min-width:500px) {

  .accommodation-right li:last-child {
	font-size: 1.3rem;
}	
}


@media only screen and  (min-width:900px) {

.header-content {
		height: 46.296vh; /* Roughly 500px of 1080px high screen */
}

nav {
 		width: 40%;
 }

.dates-content h2 { 
	text-shadow: 3px 3px 6px rgb(58, 58, 58);
}

h3 {
	font-size: 2.222vw;
}

.outer-container,
.full-width-container,
.top-content,
.bottom-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.schedule-left {
	width: 30%;
}

.schedule-right {
	display: flex;
	flex-direction: column;
	width: 60%;
}

.inner-container {
	width: 45%;
	margin: 0 auto;
	}

.bottom-content {
	align-items: center;
	justify-content: center;
}

.bottom-content h3 {
	font-size: 3.000vw ;
}
	
.accommodation-left,
.accommodation-right {
	width: 60%;
}

.w3-bar-item {
		font-size: 36px;
	}

footer ol {
	font-size: 2.222vw;
	flex-direction: row;
}	

}

@media only screen and  (min-width:1340px) {

body {
	max-width: 1920px;
	margin: 0 auto;
}
 
 .hamburger-position {
		margin-left: 10%;
	}
}
