﻿:root {
	--primary-burgundy: #8B1538;
	--dark-burgundy: #6B0F25;
	--light-cream: #F5F3EF;
	--text-dark: #1A1A1A;
	--text-gray: #666;
	--white: #FFFFFF;
	--accent-gold: #D4A574;
	--shadow: rgba(139, 21, 56, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

html {
	background: var(--light-cream);
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	color: var(--text-dark);
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	background: var(--white);
}

html.no-scroll {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
}

.minimal-top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--white);
	box-shadow: 0 2px 20px var(--shadow);
	z-index: 1000;
	height: 70px;
}

.top-bar-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 30px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sidebar-toggle {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.sidebar-toggle span {
	width: 30px;
	height: 3px;
	background: var(--primary-burgundy);
	transition: all 0.3s ease;
}

.logo-compact {
	font-family: "Playfair Display", serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-burgundy);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.cta-button-top {
	background: var(--primary-burgundy);
	color: var(--white);
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.cta-button-top:hover {
	background: var(--dark-burgundy);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
}

.side-navigation {
	position: fixed;
	left: -300px;
	top: 70px;
	width: 300px;
	height: calc(100vh - 70px);
	background: var(--primary-burgundy);
	z-index: 999;
	transition: left 0.4s ease;
}

.side-navigation.active {
	left: 0;
}

.nav-content-inner {
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nav-item {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.nav-item:hover {
	padding-left: 15px;
	color: var(--accent-gold);
}

.main-content-wrapper {
	margin-top: 70px;
}

.full-width-banner {
	height: 70vh;
	background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.banner-content-center {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 30px;
	text-align: center;
	color: var(--white);
}

.hero-title-large {
	font-family: "Playfair Display", serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-family: "Playfair Display", serif;
	font-size: 32px;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 25px;
	opacity: 0.95;
}

.hero-description-text {
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
}

.cards-grid-container {
	margin: 80px 0;
}

.card-item-left-image,
.card-item-right-image {
	display: flex;
	max-width: 1400px;
	margin: 0 auto 100px;
	background: var(--white);
	box-shadow: 0 10px 60px var(--shadow);
	overflow: hidden;
}

.card-item-left-image {
	flex-direction: row;
}

.card-item-right-image {
	flex-direction: row-reverse;
}

.card-image-wrapper {
	flex: 0 0 50%;
	max-width: 50%;
}

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

.card-content-wrapper {
	flex: 0 0 50%;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.card-title-style {
	font-family: "Playfair Display", serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-burgundy);
	margin-bottom: 25px;
	line-height: 1.3;
}

.card-text-content p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-gray);
}

.card-button-style {
	align-self: flex-start;
	background: var(--primary-burgundy);
	color: var(--white);
	padding: 15px 40px;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	margin-top: 30px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.card-button-style:hover {
	background: var(--dark-burgundy);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.contact-form-section {
	padding: 100px 30px;
	background: var(--light-cream);
}

.form-inner {
	max-width: 800px;
	margin: 0 auto;
	background: var(--white);
	padding: 60px;
	border-radius: 0;
	box-shadow: 0 15px 50px var(--shadow);
}

.form-header {
	font-family: "Playfair Display", serif;
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-burgundy);
	text-align: center;
	margin-bottom: 50px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.form-field-group {
	display: flex;
	flex-direction: column;
}

.form-field-group label {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-burgundy);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
}

.form-field-group input,
.form-field-group textarea {
	padding: 18px 20px;
	border: 2px solid var(--light-cream);
	border-radius: 0;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	transition: all 0.3s ease;
	background: var(--light-cream);
}

.form-field-group input:focus,
.form-field-group textarea:focus {
	border-color: var(--primary-burgundy);
	outline: none;
	background: var(--white);
}

.form-field-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-button-styled {
	background: var(--primary-burgundy);
	color: var(--white);
	padding: 20px 50px;
	border: none;
	border-radius: 0;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	align-self: center;
	min-width: 200px;
}

.submit-button-styled:hover {
	background: var(--dark-burgundy);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
}

.bottom-footer {
	background: var(--primary-burgundy);
	color: var(--white);
	padding: 50px 30px;
	text-align: center;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.footer-inner a {
	color: var(--white);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 4px;
}

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

.footer-inner p {
	opacity: 0.8;
	font-size: 14px;
}

#hbgBDAgqmW-cookie {
	display: none;
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 600px;
	padding: 25px;
	background: var(--primary-burgundy);
	color: var(--white);
	border-radius: 0;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	z-index: 999999;
	font-size: 14px;
}

#hbgBDAgqmW-cookie.show {
	display: block;
}

#hbgBDAgqmW-cookie div {
	margin-bottom: 15px;
}

#hbgBDAgqmW-cookie a {
	color: var(--accent-gold);
	text-decoration: underline;
}

#hbgBDAgqmW-cookie button,
.cookie-accept-btn {
	float: right;
	border-radius: 0;
	background: var(--accent-gold);
	color: var(--text-dark);
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	padding: 12px 30px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
}

#hbgBDAgqmW-cookie button:hover,
.cookie-accept-btn:hover {
	background: var(--white);
}

@media (max-width: 1200px) {
	.hero-title-large {
		font-size: 42px;
	}

	.hero-subtitle {
		font-size: 28px;
	}

	.card-content-wrapper {
		padding: 50px;
	}

	.card-title-style {
		font-size: 32px;
	}
}

@media (max-width: 968px) {

	.card-item-left-image,
	.card-item-right-image {
		flex-direction: column;
	}

	.card-image-wrapper {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.card-image-wrapper img {
		height: 300px;
	}

	.card-content-wrapper {
		flex: 0 0 100%;
		padding: 40px 30px;
	}

	.hero-title-large {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 24px;
	}

	.form-inner {
		padding: 40px 30px;
	}

	.form-header {
		font-size: 32px;
	}
}

/* Contact Page Styles */
.contact-page-grid {
	max-width: 1400px;
	margin: 80px auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-content-box {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-info-block {
	padding: 30px 0;
	border-bottom: 1px solid var(--light-cream);
}

.contact-page-title {
	font-family: "Playfair Display", serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-burgundy);
}

.address-full-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-gray);
}

.contact-link-styled {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-burgundy);
	border-bottom: 2px solid var(--primary-burgundy);
	transition: all 0.3s ease;
	display: inline-block;
}

