/*$brown: #CFAC61;
$light-brown: #D1A281;
$green: #AFC1A8;
$red: #B46246;*/

html {scroll-behavior: smooth;}

body { 
	/*background: url(Bloom.png);*/
	/*background-size: 18%; */
	background: #fff;
	position: relative;
	margin: auto;
	font-family: 'KG Lego House', sans-serif;
	background-color: #fff;
	letter-spacing: 2px;
}

h1 {
	z-index: 5;
    position: relative;
    margin-top: 0;
    text-align: center;
    font-size: 45px;
    font-family: 'KG Lego House', sans-serif;
    color: #fff;
    letter-spacing: 4px;
}

h2, h3, h4 {
  font-family: 'KG Lego House', sans-serif;
}

p, li {
	font-family: 'Arial';
}

a {
	color: #565f52;
}

a:hover {
	color: #B46246;
}



nav {
  height: 75px;
  width: 100%;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 1. Hide the submenu by default */
.sub-menu {
    display: none; /* JavaScript will override this when the menu is open */
    position: absolute;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    background: #fff;
    border: 1px solid #ccc;
}

/* 2. Style the active/open menu */
.sub-menu.open {
    display: block;
}

/* 3. Ensure the parent li is positioned relative */
.dropdown-toggle {
    position: relative;
}

/* 4. Basic button styling to look like a link */
.dropdown-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    padding: 0;
}

.nav-items {
  width: 35%;
  display: flex;
  justify-content: space-around;
}

.features-dropdown {
  position: absolute;
  opacity: 0;
  background-color: #fff;
  padding: 10px;
  color: #333;
  transition: .3s ease-in-out;
  box-shadow: 1px 3px 3px #D9D9D9;
  border-radius: 4px;
}

.features-dropdown.on {
  position: absolute;
  opacity: 1;
  background-color: #fff;
  padding: 10px;
  color: #333;
}

.features-dropdown li {
  margin-top: 10px;
}
.subpage-h1 {
	background: #AFC1A8;
	padding: 20px;
	text-align: left;
}
.container {
	max-width: 1200px; /* max 'width' of contents of site */
	margin: 0 auto; /* centered horizontally  */
}

.nav-bar {
	top: 0;
	width: 100%; /* full width */
	background-color: white;
	height: auto;
}

.nav-bar .container {
	display: flex;
	align-items: center; /* vertically center */
	height: 100%;
}

/* Hide checkbox that controls Mobile Nav Button*/
#drop-down-cbox {
	display: none;
}

/* Mobile Nav Button */
#drop-down-cbox + label {
	position: relative;
	display: none;
	width: 60px;
	height: 60px;
	overflow: hidden;
	background-color: transparent;
	transition: all 300ms ease-in-out;
}

/* Mobile Nav Button Bars */
#drop-down-cbox + label span {
	position: absolute;
	display: block;
	background-color: #AFC1A8;
	width: 34px;
	height: 4px;
	border-radius: 2px;
	left: 50%;
	transform: translate(-50%, -50%); /* centering trick */
	transition: all 300ms ease-in-out;
}

/* Mobile Nav Button Bars Invididually */
#drop-down-cbox + label span:nth-child(1) {
	top: 35%; /* evenly spaced */
}
#drop-down-cbox + label span:nth-child(2) {
	top: 50%; /* evenly spaced */
}
#drop-down-cbox + label span:nth-child(3) {
	top: 65%; /* evenly spaced */
}

/* Mobile Nav Button Styling for Checked */
#drop-down-cbox:checked + label {
	background-color: #AFC1A8;
}

#drop-down-cbox:checked + label span {
	background-color: white;
}

/* Transform the bars into an 'X' */
#drop-down-cbox:checked + label span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg); /* center, then rotate */
}
#drop-down-cbox:checked + label span:nth-child(2) {
	left: -150%; /* move center bar out of the picture */
}
#drop-down-cbox:checked + label span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg); /* center, then rotate */
}

/* Main Nav Desktop */
.main-nav {
	flex-grow: 1; /* fill remaining space */
	display: flex;
	justify-content: space-around; /* evenly space items */
	align-items: center; /* center vertically */
	padding: 0;
}

.main-nav:last-child {
	margin-right: 10px;
}

