@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");

:root {
	--color-1: #00683d; /* Main */
	--color-2: #c3bb51; /* Accent */
	--color-3: #fff; /* Main Background */
	--color-4: #000; /* Text */
	--color-5: #000; /* Header & Footer */

	--color-1-opacity: #00683d55;
	--color-2-opacity: #c3bb5155;
	--color-3-opacity: #ffffff55;
	--color-4-opacity: #00000055;
	--color-5-opacity: #00000055;

	--color-1-opacity-darker: #00683d99;
	--color-2-opacity-darker: #c3bb5199;
	--color-3-opacity-darker: #ffffff99;
	--color-4-opacity-darker: #00000099;
	--color-5-opacity-darker: #00000099;

	/* body */
	--page-background: var(--color-3);
	--text: var(--color-4);
	--text-font: "Raleway", sans-serif;
	--headers: var(--color-4);
	--headers-font: "Poiret One", cursive;
	--headers-font2: "Dancing Script", cursive;
	--links: var(--color-1);
	--links-hover: var(--color-2);

	/* main colors */
	--main-accent: var(--color-1);
	--main-accent-text: var(--color-3);
	--main-accent-title: var(--color-2);
	--main-accent-border: var(--color-2);

	/* secondary colors */
	--secondary-accent: var(--color-3);
	--secondary-accent-text: var(--color-4);
	--secondary-accent-title: var(--color-2);
	--secondary-accent-border: var(--color-2);

	/* buttons */
	--btn-font-size: 0.75rem;
	--btn-border-radius: 100px;
	--btn-main-bg: var(--color-1);
	--btn-main-text: var(--color-3);
	--btn-main-border: var(--color-2);
	--btn-main-shadow: var(--color-5-opacity) 0px 1px 3px, var(--color-5-opacity-darker) 0px 1px 2px;
	--btn-hover-bg: var(--color-3);
	--btn-hover-text: var(--color-1);
	--btn-hover-border: var(--color-2);
	--btn-focus-shadow: 0 0 0 0.25rem var(--color-1-opacity);

	/* header */
	--header-background: rgba(0, 0, 0, 0);
	--header-text: var(--color-3);
	--header-text-hover: var(--color-1);
	--scrolled-header-background: var(--color-5);
	--scrolled-header-text: var(--color-3);

	/* footer */
	--footer-background: var(--color-5);
	--footer-text: var(--color-3);

	/* home section */
	--home-title-color: var(--color-3);

	/* gallery */
	--gallery-bg: var(--color-4);

	/* modal */
	--modal-text: var(--color-4);
	--modal-bg: var(--color-3);
	--modal-btn-text: var(--color-3);
	--modal-close-btn-shadow: var(--color-1-opacity);

	/* reviews */
	--review-carousel-text: var(--color-3);
	--review-carousel-name: var(--color-4);
	--review-carousel-bg: var(--color-1);

	/* calendar */
	--calendar-month-border: var(--color-1);
	--calendar-month-bg: var(--color-3);
	--calendar-month-day: var(--color-1);
	--calendar-month-highlight: var(--color-2-opacity);
	--calendar-month-number: var(--color-1);

	/* forms */
	--form: var(--color-3);
	--form-text: var(--color-4);
	--form-border: var(--color-2);

	/* map */
	/* to get filter type getFilter('hexColor') into console
   replace hexColor with whatever color you want it to be
   may have to adjust brightness and contrast to get best color
   make sure your filter is .2 lossless or less (it will tell you in console)
   colors closer to var(--color-4)000 will not work, #333333 tested, and it does work*/
	--map: grayscale(1) brightness(105%);
	--map-border: var(--color-3);
	--map-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

/*=========================
Colors
=========================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	color: var(--headers);
}

p,
body,
li,
a,
.block2 .text2.big,
.navbar-expand-md .navbar-nav .nav-link,
table {
	color: var(--text);
}

.footer h1,
.footer .h1,
.footer h2,
.footer .h2,
.footer h3,
.footer .h3,
.footer h4,
.footer .h4,
.footer h5,
.footer .h5,
.footer h6,
.footer .h6 {
	color: var(--footer-text);
}

.footer p,
.footer body,
.footer li,
.footer a,
table {
	color: var(--footer-text);
}

.jumbotron .container {
	background-color: rgba(0, 0, 0, 0.5);
}

#footer a,
footer.fixed-bottom a {
	color: var(--footer-text);
}

#footer.footer {
	background-color: var(--footer-background);
	color: var(--footer-text);
}

.tab-content {
	background-color: var(--page-background);
}

.navbar-nav .nav-link,
.footer-nav .nav-link {
	color: var(--header-text);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.footer-nav .nav-link:hover,
.footer-nav .nav-link:focus,
.footer-nav .nav-link:active {
	color: var(--header-text-hover);
}

a {
	transition: color 0.5s ease;
	-webkit-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

.header.header-sticky {
	background: var(--header-background);
	transition: opacity 1s ease, max-height 1s ease;
	-webkit-transition: opacity 1s ease, max-height 1s ease;
	-o-transition: opacity 1s ease, max-height 1s ease;
	transition: opacity 1s ease, max-height 1s ease;
}

.header.header-sticky::before {
    position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2049194677871149) 5%, rgba(0,0,0,0.48503151260504207) 15%, rgba(0,0,0,0.6418942577030813) 25%, rgba(0,0,0,0.6923144257703081) 35%, rgba(0,0,0,0.76234243697479) 45%, rgba(0,0,0,0.8015581232492998) 55%, rgba(0,0,0,0.8323704481792717) 65%, rgba(0,0,0,0.8855917366946778) 75%, rgba(0,0,0,0.9416141456582633) 85%, rgba(0,0,0,0.9836309523809523) 95%, rgba(0,0,0,1) 100%);
	transition: opacity 1s ease, max-height 1s ease;
	-webkit-transition: opacity 1s ease, max-height 1s ease;
	-o-transition: opacity 1s ease, max-height 1s ease;
	transition: opacity 1s ease, max-height 1s ease;
	opacity: 0;
}

.header.header-sticky.scrolled::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2049194677871149) 5%, rgba(0,0,0,0.48503151260504207) 15%, rgba(0,0,0,0.6418942577030813) 25%, rgba(0,0,0,0.6923144257703081) 35%, rgba(0,0,0,0.76234243697479) 45%, rgba(0,0,0,0.8015581232492998) 55%, rgba(0,0,0,0.8323704481792717) 65%, rgba(0,0,0,0.8855917366946778) 75%, rgba(0,0,0,0.9416141456582633) 85%, rgba(0,0,0,0.9836309523809523) 95%, rgba(0,0,0,1) 100%);
	transition: opacity 1s ease, max-height 1s ease;
	-webkit-transition: opacity 1s ease, max-height 1s ease;
	-o-transition: opacity 1s ease, max-height 1s ease;
	transition: opacity 1s ease, max-height 1s ease;
	opacity: 1;
	z-index: -1;
}

.oo-banner--inheader {
	position: relative !important;
	z-index: 2 !important;
}

.black-opaque-background {
	background-color: rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
	color: var(--secondary-accent);
}

@media (max-width: 764px) {
	.navbar-home > div > nav > .navbar-toggler > .navbar-collapse {
		background-color: rgb(0, 0, 0, 0.5);
	}

	.scroll > .navbar-home > div > nav > .navbar-toggler > .navbar-collapse {
		background-color: rgb(0, 0, 0, 0);
	}

	.navbar .nav-link {
		color: var(--header-text);
	}
}

.dropdown-menu,
.sub-menu {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--main-accent);
	background-color: var(--scrolled-header-background);
}

.dropdown-menu {
	position: absolute;
	z-index: 1000;
	display: none;
	min-width: 10rem;
	padding: 0rem;
	margin: 0;
	font-size: 1rem;
	text-align: left;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--main-accent);
	background-color: var(--scrolled-header-background);
}

.dropdown-menu li .dropdown-item {
	color: var(--header-text);
	padding: 0.5rem 1rem;
}

.home-title a {
	color: var(--home-title-color);
}

.home-title a:hover,
.home-title a:focus {
	color: var(--main-accent);
	background-color: #f2f2f2;
	border: 3px solid var(--main-accent);
}

.page-wrapper,
.main-container {
	background-color: var(--page-background);
}

a.home-social {
	background-color: var(--main-accent);
	-webkit-transition: font-size 200ms ease-in, color 200ms ease-in;
	-o-transition: font-size 200ms ease-in, color 200ms ease-in;
	transition: font-size 200ms ease-in, color 200ms ease-in;
}

a.home-social:hover {
	color: var(--btn-hover-border);
}

/*Buttons*/

.btn-primary,
.btn-success,
.btn-secondary,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-default,
.btn-template,
button#header-arrows,
.subscribe-button {
	background-color: var(--btn-main-bg);
	color: var(--btn-main-text);
	border: 2px solid var(--btn-main-border);
	border-radius: var(--btn-border-radius);
	-webkit-box-shadow: var(--btn-main-shadow);
	box-shadow: var(--btn-main-shadow);
}

/* hover */
.btn-primary:hover,
.btn-success:hover,
.btn-secondary:hover,
.btn-danger:hover,
.btn-warning:hover,
.btn-info:hover,
.btn-light:hover,
.btn-dark:hover,
.btn-default:hover,
.btn-template:hover,
button#header-arrows:hover,
.subscribe-button:hover,
/* focus */
.btn-primary:focus,
.btn-success:focus,
.btn-secondary:focus,
.btn-danger:focus,
.btn-warning:focus,
.btn-info:focus,
.btn-light:focus,
.btn-dark:focus,
.btn-default:focus,
.btn-template:focus,
button#header-arrows:focus,
.subscribe-button:focus,
/* active */
.btn-primary:active,
.btn-success:active,
.btn-secondary:active,
.btn-danger:active,
.btn-warning:active,
.btn-info:active,
.btn-light:active,
.btn-dark:active,
.btn-default:active,
.btn-template:active,
button#header-arrows:active,
.subscribe-button:active {
	background-color: var(--btn-hover-bg);
	color: var(--btn-hover-text);
	border: 2px solid var(--btn-hover-border);
}

.btn-primary:focus,
.btn-success:focus,
.btn-secondary:focus,
.btn-danger:focus,
.btn-warning:focus,
.btn-info:focus,
.btn-light:focus,
.btn-dark:focus,
.btn-default:focus,
.btn-template:focus,
button#header-arrows:focus,
.subscribe-button:focus {
	-webkit-box-shadow: var(--btn-focus-shadow);
	box-shadow: var(--btn-focus-shadow);
}

.btn-close:focus {
	outline: 0;
	-webkit-box-shadow: 0 0 0 0.25rem var(--modal-close-btn-shadow);
	box-shadow: 0 0 0 0.25rem var(--modal-close-btn-shadow);
	opacity: 1;
}

.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 2px solid var(--main-accent-border);
}

