/* General Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font: normal 16px sans-serif;
	color: #555;
}

h1,
h2,
h3,
h4 {
	font-family: "Quicksand", sans-serif;
}

ul,
nav {
	list-style: none;
}

a {
	color: white;
	text-decoration: none;
	opacity: 0.85;
}

a:hover {
	opacity: 1;
	color: white;
}

a:visited {
	color: white;
}

a.btn,
button {
	border-radius: 5px;
	font-family: "Quicksand", sans-serif;
	font-weight: normal;
	text-align: center;
	background-color: rgba(58, 0, 40, 1);
	opacity: 1;
	height: 50px;
	padding: 10px;
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
}

.anchor {
	display: block;
	position: relative;
	top: -100px;
	visibility: hidden;
}



hr {
	width: 250px;
	border: 0;
	height: 2px;
	background-color: rgb(54, 32, 19);
	margin-bottom: 50px;
}


/* Navbar section */

#mainNavbar {
	font-size: 1.25rem;
	font-weight: 100;
}

#mainNavbar a {
	opacity: 1;
}

#mainNavbar .nav-link {
	color: white;

}

#mainNavbar .nav-link:hover {
	color: white;
	font-weight: bolder;
}

#mainNavbar .navbar-brand {
	color: white;
	font-size: 1.5rem;
}

#navLinks {
	text-align: right;
}

#mainNavbar .navbar-collapse {
	justify-content: flex-end;
}

#mainNavbar .btn {
	margin-left: 50px;
}

#mainNavbar {
	background-color: rgb(58, 0, 40, 1);
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
	outline-color: rgb(58, 0, 40)
}

.navbar.scrolled {
	transition: background 500ms;
	background-color: rgb(58, 0, 40, 1);
}


@media (max-width: 1000px) {
	#mainNavbar .btn {
		margin-bottom: 20px;
	}
}


@keyframes fadein {
	100% {
		opacity: 1;
	}
}




/* section styles */

section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 100px 80px 60px;
}

section h3.title {
	font: bold 32px "Cinzel", sans-serif;
	margin-bottom: 0px;
	text-align: center;
}

section h4.title {
	font: bold 24px "Quicksand", sans-serif;
	margin-bottom: 30px;
	text-align: center;
}

section p {
	line-height: 1.5;
	padding: 0 20px;
	margin-bottom: 0px;
	text-align: center;
}

@media (max-width: 800px) {
	section {
		padding: 50px 20px;
	}
}



.grid {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/* hero styles */

.hero {
	position: relative;
	justify-content: flex-start;
	text-align: center;
	min-height: 100vh;
	color: white;
}

.hero .background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	/* 8/12/2025 added to keep hero image centered */
	background-position: center center;
	background-repeat: no-repeat;

	transition: background-image 1s ease-in-out;

	background-size: cover;
	z-index: -1;
	background-color: rgb(255, 255, 255);
	opacity: .9;
}

.hero .background-image2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: -1;
	background-color: rgb(255, 255, 255);
	opacity: .9;
}

.hero h1 {
	font: 75px "Alex Brush", cursive;
	/* margin-bottom: 30px; */
	margin-top: 40px;
}

.hero h2 {
	font: 55px "Alex Brush", cursive;
	/* margin-bottom: 30px; */
	margin-top: 0px;
}

.hero h3 {
	font: normal 28px "Quicksand", sans-serif;
	margin-bottom: 40px;
}

.hero h1,
.hero h3,
.hero i {
	text-shadow: 2px 6px 5px rgba(0, 0, 0, 0.8),
		2px 10px 18px rgba(0, 0, 0, 0.5),
		0px 22px 30px rgba(0, 0, 0, 0.3);


}

.hero a.btn {
	padding: 20px 46px;
}

.hero i {
	font-size: 40px;
	font-weight: lighter;
	opacity: .95;
}

.hero i:hover {
	opacity: 1;
}

.hero-content-area {
	opacity: 0;
	margin-bottom: 100px;
	animation: 1s slidefade 1s forwards;

}

@keyframes slidefade {
	100% {
		opacity: 1;
		margin: 0;
	}
}

@media (max-width: 1000px) {
	.hero {
		min-height: 600px;
	}

	.hero h1 {
		font-size: 70px;
		line-height: .8;
	}

	.hero h3 {
		font-size: 24px;
	}

	.hero a.btn {
		padding: 15px 40px;
	}

	.hero i {
		opacity: 0;
	}

	.hero .background-image2 {
		background-size: contain;
	}
}




/* intro styles */
section.intro {
	background-color: rgb(40, 40, 40, 1);
}

section.intro .anchor {
	top: -200px;
}

.intro p {
	font-family: "Quicksand", sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
	color: rgb(205, 205, 205, 1)
}

.intro h3 {
	color: rgb(225, 225, 225, 1);
}

.intro h4 {
	color: rgb(225, 225, 225, 1);
}

/* categories styles */
section.categories {
	background-color: #f5f5f5;
}