.main-nav li {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px; /* vertically center text, matches height */
	text-align: center;
	font-family: 'KG Lego House', sans-serif;
}

.button.giftcard-button {
	margin: 5px;
}

.giftcard-button:hover,
.giftcard-button a {
	color: #fff !important;
}
.main-nav li a,
.main-nav li span, .main-nav button {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #D1A281;
	font-weight: bolder;
	letter-spacing: 1px;
}

.main-nav li a:hover,
.main-nav li span:hover, .main-nav button:hover {
	border-bottom: 4px solid #AFC1A8;
}

.main-nav li > ul {
	max-height: 0px; /* max-height instead of height, height can't transition to auto */
	transition: all 500ms ease-in-out;
	overflow: hidden; /* make it so nav doesn't show beyond the 0px max-height */
}

.main-nav li:hover > ul {
	max-height: 180px; /* height x how many links */
	height: auto;
}

.main-nav li > ul li a,
.main-nav li > ul li span {
	background-color: white;
}

.main-nav li > ul li a:hover,
.main-nav li > ul li span:hover {
	background-color: #666;
	color: white;
	border-bottom: none;
}

/* Tablet and Mobile View */
@media (max-width: 1000px) {
	.site-logo {
		font-size: 1.5rem;
		flex-grow: 1;
		text-align: center;
	}
	
	#drop-down-cbox + label {
		display: block; /* unhide the mobile nav button */
	}
	
	.main-nav {
		max-height: 0px; /* same vertical grow transition trick as above */
		height: calc(100vh - 60px); /* take full vertical viewport height, -60px for nav-bar */
		overflow: hidden;
		position: absolute;
		top: 3.5%;
		line-height: auto;
		left: 0;
		width: 100%;
		flex-direction: column;
		background-color: white;
		transition: all 500ms ease-in-out;
		z-index: 6;
	}
	
	#drop-down-cbox:checked ~ .main-nav {
		max-height: calc(100vh - 60px);
		transition: all 500ms ease-in-out;
	}

	.main-nav li span {
		position: relative;
	}
	
	/* design and position downward arrow */
	.main-nav li span:after {
		content: "";
		width: 6px;
		height: 6px;
		position: absolute;
		top: 50%;
		margin-top: -2px;
		margin-left: 8px;
		transform: translateY(-50%) rotate(-45deg);
		border-left: 2px solid #666;
		border-bottom: 2px solid #666;
	}
	
	.main-nav li a:hover,
	.main-nav li span:hover {
		background-color: #666;
		color: white;
		border-bottom: none;
	}
	
	.main-nav li > ul li {
		position: relative;
	}
	
	.main-nav li > ul li a,
	.main-nav li > ul li span {
		background-color: #eee;
	}
	
}

.image-container {
	width: 90%;
	margin: auto;
}

img {
	width: 100%;
}

.header-overlay {
	height: 100vh;
	position: absolute;
	top: 0;
	background: #fff;
	opacity: .5;
	width: 100%;
}

.sr-only {
	position: absolute;
}

header {
	// background: #fff;
}

header .brand {
	width: 20%;
	position: relative;
	z-index: 2;
	padding: 10px;
}

header .brand img {
	width: 80%;
	display: block;
	margin: auto;
}

header .nav-container {
	// position: relative;
	display: flex;
	justify-content: center;
	// position: absolute;
	flex-direction: column;
}

header .nav-primary {
	width: 70%;
	position: relative;
	z-index: 2;
	padding: 10px;
	margin: auto;
}

#menu-primary {
	display: flex;
	justify-content: space-evenly;
}

#menu-primary li {
	list-style-type: none;
	margin: 3px 10px;
}

.hero-image {
	img {width: 100%;}
}

#menu-primary a {
	text-decoration: none;
	color: #D1A281;
	font-weight: bolder;
}

.hero-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: .3;
	background: #000;
	z-index: 1;
	top: 0;
}

.hero-container {
	position: relative;
	width: 100%;
	height: auto;
}

.button {
	border-radius: 25px;
	background: #AFC1A8;
	color: #fff;
	border: none;
	padding: 15px;
	font-size: 20px;
	font-family: 'KG Lego House', sans-serif;
}
.hero-container img {
	width: 100%;
	height: auto;
}
.hero-container .hero-header-button {
	position: absolute;
	top: 5%;
	right: 0;
	left: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
	text-align: center;
	width: 50%;
}