/* Accent 1 Buttons*/

.accent-2 .btn-primary,
.accent-2 .btn-success,
.accent-2 .btn-secondary,
.accent-2 .btn-danger,
.accent-2 .btn-warning,
.accent-2 .btn-info,
.accent-2 .btn-light,
.accent-2 .btn-dark,
.accent-2 .btn-default,
.accent-2 .btn-template,
.accent-2 button#header-arrows,
.accent-2 .subscribe-button,
.accent-2 .portfolio-shuffle a {
	background: var(--btn-main-bg) !important;
	color: var(--btn-main-text) !important;
	border-radius: var(--btn-border-radius) !important;
	-webkit-box-shadow: var(--btn-main-shadow) !important;
	box-shadow: var(--btn-main-shadow) !important;
	text-decoration: none !important;
	border: 2px solid var(--btn-main-border);
}

/* hover */
.accent-2 .btn-primary:hover,
.accent-2 .btn-success:hover,
.accent-2 .btn-secondary:hover,
.accent-2 .btn-danger:hover,
.accent-2 .btn-warning:hover,
.accent-2 .btn-info:hover,
.accent-2 .btn-light:hover,
.accent-2 .btn-dark:hover,
.accent-2 .btn-default:hover,
.accent-2 .btn-template:hover,
.accent-2 button#header-arrows:hover,
.accent-2 .subscribe-button:hover,
.accent-2 .portfolio-shuffle a:hover,
/* focus */
.accent-2 .btn-primary:focus,
.accent-2 .btn-success:focus,
.accent-2 .btn-secondary:focus,
.accent-2 .btn-danger:focus,
.accent-2 .btn-warning:focus,
.accent-2 .btn-info:focus,
.accent-2 .btn-light:focus,
.accent-2 .btn-dark:focus,
.accent-2 .btn-default:focus,
.accent-2 .btn-template:focus,
.accent-2 button#header-arrows:focus,
.accent-2 .subscribe-button:focus,
.accent-2 .portfolio-shuffle a:focus,
/* active */
.accent-2 .btn-primary:active,
.accent-2 .btn-success:active,
.accent-2 .btn-secondary:active,
.accent-2 .btn-danger:active,
.accent-2 .btn-warning:active,
.accent-2 .btn-info:active,
.accent-2 .btn-light:active,
.accent-2 .btn-dark:active,
.accent-2 .btn-default:active,
.accent-2 .btn-template:active,
.accent-2 button#header-arrows:active,
.accent-2 .subscribe-button:active
.accent-2 .portfolio-shuffle a:active,
.accent-2 .portfolio-shuffle a.active {
	background: var(--btn-hover-bg) !important;
	color: var(--btn-hover-text) !important;
	text-decoration: none !important;
	border: 2px solid var(--btn-hover-border);
}

