@import url('plugins/fontawesome/css/all.min.css');

:root {
	--button-bg-color: #087299;
	--button-bg-color-hover: #03354f;
}

* {
	box-sizing: border-box;
}

body {
	max-width: 2560px;
	display: block;
	margin: 0 auto;
	background-color: white;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	text-align: center;
	font-size: medium;
	font-family: 'Manrope', system-ui, sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-variation-settings:
		'wdth' 100,
		'YTLC' 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	padding: 0.5em 0px;
	font-family: 'Parisienne', cursive;
	font-size: clamp(2rem, 5vw, 2.5rem);
}

img {
	max-width: 100%;
	border-style: none;
}

textarea {
	resize: vertical;
}

ul li {
	text-align: left;
}

a[href^='tel:'],
a[href^='mailto:'] {
	white-space: nowrap;
}

.Admin {
	background-color: #e9edf1;
	display: block;
	width: 100%;
	text-align: left;
}

.Admin a {
	display: inline-block;
	padding: 5px 0px 10px 5px;
	font-size: xx-small;
	color: #c5c7c8;
	text-decoration: none;
}

/* Back-to-top styles */
.BackToTop {
	position: fixed;
	z-index: 10;
	right: 10px;
	bottom: 10px;
	background-color: #fcf7f7;
	padding: 10px;
	color: white;
	font-family: sans-serif;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	font-size: medium;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

.BackToTop a {
	display: inline-block;
	padding: 10px;
	background-color: #771725;
	border-radius: 5px;
	color: white;
	text-decoration: none;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	font-size: 0.8em;
	transition:
		color 0.25s,
		background-color 0.25s;
	line-height: normal;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
}

.BackToTop a:hover {
	color: #ffffff;
	background-color: #b12534;
}

.BackToTop #BackToTop {
	position: relative;
	display: inline-block;
	cursor: pointer;
	font-size: 20px;
	width: 50px;
}

.BackToTop #BackToTop i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.BackToTop #CloseBTT {
	position: absolute;
	left: -10px;
	top: -10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.Box-2 {
	display: inline-block;
	width: 49%;
	padding: 35px;
	vertical-align: top;
}

.Box-2 p {
	text-align: left;
	line-height: 1.5em;
	font-size: 1.15em;
}

.Box-3 {
	display: inline-block;
	border: 1px solid;
	border-radius: 8px;
	padding: 5%;
	margin: 35px 2.5% 0 2.5%;
	width: 26%;
	vertical-align: top;
}

.Button a {
	font-family: 'Libre Baskerville', serif;
	padding: 15px;
	border-radius: 8px;
	text-decoration: none;
	color: white;
	background-color: #f54f39;
}

.Button a:hover {
	background-color: #d64230;
	text-shadow: 0 0 8px pink;
}

.Button-Menu a {
	padding: 8px 12px;
	border-radius: 16px;
	color: white;
	background-color: #7b5156;
}

.Button-Menu a:hover {
	background-color: #b12534;
}

.Container {
	width: 1600px;
	display: inline-block;
	max-width: 90%;
}

/* Contact details (Contact & Thank You pages) */
.Contact-Details {
	text-align: center;
	font-size: 1.15em;
	line-height: 1.6;
	color: #4a3335;
}

.Contact-Details p {
	margin: 0.4em 0;
	text-align: center !important;
}

.Contact-Details a {
	color: #771725;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.25s ease;
}

.Contact-Details a:hover {
	color: #b12534;
	text-decoration: underline;
}

.Contact-Details .Hours {
	margin-top: 1.5em;
	padding: 1.2em 1.5em;
	background-color: #f8f5f4;
	border: 1px solid rgba(119, 23, 37, 0.12);
	border-radius: 10px;
	display: inline-flex;
	flex-direction: column;
	gap: 0.35em;
	text-align: left;
}

.Contact-Details .Hours span {
	font-size: 0.95em;
	color: #4a3335;
	line-height: 1.5;
}

.Contact-Details .Hours span:first-child {
	font-family: 'Libre Baskerville', serif;
	font-size: 1.05em;
	color: #771725;
	margin-bottom: 0.4em;
}