.hero-header-button h1 {
	font-size: 22px;
	padding: 15px;
}

.button, .hero-container a {
	background: #AFC1A8;
	// border: solid 3px #AFC1A8;
	color: #fff;
	border-radius: 15px;
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 6px;
}

/*.hero-container button:hover {
	background-color: #B46246;
}*/

#reserve {
	position: relative;
}

.reserve-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: .3;
	background: #AFC1A8;
	z-index: 1;
	top: 0;
}

/*#reserve h2 {
	background: #AFC1A8;
	width: 100%;
	padding: 10px;
}*/

#reserve ul {
	padding: 5px 0 20px 20px;
	font-family: 'KG Lego House', sans-serif;
}

#reserve li {
	letter-spacing: 1px;
}

.button:hover {
	background-color: #B46246;
	color: #fff;
}

a {
	cursor: pointer;
}
.card-container {
	display: flex;
	justify-content: space-between;
	padding: 100px;
	position: relative;
	max-width: 1000px;
	margin: auto;
}

.card-tree {
	position: absolute;
  top: -27px;
  width: 108px;
  height: auto;
  right: 48%;
}

.card-lightbrown {
	position: absolute;
	top: 0;
	width: 50px;
	height: auto;
	left: 2%;
}
.card-darkbrown2 {
	position: absolute;
	top: 20%;
	width: 50px;
	height: auto;
	left: 1%;
}

.card-lightbrown2 {
	position: absolute;
	top: 20%;
	width: 50px;
	height: auto;
	right: 1%;
}
.card-darkbrown {
	position: absolute;
	top: 0;
	width: 50px;
	height: auto;
	right: 2%;
}
.multiple-container {
	display: flex;
	width: 45%;
	flex-direction: column;
}

.single-container {
	display: flex;
	width: 50%;
}

.single-container > * {
	width: 100%;
}
.img-area{
  width: 1170px;
  margin: 2% auto;
}

.multiple-container .single-img {
  position: relative;
  width: 100%;
  float: left;
  margin: 15px 0;
  height: 300px;
}

.single-container .single-img {
  position: relative;
  width: 100%;
  float: left;
  margin: 15px 0;
  height: 630px;
}

.single-img h2 {
	position: absolute;
	z-index: 4;
	color: #fff;
	padding: 5px;
	margin-left: 10px;
	font-size: 25px;
	background: #B46246;
	padding: 15px;
	border-radius: 25px;
}

.image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #AFC1A8;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 1s ease;
  z-index: 5;
}

.single-img:hover .img-overlay {
  height: 100%;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}
.text span{
  font-weight: 300;
}

.text a {
	display: inline-block;
	margin-top: 40px;
	background: #fff;
	color: #B46246;
}

.text a:hover {
	color: #fff;
}

#about {
	background: #AFC1A8;
	color: #fff;
}

#about p, #about h2 {
	padding: 15px;
}

.main {
  display: grid;
  padding: 2rem;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 5% auto;
  background:#fff;
  position: relative;
}

.main2 {
  display: grid;
  padding: 2rem;
  grid-template-columns: 1fr 300px;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 5% auto;
  background:#fff;
  position: relative;
 }

.other-main {
	gap: 2em;
}

.main h2, .main2 h2{
  font-size: 42px;
  font-weight:700;
  color:#000000;
}
.main p, .main2 p{
  font-size:18px;
  
}
.rainbowtree-about {
	position: absolute;
  width: 75%;
  height: auto !important;
  right: 121px;
  z-index: 1;
  margin-right: -119px;
  top: 8%;
}

.main2 .rainbowtree-about {
	position: absolute;
  width: 75%;
  height: auto !important;
  left: 121px;
  z-index: 1;
  margin-left: -119px;
  top: 8%;
}
	
.rainbowtree-about img {
	box-shadow: none !important;
}

.rainbowtree-about .rainbowtree-overlay {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	opacity: .86;
}

.textsection-img {
	position: relative;
	z-index: 2;
	object-fit: cover;
}

.textsection-img {
	object-fit: scale-down !important;
}
.h1-p {
	position: relative;
	z-index: 2;
}

.main img, .main2 img {
  max-width: 100%;
  height: 450px;
}

.parties {
	display: block;
	position: relative;
	z-index: 10;
	background: transparent;
}