.accent-2 .btn-primary:focus,
.accent-2 .btn-success:focus,
.accent-2 .btn-secondary:focus,
.accent-2 .btn-danger:focus,
.accent-2 .btn-warning:focus,
.accent-2 .btn-info:focus,
.accent-2 .btn-light:focus,
.accent-2 .btn-dark:focus,
.accent-2 .btn-default:focus,
.accent-2 .btn-template:focus,
.accent-2 button#header-arrows:focus,
.accent-2 .subscribe-button:focus,
.accent-2 .portfolio-shuffle a:focus {
	-webkit-box-shadow: var(--btn-focus-shadow) !important;
	box-shadow: var(--btn-focus-shadow) !important;
	text-decoration: none !important;
	border: none;
}

/* Accent 2 Buttons*/

.accent-1 .btn-primary,
.accent-1 .btn-success,
.accent-1 .btn-secondary,
.accent-1 .btn-danger,
.accent-1 .btn-warning,
.accent-1 .btn-info,
.accent-1 .btn-light,
.accent-1 .btn-dark,
.accent-1 .btn-default,
.accent-1 .btn-template,
.accent-1 button#header-arrows,
.accent-1 .subscribe-button,
.accent-1 .portfolio-shuffle a {
	background: var(--btn-hover-bg) !important;
	color: var(--btn-hover-text) !important;
	text-decoration: none !important;
	border-radius: var(--btn-border-radius) !important;
	-webkit-box-shadow: var(--btn-main-shadow) !important;
	box-shadow: var(--btn-main-shadow) !important;
	text-decoration: none !important;
	border: 2px solid var(--btn-hover-border);
}

