/* Front Page Styles - Wedding MC Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
	--font-heading: 'Cormorant Garamond', serif;
	--font-body: 'Manrope', sans-serif;

	--primary-color: #2d7a6e;
	--primary-foreground: #ffffff;

	--background: #faf9f5;
	--foreground: #3d3029;

	--hero-overlay: rgba(61, 48, 41, 0.4);
}

/* Header & Navigation */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.site-header.scrolled {
	background-color: rgba(250, 249, 245, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	max-width: 1400px;
	margin: 0;
	padding: 1.25rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* Site Branding */
.site-branding {
	display: flex;
	align-items: center;
}

.site-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.site-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-header.scrolled .site-title a {
	color: var(--foreground);
}

.site-title a:hover {
	opacity: 0.8;
}

/* Main Navigation - Override Underscores defaults */
.main-navigation {
	flex: 1;
	display: flex !important;
	justify-content: flex-end;
	align-items: center;
	width: auto !important;
}

.main-navigation ul {
	display: flex !important;
	margin: 0;
	padding: 0;
}

.main-navigation ul ul {
	display: none;
}

.navigation-wrapper {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.primary-menu {
	display: flex !important;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.primary-menu li {
	margin: 0;
	padding: 0;
	position: relative;
}

.primary-menu a {
	display: block;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
	position: relative;
}

.site-header.scrolled .primary-menu a {
	color: var(--foreground);
}

.primary-menu a:hover,
.primary-menu a:focus {
	opacity: 0.8;
}

.primary-menu a::after {
	content: '';
	position: absolute;
	bottom: -0.25rem;
	left: 0;
	width: 0;
	height: 1px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus::after {
	width: 100%;
}

/* Header Phone Button */
.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	padding: 0.625rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 9999px;
}

.site-header.scrolled .header-phone {
	color: var(--foreground);
	border-color: rgba(61, 48, 41, 0.3);
}

.header-phone svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.header-phone:hover,
.header-phone:focus {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.site-header.scrolled .header-phone:hover,
.site-header.scrolled .header-phone:focus {
	background-color: rgba(61, 48, 41, 0.05);
	border-color: rgba(61, 48, 41, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 0.375rem;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	width: 2rem;
	height: 2rem;
	position: relative;
}

.menu-toggle span {
	display: block;
	width: 1.5rem;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.site-header.scrolled .menu-toggle span {
	background-color: var(--foreground);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: rotate(45deg) translate(0.25rem, 0.25rem);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.header-container {
		padding: 1rem 1.5rem;
	}

	.menu-toggle {
		display: flex !important;
	}

	.main-navigation ul {
		display: none !important;
	}

	.main-navigation.toggled ul {
		display: flex !important;
	}

	.navigation-wrapper {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: var(--background);
		flex-direction: column;
		justify-content: flex-start;
		padding: 5rem 2rem 2rem;
		gap: 0;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		overflow-y: auto;
	}

	.navigation-wrapper.active {
		right: 0;
	}

	.primary-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.primary-menu li {
		width: 100%;
		border-bottom: 1px solid rgba(61, 48, 41, 0.1);
	}

	.primary-menu a {
		padding: 1rem 0;
		color: var(--foreground);
		font-size: 1rem;
	}

	.primary-menu a::after {
		display: none;
	}

	.header-phone {
		width: 100%;
		justify-content: center;
		margin-top: 2rem;
		padding: 0.875rem 1.5rem;
		color: #ffffff;
		border-color: rgba(255, 255, 255, 0.3);
		background-color: var(--primary-color);
		border-color: transparent;
	}

	.header-phone:hover,
	.header-phone:focus {
		background-color: var(--primary-color);
		opacity: 0.9;
		border-color: transparent;
	}
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
	.header-container {
		padding: 1rem 1.5rem;
		gap: 1rem;
	}

	.primary-menu {
		gap: 1rem;
	}

	.primary-menu a {
		font-size: 0.8125rem;
	}

	.header-phone {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.site-title {
		font-size: 1.25rem;
	}

	.menu-toggle {
		display: none !important;
	}

	.main-navigation ul {
		display: flex !important;
	}
}

/* Base styles */
body {
	font-family: var(--font-body);
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

/* No padding on front page since header is transparent */
body.home {
	padding-top: 0;
}

/* Remove margins on front page main */
body.home #primary,
body.home .site-main {
	margin: 0;
	padding: 0;
}

/* Add padding for other pages */
body:not(.home) {
	padding-top: 80px;
}

@media (max-width: 768px) {
	body:not(.home) {
		padding-top: 70px;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.2;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

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

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--hero-overlay);
}

.hero-content {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: center;
}

.hero-subtitle {
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 1.5rem;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 300;
	color: #ffffff;
	line-height: 1.1;
	max-width: 64rem;
	margin: 0 auto 1.5rem;
}

.hero-title-italic {
	font-style: italic;
}

.hero-description {
	font-family: var(--font-body);
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	max-width: 32rem;
	margin: 0 auto 2.5rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}
}

.hero-button-primary,
.hero-button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: all 0.3s ease;
}

.hero-button-primary {
	background-color: var(--primary-color);
	color: var(--primary-foreground);
	border: none;
}

.hero-button-primary:hover {
	opacity: 0.9;
}

.hero-button-primary:visited, a.hero-check-link:visited, a.package-button:visited , .hero-scroll-arrow:visited {
	opacity: 0.9;
	color: #fff;
}

.hero-button-secondary {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-button-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.hero-button-secondary svg {
	width: 1rem;
	height: 1rem;
}

.hero-check-link {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline;
	text-underline-offset: 0.25em;
	transition: color 0.3s ease;
}

.hero-check-link:hover {
	color: #ffffff;
}

/* About Section */
.about-section {
	padding: 6rem 1.5rem;
	background-color: var(--background);
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--foreground);
	text-align: center;
	margin: 0 0 4rem;
	line-height: 1.2;
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 900px) {
	.about-content {
		flex-direction: row;
		align-items: center;
		gap: 4rem;
	}
}

.about-image {
	flex: 0 0 100%;
}

@media (min-width: 900px) {
	.about-image {
		flex: 0 0 45%;
	}
}

.about-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	display: block;
}

.about-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 2.625rem);
	font-weight: 400;
	color: var(--foreground);
	margin: 0;
	line-height: 1.2;
}

.about-subtitle em {
	font-style: italic;
	color: var(--primary-color);
}

.about-description {
	font-family: var(--font-body);
	font-size: 1.125rem;
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.7;
	margin: 0;
}

.about-skills {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-top: 1rem;
}

@media (min-width: 640px) {
	.about-skills {
		grid-template-columns: 1fr 1fr;
	}
}

.skill-pill {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: rgba(45, 122, 110, 0.1);
	border-radius: 9999px;
	padding: 0.875rem 1.25rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--foreground);
	transition: all 0.3s ease;
}

.skill-pill:hover {
	background-color: rgba(45, 122, 110, 0.15);
	transform: translateY(-2px);
}

.skill-icon {
	flex-shrink: 0;
	color: var(--primary-color);
}

@media (max-width: 768px) {
	.about-section {
		padding: 4rem 1.5rem;
	}

	.section-title {
		margin-bottom: 3rem;
	}

	.about-skills {
		grid-template-columns: 1fr;
	}

	.about-stats-bar {
		flex-direction: column;
		gap: 2.5rem;
		padding: 3rem 1.5rem;
	}
}

/* About Stats Bar */
.about-stats-bar {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 4rem 0;
	margin-top: 4rem;
	border-top: 1px solid rgba(61, 48, 41, 0.1);
	background: transparent;
}

.about-stats-bar .stat-item {
	text-align: center;
}

.about-stats-bar .stat-number {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 300;
	color: var(--foreground);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.about-stats-bar .stat-label {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--foreground);
	opacity: 0.7;
	font-weight: 400;
}

/* How It Works Section */
.how-it-works-section {
	padding: 6rem 1.5rem;
	background-color: #f5f3ed;
}

/* Fade In Up Animation Keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.process-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
}

@media (min-width: 1024px) {
	.process-steps {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background-color: #b8d4d1;
	color: #2d5f56;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
}

.step-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--foreground);
	opacity: 0.6;
	margin: 0;
}

.step-content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
}

.step-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--foreground);
	margin: 0;
	line-height: 1.3;
}

.step-description {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.6;
	margin: 0;
	opacity: 0.85;
	text-align: center;
}

@media (max-width: 767px) {
	.how-it-works-section {
		padding: 4rem 1.5rem;
	}

	.process-steps {
		gap: 2rem;
	}

	.step-number {
		width: 4rem;
		height: 4rem;
		font-size: 1.25rem;
	}

	.step-title {
		font-size: 1.25rem;
	}
}

/* Packages Section */
.packages-section {
	padding: 6rem 1.5rem;
	background-color: var(--background);
}

.packages-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 900px) {
	.packages-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.package-card {
	background-color: #ffffff;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.package-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-card-featured {
	border: 2px solid var(--primary-color);
	box-shadow: 0 8px 30px rgba(45, 122, 110, 0.2);
}

.package-badge {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary-color);
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	white-space: nowrap;
}

.package-header {
	text-align: center;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(61, 48, 41, 0.1);
	margin-bottom: 1.5rem;
}

.package-name {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--foreground);
	margin: 0 0 1rem;
	line-height: 1.3;
}

.package-price {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 300;
	color: var(--primary-color);
	line-height: 1;
}

.package-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.package-description {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.6;
	margin: 0;
	opacity: 0.85;
}

.package-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.package-features li {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.5;
	position: relative;
	padding-left: 1.75rem;
}

.package-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: 500;
	font-size: 1.125rem;
}

