/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
	--color-dark: #2e4148;
	--color-accent: #3d6b64;
	--color-gold: #d9a441;
	--color-cream: #faf6ea;
	--color-grey: #f3eee1;
	--color-card: #faf8f3;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

body {
	font-family: 'Lora', serif;
	color: var(--color-dark);
}

.post, .page {
    margin: 0!important;
}

h1, h2, h3 {
	margin: 0 0 20px;
	color: var(--color-dark);
	font-family: 'Playfair Display', serif;
	font-weight: 600;
}

h1 {
	font-size: 300%;
}

h2 {
	font-size: 200%;
}

h3 {
	font-size: 130%;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--color-accent);
	transition: .3s;
}

a:hover {
	color: var(--color-dark);
	transition: .3s;
}

.label {
	margin-bottom: 10px;
	color: var(--color-accent);
	font-size: 90%;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.label-light {
	color: #fff;
}

.link-arrow {
	display: inline-block;
	color: var(--color-accent);
	font-size: 90%;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: underline;
}

.link-arrow:hover {
	color: var(--color-dark);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section {
	padding: 100px 0;
	background: var(--color-cream);
	color: var(--color-dark);
}

section.black,
.black {
	background: var(--color-dark);
	color: #fff;
}

section.black h1,
section.black h2,
section.black h3,
.black h1,
.black h2,
.black h3 {
	color: #fff;
}

section.black .label,
.black .label {
	color: var(--color-gold);
}

section.black p,
.black p {
	color: rgba(255, 255, 255, .85);
}

section.grey,
.grey {
	background: var(--color-grey);
	color: var(--color-dark);
}

.split-content {
	padding: 5rem 4rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card-block {
	background: var(--color-card);
    border: 1px solid #e7e1d1;
    border-radius: 10px;
	padding: 1.75rem;
}

.black .card-block {
	background: rgba(255, 255, 255, .06);
	border: 1px solid #555;
    padding: 0;
}

.card-block img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.card-block-content {
	padding: 1.75rem;
}

.stars {
	margin-bottom: 1rem;
	color: var(--color-gold);
	letter-spacing: 2px;
}

.hours-list {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.hours-list li {
	display: flex;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid rgba(46, 65, 72, .15);
}

.hours-list li:last-child {
	border-bottom: none;
}

.black .hours-list li,
.site-footer .hours-list li {
	border-bottom-color: rgba(255, 255, 255, .15);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-white,
.btn-black,
.wpcf7-form .wpcf7-submit {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 0;
	font-size: 90%;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	transition: .3s;
}

.btn-white,
.wpcf7-form .wpcf7-submit {
	background: #fff;
	border: 1px solid var(--color-dark);
	color: var(--color-dark);
}

.btn-white:hover,
.wpcf7-form .wpcf7-submit:hover {
	background: var(--color-dark);
	color: #fff;
}

.btn-black {
	background: var(--color-accent);
	border: 1px solid var(--color-accent);
	color: #fff;
}

.btn-black:hover {
	background: var(--color-dark);
	border-color: var(--color-dark);
	color: #fff;
}

/* ==========================================================================
   FORMS (Contact Form 7)
   ========================================================================== */

.wpcf7-form p {
	margin-bottom: 1rem;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, .85);
	font-size: 90%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	font-family: 'Lora', serif;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: rgba(255, 255, 255, .5);
}

.wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
}

.wpcf7-not-valid-tip {
	margin-top: 5px;
	color: var(--color-gold);
	font-size: 85%;
}

.wpcf7-response-output {
	margin-top: 20px !important;
	padding: 12px 16px !important;
	border-radius: 0 !important;
	color: #fff;
	font-size: 90%;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-content.black {
	border: none;
	border-radius: 0;
}

.modal-header {
	padding: 1.5rem 2rem;
	border-bottom-color: rgba(255, 255, 255, .15);
}

.modal-body {
	padding: 0 2rem 2rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
	position: relative;
	z-index: 20;
	padding: 15px 0;
	background: var(--color-dark);
}

.navbar {
	padding: 0;
}

.page-template-home-php .site-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: transparent;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navbar-logo {
	width: auto;
	height: 75px;
	object-fit: contain;
	border-radius: 50%
}

.navbar-brand-text,
.footer-brand {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.brand-title {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 80%;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.brand-subtitle {
	color: rgba(255, 255, 255, .65);
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.footer-brand .brand-title {
	font-size: 20px;
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, .5);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
	margin: 0 16px;
	padding: 0 !important;
	color: #fff !important;
	font-size: 90%;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
	border-bottom: 1px solid #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
	position: relative;
	height: 100ch;
	overflow: hidden;
}

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

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(46, 65, 72, .75), rgba(46, 65, 72, 0));
}

.hero-content {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 55%;
    left: 0;
    z-index: 2;
    transform: translate(0, -50%);
	color: #fff;
}

.hero-content h1 {
	color: #fff;
	font-size: 350%;
    margin: 20px 0 35px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
	padding: 90px 0 40px;
	background: var(--color-dark);
	color: #fff;
}

.footer-logo {
	width: auto;
    height: 75px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-brand {
	margin: 0;
}

.footer-title {
	margin-bottom: 20px;
	color: #fff;
	font-size: 105%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.site-footer p {
	color: rgba(255, 255, 255, .8);
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: var(--color-gold);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	justify-content: space-between;
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer-bottom .copyright {
	color: rgba(255, 255, 255, .7);
	font-size: 85%;
}

.ti-widget.ti-goog .ti-review-item>.ti-inner, .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
	background-color: #faf8f3 !important;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

@media only screen and (max-width: 991px) {
	.page-template-home-php .site-header {
		position: relative;
		background: var(--color-dark);
	}
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 220%;
	}

	h2 {
		font-size: 175%;
	}

	.hero {
		height: 560px;
	}

	.split-content {
		padding: 2.5rem 5%;
		text-align: center;
	}
}