/* hover */
.accent-1 .btn-primary:hover,
.accent-1 .btn-success:hover,
.accent-1 .btn-secondary:hover,
.accent-1 .btn-danger:hover,
.accent-1 .btn-warning:hover,
.accent-1 .btn-info:hover,
.accent-1 .btn-light:hover,
.accent-1 .btn-dark:hover,
.accent-1 .btn-default:hover,
.accent-1 .btn-template:hover,
.accent-1 button#header-arrows:hover,
.accent-1 .subscribe-button:hover,
.accent-1 .portfolio-shuffle a:hover,
/* focus */
.accent-1 .btn-primary:focus,
.accent-1 .btn-success:focus,
.accent-1 .btn-secondary:focus,
.accent-1 .btn-danger:focus,
.accent-1 .btn-warning:focus,
.accent-1 .btn-info:focus,
.accent-1 .btn-light:focus,
.accent-1 .btn-dark:focus,
.accent-1 .btn-default:focus,
.accent-1 .btn-template:focus,
.accent-1 button#header-arrows:focus,
.accent-1 .subscribe-button:focus,
.accent-1 .portfolio-shuffle a:focus,
/* active */
.accent-1 .btn-primary:active,
.accent-1 .btn-success:active,
.accent-1 .btn-secondary:active,
.accent-1 .btn-danger:active,
.accent-1 .btn-warning:active,
.accent-1 .btn-info:active,
.accent-1 .btn-light:active,
.accent-1 .btn-dark:active,
.accent-1 .btn-default:active,
.accent-1 .btn-template:active,
.accent-1 button#header-arrows:active,
.accent-1 .subscribe-button:active
.accent-1 .portfolio-shuffle a:active,
.accent-1 .portfolio-shuffle a.active {
	background: var(--btn-main-bg) !important;
	color: var(--btn-main-text) !important;
	text-decoration: none !important;
	border: 2px solid var(--btn-main-border);
}