.contact-link-styled:hover {
	color: var(--dark-burgundy);
	border-color: var(--dark-burgundy);
}

.map-embed-container {
	min-height: 500px;
	border: 3px solid var(--light-cream);
	background: var(--light-cream);
}

/* Content Page Styles */
.content-page-style {
	padding: 80px 30px;
	background: var(--white);
}

.content-inner-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.page-title-style {
	font-family: "Playfair Display", serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-burgundy);
	text-align: center;
	margin-bottom: 60px;
}

.text-content-wrapper {
	background: var(--light-cream);
	padding: 60px;
	box-shadow: 0 10px 40px var(--shadow);
}

.section-title-style {
	font-family: "Playfair Display", serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-burgundy);
	margin: 40px 0 25px 0;
}

.text-content-wrapper p {
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-dark);
}

.content-list-style {
	margin: 25px 0;
	padding-left: 30px;
}

.content-list-style li {
	margin-bottom: 12px;
	line-height: 1.8;
	color: var(--text-dark);
}

@media (max-width: 968px) {
	.contact-page-grid {
		grid-template-columns: 1fr;
	}

	.map-embed-container {
		height: 400px;
	}

	.text-content-wrapper {
		padding: 40px 30px;
	}

	.page-title-style {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.banner-content-center {
		padding: 0 20px;
	}

	.hero-title-large {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 20px;
	}

	.hero-description-text {
		font-size: 16px;
	}

	.cta-button-top {
		padding: 10px 20px;
		font-size: 12px;
	}

	.logo-compact {
		font-size: 18px;
	}

	.form-inner {
		padding: 30px 20px;
	}

	.form-header {
		font-size: 28px;
	}

	.contact-form-section {
		padding: 60px 20px;
	}

	.cards-grid-container {
		margin: 60px 0;
	}

	.card-item-left-image,
	.card-item-right-image {
		margin-bottom: 60px;
	}

	.contact-page-grid {
		margin: 60px 20px;
		padding: 0;
	}

	.text-content-wrapper {
		padding: 30px 20px;
	}

	.page-title-style {
		font-size: 32px;
	}

	.section-title-style {
		font-size: 24px;
	}
}