/* Form styles */
.form {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.form-input-field.required {
	flex: 1;
}

.form-row {
	display: flex;
	flex-direction: row;
	gap: 1em;
	flex-wrap: wrap;
}

.form-row .form-input-field {
	flex: 1;
}

.button {
	padding: 0.75em 1em;
	background-color: #c4c6c8;
	color: black;
	font-weight: bold;
	font-size: 1em;
	border: none;
	border-radius: 10px;
	text-decoration: none;
	text-transform: capitalize;
	cursor: pointer;
	transition:
		color 0.25s,
		background-color 0.25s;
}

.button:hover {
	background-color: #a8bbce;
	color: black;
}

.form-input-field {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	text-align: left;
	min-width: 200px;
}

.form-field-label,
.form-field-input {
	width: 100%;
	font-size: 1em;
}

.form-field-input {
	padding: 0.5em;
	border: none;
	background-color: white;
	border-radius: 10px;
	border: 1px solid gray;
}

.form-field-input[type='date'],
textarea.form-field-input {
	font-size: 1.15em;
}

.form-field-input[type='file'] {
	cursor: pointer;
}

.form-input-field.required {
	flex: 1;
}

.form-input-field.required .form-field-label::before {
	content: '*';
	color: red;
}

.Header-Top {
	display: inline-block;
	width: 100%;
	background-color: #771725;
}

.Header-Top a {
	display: inline-block;
	color: white;
	text-decoration: none;
	margin: 8px 0px 8px 30px;
	float: right;
}

.Header-Top a:hover {
	text-shadow: 0 0 8px pink;
}

.Hero {
	position: relative;
	border-bottom: 5px solid #e9e9e9;
}

.Hero img {
	display: block;
	width: 100%;
	height: auto;
}

.Hero-Text {
	font-family: 'Parisienne', cursive;
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: bold;
	position: absolute;
	top: 12vw;
	left: 8vw;
	width: 30vw;
	color: #996667;
}

.Image-Circle img {
	display: inline-block;
	border-radius: 180px;
}

.Image-Icon i {
	font-size: 3em;
}

.Image-P {
	padding: 35px;
	background-color: white;
	box-shadow: 4px 4px 8px gray;
	transform: rotate(-2deg);
}

.Logo {
	display: inline-block;
	float: left;
	width: 300px;
	max-width: 100%;
}

/* Navigation styles */
.Nav-Row {
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	background-image: url('Images-Main/BG-Header.jpg');
	background-size: cover;
	border-bottom: 5px solid #e9e9e9;
}

.Nav-Inline-Block {
	display: inline-block;
	float: right;
	font-family: 'Libre Baskerville', serif;
	font-size: 1.2em;
	margin-top: 23px;
}

nav {
	display: flex;
	list-style: none;
	justify-content: center;
}

nav menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style-type: none;
	list-style-image: none;
	padding-left: 0px;
	margin: 0px;
}

nav li {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
	position: relative;
	height: 100%;
}
nav li ul {
	padding-left: 0px;
	text-align: left;
}
nav li ul li {
	text-align: left;
	padding-left: 0px;
	display: block;
}

nav a {
	text-decoration: none;
	color: #7b5156;
	padding: 1em;
	display: inline-block;
}

nav a:hover {
	text-decoration: none;
	font-weight: bold;
}

.menu-toggle {
	display: none;
	font-family: inherit;
	font-size: inherit;
}

/* Dropdown content */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #ffffff;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	top: 100%; /* Position the dropdown below the menu item */
	left: 0;
}

.dropdown-content a {
	text-align: left;
	display: block;
	padding: 8px 12px; /* Bring items closer to the left edge */
}

/* Show dropdown when active */
.dropdown-content.show {
	display: block;
}

.Quote {
	font-family: 'Parisienne', cursive;
	font-size: clamp(2.5rem, 5vw, 3rem);
	font-weight: bold;
}

.Row-Color {
	width: 100%;
}

.Row-Contact {
	background-color: #e9edf1;
	padding: 35px;
	background-image: url('Images-Main/BG-Header.jpg');
	background-size: cover;
}