.accent-1 .btn-primary:focus,
.accent-1 .btn-success:focus,
.accent-1 .btn-secondary:focus,
.accent-1 .btn-danger:focus,
.accent-1 .btn-warning:focus,
.accent-1 .btn-info:focus,
.accent-1 .btn-light:focus,
.accent-1 .btn-dark:focus,
.accent-1 .btn-default:focus,
.accent-1 .btn-template:focus,
.accent-1 button#header-arrows:focus,
.accent-1 .subscribe-button:focus,
.accent-1 .portfolio-shuffle a:focus {
	-webkit-box-shadow: var(--btn-focus-shadow) !important;
	box-shadow: var(--btn-focus-shadow) !important;
	text-decoration: none !important;
}

/*End Buttons*/

.gallery figure .captions::after,
.portfolio-filter-list a.active,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a {
	border-color: var(--secondary-color);
}

.sub-menu {
	border-top: var(--secondary-accent);
}

.primary-bg,
.menu-ribbon,
input[type="submit"],
.portfolio-filter-list a.active,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a,
.panel-title > a.collapsed:hover,
.panel-title > a,
.page-wrapper .tagline::before,
.feature-icon {
	background-color: var(--main-accent);
}

.primary-bg p,
.primary-bg h1,
.primary-bg h2,
.primary-bg h3,
.primary-bg h4,
.primary-bg h5 {
	color: var(--main-accent-text);
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus,
.sub-menu li a:hover,
.sub-menu li a:focus,
.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.unstyled li::before,
.feature.business i {
	color: var(--header-text-hover);
}

a {
	color: var(--links);
}

a:hover,
a:focus {
	color: var(--links-hover);
}

.accent-1 {
	background-color: var(--main-accent);
	color: var(--main-accent-text);
}

.accent-1 p,
.accent-1 h1,
.accent-1 h2,
.accent-1 h3,
.accent-1 h4,
.accent-1 h5,
.accent-1 span,
.accent-1 li {
	color: var(--main-accent-text);
}

.accent-2 {
	background-color: var(--secondary-accent);
	color: var(--secondary-accent-text);
}

.accent-2 p,
.accent-2 span,
.accent-2 li {
	color: var(--secondary-accent-text);
}

.accent-2 h1,
.accent-2 h2,
.accent-2 h3,
.accent-2 h4,
.accent-2 h5 {
	color: var(--secondary-accent-title);
}

.portfolio-shuffle a {
	color: var(--color-3);
}

.portfolio-shuffle a:hover,
.portfolio-shuffle a:focus {
	border: 1px solid var(--links);
}

.card {
	background-color: var(--main-accent);
	color: var(--main-accent-text);
}

/*Social*/

.social .facebook {
	--primary-color: #3b5998;
}

.social .twitter {
	--primary-color: #1da1f2;
}

.social .instagram {
	--primary-color: #ea0c5f;
}

.social .google-plus {
	--primary-color: #db4437;
}

.social .google {
	--primary-color: #4285f4;
}

.social .youtube {
	--primary-color: #ff0000;
}

.social .yelp {
	--primary-color: #af0606;
}

.social .pinterest {
	--primary-color: #bd081c;
}

.social .tumblr {
	--primary-color: #35465c;
}

.social .linkedin {
	--primary-color: #0077b5;
}

.social .trip-advisor {
	--primary-color: #00af87;
}

.social .vimeo {
	--primary-color: #1ab7ea;
}

.social {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.social li a {
	padding: 5px;
	font-size: 2rem;
}

.social li a:hover,
.social li a:focus {
	text-decoration: none;
	outline: 0;
}

.social li a {
	background-color: #333;
	background-color: var(--primary-color, --color-1);
	color: var(--color-3);
	color: var(--secondary-color, --color-3);
	-webkit-transition: color 300ms, background-color 300ms;
	-o-transition: color 300ms, background-color 300ms;
	transition: color 300ms, background-color 300ms;
	text-decoration: none;
}

.social li a:hover,
.social li a:focus {
	color: var(--primary-color, --color-1) !important;
	background-color: var(--color-3);
}

.social li a:focus {
	-webkit-box-shadow: 0 0 0 2pt #9c5816;
	box-shadow: 0 0 0 2pt #9c5816;
	-webkit-box-shadow: 0 0 0 2pt var(--outline);
	box-shadow: 0 0 0 2pt var(--outline);
}

/*End Social*/