.parties-page .rainbowtree-about {
	position: absolute;
	width: 100%;
	height: auto !important;
	right: 121px;
	z-index: 1;
	margin-right: -119px;
	top: 41%;
}
@media (max-width: 720px) {
  .main, .main2 {
    display: block;
  }
  .main p, .main2 p {
    position: relative;
    /*background-color: #ffffff85;*/

  }
  .main img, .main2 img {
    max-width: 100%;
    background-position:center;
    object-fit:cover;
  }
  .main h2, .main2 h2{
    font-size:35px;
    padding-top:0px;
    padding-bottom:0px;

  }

  .rainbowtree-about {
  	bottom: -15px;
  	top: auto;
  	width: 100%;
  }
  
  .parties-page .rainbowtree-about {
  	display: none;
  }

  .reserve-info .main img {
  	height: 250px !important;
  }

  .reserve-info .rainbowtree-about img {
  	height: auto !important;
  }
}

.rules li {
	margin-bottom: 15px;
}

.footer {
  background-color: #fff;
  width: auto;
  text-align: left;
  /*font-family: sans-serif;*/
  font-weight: bold;
  font-size: 16px;
  padding: 50px;
  margin-top: 50px;
  border-top: 25px solid #AFC1A8;
  border-bottom: 25px solid #AFC1A8;
  display: flex;
  justify-content: space-between;
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
  display: inline-block;
  vertical-align: top;
}


/* footer left*/

.footer .footer-left {
  width: 22%;
  background: #fff;
  padding-left: 15px;
}

.footer .about {
  line-height: 20px;
  color: #000;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer .about span {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .icons {
  margin-top: 25px;
}

/*.footer .icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #000;
  text-align: left;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}*/


/* footer center*/

.footer .footer-center {
  width: 22%;
}

.footer .footer-center i {
  background-color: #33383b;
  color: #000;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: left;
  line-height: 42px;
  margin: 10px 0;
  vertical-align: middle;
}

.footer .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer .footer-center p {
  display: inline-block;
  color: #000;
  vertical-align: middle;
  margin: 0;
}

.footer .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer .footer-center p a {
	color: #B46246;
  text-decoration: none;
}

.footer .footer-center p a:hover {
	color: #B46246;
  text-decoration: underline;
}
/* footer right*/

.footer .footer-right {
  width: 22%;
  background-color: #fff;
}

.footer-left img {
	max-width: 336px;
}

.footer h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: normal;
  margin: 0;
}

.footer h2 span {
  color: #0099ff;
}

.footer .menu {
  color: #000;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer .menu a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer .menu a:hover {
  color: #B46246;
}

.footer .name {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.subpage .container {
	width: 80%;
	margin: auto;
	letter-spacing: 2px;
}
.subpage-header {
	background: #AFC1A8;
	padding: 20px;
}
@media (max-width: 885px) {
  .footer {
    font-size: 14px;
    flex-direction: column;
  }
  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer .footer-center i {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
	.reserve-info .main img {
		height: auto;
	}
}
@media (max-width: 720px) {
	.card-container {
		flex-direction: column;
	}

	.single-container, .multiple-container {
		width: 100%;
	}

	.hero-container .hero-header-button {
		width: 100%;
	}

	.single-container .single-img {
		height: 300px;
	}

	.single-container img {
		height: 300px;
	}

}

@media (max-width: 721px) {
		.main-nav {
		top: 110px;
	}

	.card-tree {
		right: 41%;
	}
}

@media (max-width: 600px) {
	.card-container {
		padding: 40px;
	}
}

@media (max-width: 500px) {
		.main-nav {
		top: 60px;
	}

	.card-tree {
		right: 38%;
	}
}


.event {
  display: block;
}
.event p {
  position: relative;
  /*background-color: #ffffff85;*/

}
.event img {
  max-width: 100%;
  background-position:center;
  object-fit:contain;
  height: auto;
}
.event h2{
  font-size:35px;
  padding-top:0px;
  padding-bottom:0px;

}

.event .h1-p {
	text-align: center;
}
.event .rainbowtree-about {
	bottom: -15px;
	top: auto;
	width: 100%;
}
/*$brown: #CFAC61;
$light-brown: #D1A281;
$green: #AFC1A8;
$red: #B46246;*/