.Rule-Logo {
	border-top: 1px solid gray;
	margin: 50px 0;
}

.Rule-Logo img {
	width: 100px;
	margin-top: -50px;
}

/* Scroll to highlight styles */
@keyframes highlight-ani {
	0% {
		background-color: transparent;
	}
	25% {
		background-color: #fff59d;
	}
	75% {
		background-color: #fff59d;
	}
	100% {
		background-color: transparent;
	}
}

.ScrollToHighlight-anchor-highlight {
	animation: highlight-ani 2s ease;
}

.ScrollToHighlight-anchor-highlight:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 9999999999;
	opacity: 0.25;
	pointer-events: none;
	animation-name: ScrollToHighlight-highlight-ani;
	animation-duration: 1.5s;
	animation-iteration-count: 1;
}

/* Scroll to highlight styles */
@keyframes highlight-ani {
	0% {
		background-color: transparent;
	}
	25% {
		background-color: #fff59d;
	}
	75% {
		background-color: #fff59d;
	}
	100% {
		background-color: transparent;
	}
}

.ScrollToHighlight-anchor-highlight {
	position: relative;
}

.Watermark {
	background-image: url('Images-Main/Watermark.png');
	background-size: 25%;
	background-repeat: no-repeat;
	background-position: left center;
}

/* Media Queries */

@media (max-width: 1250px) {
	.Box-2 {
		width: 100%;
		padding: 35px 0;
	}

	.Box-3 {
		width: 95%;
		margin-left: 0;
		margin-right: 0;
		padding: 15px;
	}

	.Hero-Text {
		font-size: 4.5vw;
		font-weight: bold;
		position: absolute;
		top: 12vw;
		left: 8vw;
		width: 45vw;
		color: #996667;
	}

	.Image-Circle,
	.Image-P {
		width: 500px;
		max-width: 90%;
	}
}

@media screen and (max-width: 850px) {
	.hil-container {
		display: flex;
		flex-direction: column;
	}

	.hil-menu {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	nav {
		flex-direction: column;
		width: 100%;
		align-items: center;
	}

	nav ul {
		margin-top: 0;
		padding-left: 0;
		width: 100%;
		text-align: center;
	}

	nav li {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		position: relative;
	}

	nav li a {
		width: 100%;
	}

	.menu-toggle {
		display: flex;
		justify-content: center; /* Center the button horizontally */
		gap: 0.5em;
		align-items: center;
		padding: 1em;
		width: 100%;
		border: none;
		background-color: transparent;
		cursor: pointer;
	}

	.menu-toggle i {
		font-size: 1.5em;
	}

	#main-menu {
		display: none;
		background-color: #ffffff;
		width: 100%;
	}

	.menu-toggle .close {
		display: none;
	}

	#main-nav.active .menu-toggle .close {
		display: var(--fa-display, inline-block);
	}

	#main-nav.active .menu-toggle .open {
		display: none;
	}

	#main-nav.active #main-menu {
		display: flex;
		flex-direction: column;
	}

	.dropdown-content {
		position: static;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.dropdown-content.show {
		display: block;
	}

	/* Prevent underlining dropdown links on hover/focus */
	nav .dropdown-content a,
	nav .dropdown-content a:active,
	nav .dropdown-content a:focus {
		text-decoration: none !important;
	}

	/* Center dropdown items on mobile */
	.dropdown-content a {
		text-align: center;
	}
}

@media only screen and (max-width: 600px) {
	.captcha-field {
		flex-direction: column; /* Stack elements vertically */
		align-items: flex-start;
	}

	.captcha {
		display: flex;
		flex-direction: row; /* Ensure the CAPTCHA image and refresh button are side by side */
		align-items: center;
		justify-content: flex-start;
		width: 100%;
	}

	.captcha-image {
		margin-right: 10px; /* Ensure space between the CAPTCHA image and the refresh button */
		max-width: 75%; /* Ensure the image doesn't take up too much space */
	}

	.captcha-refresh-btn {
		margin-top: 0; /* Remove top margin */
		padding: 0;
		height: 100%; /* Align with the height of the CAPTCHA image */
	}

	.form-input-field.required {
		width: 100%; /* Ensure the input field takes full width */
	}
}