.categories .grid li {
	padding: 0px;
	flex-basis: 45%;
	text-align: center;
	border: 4px solid rgb(50, 50, 50, .5);
	border-radius: 6px;
	margin: 10px 10px 10px 10px;
	min-height: 400px;
	background-color: gray;
}

.categories .grid li i {
	color: rgb(41, 83, 107)
}

.categories .grid li h4 {
	font-family: "Quicksand", sans-serif;
	font-size: 24px;
	margin: 0px 0;
	padding: 5px;
	color: white;
	background-color: rgb(50, 50, 50, .5);
}

.categories a.btn {
	margin-top: 40px;
	padding: 20px;
}

.categories p {
	font-family: "Quicksand", sans-serif;
	font-size: 24px;
	margin-bottom: 30px;
}

@media (max-width: 1200px) {
	.categories .grid li {
		flex-basis: 100%;
		min-height: 500px;
		margin: 10px 10px;
	}

	.categories a.btn {
		margin-top: 20px;
	}
}

@media (max-width: 800px) {
	.categories .grid li {
		min-height: 350px;
	}
}



.hero2 {
	position: relative;
	justify-content: flex-end;
	text-align: center;
	min-height: 75vh;
	color: white;
}

.hero2 .hero2-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: -1;
	background-color: rgb(255, 255, 255);
	opacity: .9;
}

.hero2 .background-image2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: -1;
	background-color: rgb(255, 255, 255);
	opacity: .9;
}

.hero2 h1 {
	font: 80px "Alex Brush", cursive;
	margin-bottom: 0px;
	line-height: .8;
}

.hero2 h3 {
	font: normal 28px "Quicksand", sans-serif;
	margin-bottom: 40px;
}

.hero2 h1,
.hero2 h3,
.hero2 i {
	text-shadow: 2px 6px 10px rgba(0, 0, 0, 1),
		2px 10px 22px rgba(0, 0, 0.75),
		2px 18px 35px rgba(0, 0, 0, 0.85);



}

.hero2 a.btn {
	padding: 20px 46px;
}

.hero2 i {
	font-size: 40px;
	font-weight: lighter;
	opacity: .95;
}


.hero2-content-area {
	opacity: 0;
	margin-bottom: 100px;
	animation: 1s slidefade 1s forwards;

}

@media (max-width: 1000px) {
	.hero2 {
		min-height: 600px;
	}

	.hero2 h3 {
		font-size: 24px;
	}

	.hero2 a.btn {
		padding: 15px 40px;
	}

	.hero2 i {
		opacity: 0;
	}

	.hero2 .background-image {
		background-size: cover;
	}
}

@media (max-width: 800px) {
	section.hero2 {
		padding: 20px 20px;
	}

	.hero2 {
		min-height: 50vh;
	}

	.hero2 h1 {
		font-size: 50px;
	}

}







.u-visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}


/* 
.contact form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60%;
	border: 1px solid rgb(167, 180, 187);
	border-radius: 10px;
	padding: 30px 30px 30px 30px;
}

.contact form button {
	padding: 18px 42px;
	color: white;
}

.contact form input, .contact form textarea {
	padding: 15px;
	margin: 0 0 20px 0;
	font-size: 18px;
	color: #555;
	flex-grow: 1;
}

.form-field {
  display: block;
  width: 100%;
  border: 1px solid rgb(167, 180, 187);
  border-radius: 5px;
}

@media (max-width: 800px) {
	.contact form {
		width: 90%;
	}
	.contact form input {
		flex-basis: 100%;
	}
} */



/* footer styles */

section.footer {
	padding: 50px 20px;
	background-color: rgb(58, 0, 40);
	color: white;
}

.footer .grid li {
	padding: 5px;
	flex-basis: 45%;
	text-align: left;
	margin: 10px 10px 10px 10px;
	opacity: .95;
}

.footer .title {
	font-family: "Quicksand", sans-serif;
	font-size: 25px;
	text-align: left;
	margin: 10px 35px;
}

.footer .grid .btn {
	font-family: "Quicksand", sans-serif;
	margin: 10px 20px;
	padding-left: 50px;
	padding-right: 50px;
	border-style: solid;
	border-width: 1px;
	border-color: white;
}

.footer .footer-left {
	font-family: "Quicksand", sans-serif;
	text-align: left;
}

.footer .footer-right {
	font-family: "Quicksand", sans-serif;
	text-align: left;
	font-size: 20px;
}

.footer .copyright {
	font-family: "Quicksand", sans-serif;
	font-size: 14px;
	text-align: left;
	margin: 10px 0px;
	color: rgb(225, 225, 225);
}

.footer h3.title {
	font-family: "Cinzel", sans-serif;
	font-size: 22px;
	text-align: left;
	margin: 10px 20px;
	color: rgb(225, 225, 225);
}

.footer a {
	opacity: .95;
}

@media (max-width: 1000px) {
	.footer .grid li {
		flex-basis: 100%;
		margin: 0 0;
	}

	.footer .title {
		margin: 10px 20px;
	}

	.footer .copyright {
		margin: 10px 20px;
		text-align: center;
	}

	.footer .footer-right {
		padding: 0 0;
	}
}