.package-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1rem 2rem;
	border: 1px solid var(--primary-color);
	border-radius: 9999px;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: var(--primary-color);
	transition: all 0.3s ease;
	margin-top: auto;
}

.package-button:hover {
	background-color: var(--primary-color);
	color: #ffffff;
}

.package-button-primary {
	background-color: var(--primary-color);
	color: #ffffff;
	border-color: var(--primary-color);
}

.package-button-primary:hover {
	background-color: rgba(45, 122, 110, 0.9);
	border-color: rgba(45, 122, 110, 0.9);
}

@media (max-width: 899px) {
	.packages-section {
		padding: 4rem 1.5rem;
	}

	.package-card {
		padding: 1.5rem;
	}

	.package-name {
		font-size: 1.25rem;
	}

	.package-price {
		font-size: 2rem;
	}
}

/* Gallery Section */
.gallery-section {
	padding: 6rem 1.5rem;
	background-color: #ffffff;
}

/* Desktop Gallery Video */
.gallery-video-desktop {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-video-wrapper {
	position: relative;
	width: 100%;
	background-color: #000;
	background-size: cover;
	background-position: center;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	aspect-ratio: 16 / 9;
}

.gallery-video-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-video-wrapper.loaded .gallery-video-player,
.gallery-video-wrapper.playing .gallery-video-player {
	opacity: 1;
}

.gallery-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5rem;
	height: 5rem;
	background-color: rgba(45, 122, 110, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 10;
}

.gallery-video-play:hover {
	background-color: var(--primary-color);
	transform: translate(-50%, -50%) scale(1.1);
}

.gallery-video-play svg {
	width: 2.5rem;
	height: 2.5rem;
	margin-left: 0.3rem;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gallery-video-wrapper.playing .gallery-video-play {
	opacity: 0;
	pointer-events: none;
}

.gallery-video-wrapper:hover.playing .gallery-video-play {
	opacity: 1;
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile Gallery Video */
.gallery-video-mobile {
	display: none;
	max-width: 100%;
	margin: 0 auto;
}

.gallery-video-slider {
	position: relative;
	overflow: hidden;
}

.gallery-video-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-video-slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.gallery-video-mobile .gallery-video-wrapper {
	aspect-ratio: 16 / 9;
}

.gallery-video-mobile .gallery-video-play {
	width: 4rem;
	height: 4rem;
}

.gallery-video-mobile .gallery-video-play svg {
	width: 2rem;
	height: 2rem;
}

/* Navigation */
.gallery-video-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2rem;
	padding: 0 1rem;
}

.gallery-video-prev,
.gallery-video-next {
	width: 3rem;
	height: 3rem;
	background-color: rgba(45, 122, 110, 0.1);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.gallery-video-prev:hover,
.gallery-video-next:hover {
	background-color: var(--primary-color);
	color: #ffffff;
	transform: scale(1.05);
}

.gallery-video-prev:disabled,
.gallery-video-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.gallery-video-prev:disabled:hover,
.gallery-video-next:disabled:hover {
	background-color: rgba(45, 122, 110, 0.1);
	color: var(--primary-color);
	transform: none;
}

.gallery-video-dots {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.gallery-video-dots .dot {
	width: 0.5rem;
	height: 0.5rem;
	background-color: rgba(61, 48, 41, 0.3);
	border-radius: 50%;
	transition: all 0.3s ease;
	cursor: pointer;
}

.gallery-video-dots .dot.active {
	background-color: var(--primary-color);
	transform: scale(1.3);
}

.gallery-video-dots .dot:hover {
	background-color: rgba(45, 122, 110, 0.6);
}

/* Responsive */
@media (max-width: 1023px) {
	.gallery-video-desktop {
		display: none;
	}

	.gallery-video-mobile {
		display: block;
	}
}

@media (max-width: 767px) {
	.gallery-section {
		padding: 4rem 1rem;
	}

	.gallery-video-nav {
		margin-top: 1.5rem;
	}

	.gallery-video-prev,
	.gallery-video-next {
		width: 2.5rem;
		height: 2.5rem;
	}

	.gallery-video-prev svg,
	.gallery-video-next svg {
		width: 1rem;
		height: 1rem;
	}

	.gallery-video-mobile .gallery-video-play {
		width: 3.5rem;
		height: 3.5rem;
	}

	.gallery-video-mobile .gallery-video-play svg {
		width: 1.75rem;
		height: 1.75rem;
	}
}

@media (max-width: 480px) {
	.gallery-video-mobile .gallery-video-wrapper {
		aspect-ratio: 16 / 9;
	}
}

/* Testimonials Section */
.testimonials-section {
	padding: 6rem 1.5rem;
	background-color: var(--background);
}

/* Desktop Video Testimonials */
.video-testimonials-desktop {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.video-testimonial-card {
	background-color: #ffffff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.video-testimonial-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-testimonial-wrapper {
	position: relative;
	width: 100%;
	height: 540px;
	background-color: #000;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.video-testimonial-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-testimonial-wrapper.loaded .video-testimonial-player,
.video-testimonial-wrapper.playing .video-testimonial-player {
	opacity: 1;
}

.video-testimonial-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4.5rem;
	height: 4.5rem;
	background-color: rgba(45, 122, 110, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 10;
}

.video-testimonial-play:hover {
	background-color: var(--primary-color);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-testimonial-play svg {
	width: 2rem;
	height: 2rem;
	margin-left: 0.2rem;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-testimonial-wrapper.playing .video-testimonial-play {
	opacity: 0;
	pointer-events: none;
}

.video-testimonial-wrapper:hover.playing .video-testimonial-play {
	opacity: 1;
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile Video Testimonials */
.video-testimonials-mobile {
	display: none;
	max-width: 500px;
	margin: 0 auto;
}

.video-testimonial-slider {
	position: relative;
	overflow: hidden;
}

.video-testimonial-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-testimonial-slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.video-testimonials-mobile .video-testimonial-wrapper {
	height: 650px;
}

.video-testimonials-mobile .video-testimonial-play {
	width: 4rem;
	height: 4rem;
}

.video-testimonials-mobile .video-testimonial-play svg {
	width: 1.75rem;
	height: 1.75rem;
}

/* Navigation */
.video-testimonials-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2rem;
	padding: 0 1rem;
}

.video-testimonials-prev,
.video-testimonials-next {
	width: 3rem;
	height: 3rem;
	background-color: rgba(45, 122, 110, 0.1);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.video-testimonials-prev:hover,
.video-testimonials-next:hover {
	background-color: var(--primary-color);
	color: #ffffff;
	transform: scale(1.05);
}

.video-testimonials-prev:disabled,
.video-testimonials-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.video-testimonials-prev:disabled:hover,
.video-testimonials-next:disabled:hover {
	background-color: rgba(45, 122, 110, 0.1);
	color: var(--primary-color);
	transform: none;
}

.video-testimonials-dots {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.video-testimonials-dots .dot {
	width: 0.5rem;
	height: 0.5rem;
	background-color: rgba(61, 48, 41, 0.3);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.video-testimonials-dots .dot.active {
	background-color: var(--primary-color);
	transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1023px) {
	.video-testimonials-desktop {
		display: none;
	}

	.video-testimonials-mobile {
		display: block;
	}
}

@media (max-width: 767px) {
	.testimonials-section {
		padding: 4rem 1rem;
	}

	.video-testimonials-mobile .video-testimonial-wrapper {
		height: 550px;
	}

	.video-testimonials-nav {
		margin-top: 1.5rem;
	}

	.video-testimonials-prev,
	.video-testimonials-next {
		width: 2.5rem;
		height: 2.5rem;
	}

	.video-testimonials-prev svg,
	.video-testimonials-next svg {
		width: 1rem;
		height: 1rem;
	}

	.video-testimonials-mobile .video-testimonial-play {
		width: 3.5rem;
		height: 3.5rem;
	}

	.video-testimonials-mobile .video-testimonial-play svg {
		width: 1.5rem;
		height: 1.5rem;
	}
}

@media (max-width: 480px) {
	.video-testimonials-mobile .video-testimonial-wrapper {
		height: 450px;
	}
}

/* FAQ Section */
.faq-section {
	padding: 6rem 1.5rem;
	background-color: #ffffff;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--background);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--foreground);
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: var(--primary-color);
}

.faq-question span:first-child {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(45, 122, 110, 0.1);
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
	background-color: var(--primary-color);
	color: #ffffff;
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	opacity: 1;
	padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 300;
	color: var(--foreground);
	line-height: 1.7;
	margin: 0;
	opacity: 0.85;
}

@media (max-width: 767px) {
	.faq-section {
		padding: 4rem 1.5rem;
	}

	.faq-question {
		padding: 1.25rem;
		font-size: 1rem;
	}

	.faq-icon {
		width: 1.75rem;
		height: 1.75rem;
		font-size: 1.25rem;
	}

	.faq-item.active .faq-answer {
		padding: 0 1.25rem 1.25rem;
	}
}

/* Contact Section */
.contact-section {
	padding: 6rem 1.5rem;
	background-color: #ffffff;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 900px) {
	.contact-content {
		grid-template-columns: 1fr 1.5fr;
	}
}

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-icon {
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(45, 122, 110, 0.1);
	border-radius: 0.5rem;
	color: var(--primary-color);
}

.contact-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.contact-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--foreground);
	opacity: 0.7;
	margin: 0 0 0.25rem;
}

.contact-value {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	color: var(--foreground);
	margin: 0;
	line-height: 1.5;
}

.contact-value[href] {
	color: var(--primary-color);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.contact-value[href]:hover {
	opacity: 0.8;
}

/* Contact Form */
.contact-form-wrapper {
	background-color: var(--background);
	border-radius: 1rem;
	padding: 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--foreground);
	margin: 0;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(61, 48, 41, 0.2);
	border-radius: 0.5rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 300;
	color: var(--foreground);
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(45, 122, 110, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--foreground);
	opacity: 0.5;
}

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

.form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 2rem;
	background-color: var(--primary-color);
	color: #ffffff;
	border: none;
	border-radius: 9999px;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit:hover {
	background-color: rgba(45, 122, 110, 0.9);
	transform: translateY(-1px);
}

.form-submit:active {
	transform: translateY(0);
}

.form-submit svg {
	width: 1rem;
	height: 1rem;
}

@media (max-width: 899px) {
	.contact-section {
		padding: 4rem 1.5rem;
	}

	.contact-form-wrapper {
		padding: 1.5rem;
	}

	.form-submit {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Hero Scroll Arrow */
.hero-scroll-arrow {
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	animation: bounce 2s infinite;
	transition: all 0.3s ease;
	text-decoration: none;
}

.hero-scroll-arrow:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Video Section */
.video-section {
	padding: 4rem 1.5rem;
	background-color: var(--background);
}

.video-wrapper {
	max-width: 900px;
	margin: 0 auto;
	cursor: pointer;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 aspect ratio */
	background-color: #000;
}

.video-thumbnail-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-thumbnail-img {
	opacity: 0.7;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5rem;
	height: 5rem;
	background-color: rgba(45, 122, 110, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-wrapper:hover .video-play-button {
	background-color: var(--primary-color);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button svg {
	width: 2rem;
	height: 2rem;
	margin-left: 0.25rem;
}

.video-caption {
	text-align: center;
	padding: 1rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--foreground);
	opacity: 0.7;
	margin: 0;
	background-color: #ffffff;
}

/* Video Modal */
.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
	opacity: 1;
	visibility: visible;
}

.video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.video-modal-content {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 1200px;
	margin: 2rem;
}

.video-modal-close {
	position: absolute;
	top: -3rem;
	right: 0;
	background: none;
	border: none;
	color: #ffffff;
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.video-modal-close:hover {
	opacity: 0.7;
}

.video-modal-close svg {
	width: 1.5rem;
	height: 1.5rem;
}

.video-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 aspect ratio for desktop */
	background-color: #000;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Mute Toggle Button */
.mute-toggle {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	border: none;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #ffffff;
	transition: all 0.3s ease;
	z-index: 10;
}

.mute-toggle:hover {
	background-color: rgba(0, 0, 0, 0.8);
	transform: scale(1.05);
}

.mute-toggle svg {
	width: 1.5rem;
	height: 1.5rem;
}

.mute-toggle .mute-icon-off {
	display: none;
}

/* About Section Video */
.about-section .video-wrapper {
	margin-top: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.video-section {
		padding: 3rem 1rem;
	}

	.video-modal-content {
		width: 95%;
		margin: 1rem;
	}

	.video-modal-close {
		top: -2.5rem;
	}

	/* Vertical video container for mobile */
	.video-container {
		padding-top: 177.77%; /* 9:16 aspect ratio for vertical video */
		max-height: 80vh;
		margin: 0 auto;
	}

	.video-modal-content {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mute-toggle {
		width: 2.5rem;
		height: 2.5rem;
		bottom: 0.75rem;
		right: 0.75rem;
	}

	.mute-toggle svg {
		width: 1.25rem;
		height: 1.25rem;
	}

	.video-play-button {
		width: 4rem;
		height: 4rem;
	}

	.video-play-button svg {
		width: 1.5rem;
		height: 1.5rem;
	}

	.hero-scroll-arrow {
		width: 2.5rem;
		height: 2.5rem;
		bottom: 1.5rem;
	}
}

/* Author Credits Section */
.author-credits {
	padding: 3rem 1.5rem;
	background-color: var(--background);
	border-top: 1px solid rgba(61, 48, 41, 0.1);
}

.author-credits .container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.author-text {
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 300;
	color: var(--foreground);
	opacity: 0.7;
	margin: 0;
	text-align: center;
	letter-spacing: 0.02em;
}

.author-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 400;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.author-link:hover {
	opacity: 0.8;
	border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
	.author-credits {
		padding: 2rem 1rem;
	}

	.author-text {
		font-size: 0.8125rem;
	}
}