@media (max-width: 560px) {
	.Logo {
		float: none;
	}

	.Nav-Inline-Block {
		float: none;
		width: 100%;
		margin-top: 25px;
	}
}

@media screen and (max-width: 520px) {
	.hil-pagination .print-friendly {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex: 100%;
	}

	.hil-pagination .info,
	.hil-pagination .pages {
		flex: 1;
	}

	.hil-pagination .info {
		text-align: center;
	}
}

@media (min-width: 2560px) {
	.Hero-Text {
		position: static;
		width: 100%;
		left: auto;
		top: auto;

		margin: 0 auto;
		padding: 25px 0;

		text-align: center;
		display: block;

		font-size: 80px;
	}
}

/* Premium Footer Styling */
.site-footer {
	background-color: #f8f5f4;
	background-image: url('Images-Main/BG-Header.jpg');
	background-size: cover;
	background-position: center top;
	color: #4a3335;
	padding: 70px 0 30px 0;
	font-family: 'Manrope', system-ui, sans-serif;
	border-top: 5px solid #771725;
}

.site-footer .Container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 1400px;
	max-width: 92%;
	margin: 0 auto;
	text-align: left;
}

.footer-content {
	display: grid;
	grid-template-columns: 1.35fr 0.95fr 0.95fr;
	gap: 50px;
	align-items: start;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.footer-logo-img {
	height: 75px;
	width: auto;
	filter: drop-shadow(0 2px 4px rgba(119, 23, 37, 0.12));
}

.footer-title {
	font-family: 'Libre Baskerville', serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: #771725;
	margin: 0;
	line-height: 1.25;
}

.footer-heading {
	font-family: 'Libre Baskerville', serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #771725;
	margin: 0 0 6px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(119, 23, 37, 0.15);
	letter-spacing: 0.02em;
}

.footer-contact {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-contact p {
	margin: 0;
	font-size: 0.95rem;
	color: #4a3335;
	line-height: 1.5;
}

.footer-contact a {
	color: #771725;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.25s ease;
}

.footer-contact a:hover {
	color: #b12534;
	text-decoration: underline;
}

.footer-contact i {
	color: #771725;
	margin-right: 10px;
	width: 1.2em;
	text-align: center;
}

.footer-hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 0.95rem;
	color: #4a3335;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(123, 81, 86, 0.12);
}

.footer-hours-list li:last-child {
	border-bottom: none;
}

.footer-hours-list li span:first-child {
	font-weight: 600;
	color: #5a3d40;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-nav a {
	color: #4a3335;
	text-decoration: none;
	font-family: 'Manrope', system-ui, sans-serif;
	font-size: 0.98rem;
	font-weight: 500;
	padding: 8px 0;
	border-bottom: 1px solid rgba(123, 81, 86, 0.1);
	transition:
		color 0.25s ease,
		padding-left 0.25s ease,
		border-color 0.25s ease;
}

.footer-nav a:last-child {
	border-bottom: none;
}

.footer-nav a:hover {
	color: #b12534;
	padding-left: 8px;
	border-color: rgba(177, 37, 52, 0.3);
}

.footer-admin {
	border-top: 1px solid rgba(123, 81, 86, 0.18);
	padding-top: 20px;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-admin a {
	font-size: 0.78rem;
	color: #9a7a7d;
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-admin a:hover {
	color: #771725;
}

@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: 50px 0 25px 0;
	}
	.site-footer .Container {
		gap: 35px;
	}
	.footer-content {
		grid-template-columns: 1fr;
		gap: 35px;
		text-align: center;
	}
	.footer-column {
		align-items: center;
	}
	.footer-contact p,
	.footer-hours-list li,
	.footer-nav a {
		text-align: center;
		justify-content: center;
	}
	.footer-hours-list li {
		flex-direction: column;
		gap: 2px;
		padding-bottom: 12px;
	}
	.footer-heading {
		width: 100%;
	}
	.footer-nav a:hover {
		padding-left: 0;
	}
}
