:root {
	/* Light theme colors */
	--bg-primary: #fdf6e3;
	--bg-secondary: #fbfbfb;
	--bg-gradient-start: #fdf6e3;
	--bg-gradient-end: #f5ead2;
	--text-primary: #3e2723;
	--text-secondary: #5d4037;
	--color-black: #000000;
	--color-gold: #ffd700;
	--border-color: #e0e0e0;
}

[data-theme='dark'] {
	/* Dark theme colors */
	--bg-primary: #0a0a0a;
	--bg-secondary: #1a1a1a;
	--bg-gradient-start: #0a0a0a;
	--bg-gradient-end: #1a1a1a;
	--text-primary: #e0e0e0;
	--text-secondary: #c0c0c0;
	--color-black: #ffffff;
	--border-color: #2a2a2a;
}

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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	overflow-x: hidden;
	transition: background 0.3s ease, color 0.3s ease;
	scroll-behavior: smooth;
}

/* Header/Navigation */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--bg-secondary);
	border-bottom: 3px solid var(--color-gold);
	z-index: 999;
	transition: background 0.3s ease, border-color 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
	transition: filter 0.3s ease;
}

[data-theme='light'] .logo img {
	filter: brightness(0);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-black);
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: color 0.3s ease;
}
.logo img {
	width: 150px;
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-links a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-gold);
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: var(--color-gold);
}

.nav-links a:hover::after {
	width: 100%;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: 2px solid var(--color-black);
	color: var(--color-black);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 5px 10px;
}

/* Footer */
footer {
	background: var(--bg-primary);
	border-top: 4px solid var(--color-black);
	padding: 40px 20px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: var(--color-black);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid var(--color-black);
}

.social-link:hover {
	background: var(--color-black);
	color: var(--color-gold);
	transform: translateY(-5px);
}

.social-link svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.footer-text {
	color: var(--color-gold);
	font-weight: 600;
	transition: color 0.3s ease;
	text-decoration: none;
}

.divider {
	width: 100px;
	height: 2px;
	background: var(--color-black);
	margin: 40px auto;
}

@media (max-width: 768px) {
	.social-links {
		gap: 1rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Theme Toggle Button in Nav */
.theme-toggle {
	background: var(--color-gold);
	color: var(--color-black);
	border: 2px solid var(--color-black);
	padding: 8px 16px;
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	/* box-shadow: 3px 3px 0 var(--color-black); */
	font-size: 0.85rem;
}

/* .theme-toggle:hover {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 var(--color-black);
} */

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	background: var(--bg-primary);
	padding-top: 80px;
	overflow: hidden;
}

.hero-video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	background: var(--bg-primary);
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: 100vw;
	height: 56.25vw; /* 16:9 aspect ratio */
	transform: translate(-50%, -50%);
	pointer-events: none;
}

/* Make video cover on portrait screens */
@media (max-aspect-ratio: 16/9) {
	.hero-video {
		width: 177.78vh; /* 16:9 aspect ratio */
		height: 100vh;
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
[data-theme='dark'] .hero-overlay {
	background: rgba(0, 0, 0, 0.8);
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 20px;
	animation: fadeInDown 1s ease-out;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 40px;
	color: #ffffff;
	animation: fadeInUp 1s ease-out 0.3s backwards;
	letter-spacing: 2px;
	transition: color 0.3s ease;
}

.hero .container {
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
	.hero {
		min-height: 100vh;
		padding-top: 60px;
	}

	.hero h1 {
		font-size: 2.5rem;
		letter-spacing: 3px;
		margin-bottom: 15px;
	}

	.hero p {
		font-size: 1.1rem;
		letter-spacing: 1px;
		margin-bottom: 30px;
	}

	.hero-overlay {
		background: rgba(0, 0, 0, 0.5);
	}
	[data-theme='dark'] .hero-overlay {
		background: rgba(0, 0, 0, 0.8);
	}
}

@media screen and (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
		letter-spacing: 2px;
	}

	.hero p {
		font-size: 1rem;
		letter-spacing: 0.5px;
	}
}

.cta-button {
	display: inline-block;
	padding: 18px 45px;
	background: var(--color-gold);
	color: var(--color-black);
	text-decoration: none;
	border-radius: 0;
	font-size: 1.2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease-out 0.6s backwards;
	/* box-shadow: 4px 4px 0 var(--color-black); */
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 2px solid var(--color-border);
	cursor: pointer;
	font-family: inherit;
}

.cta-button:hover {
	background: var(--color-black);
	color: var(--color-gold);
	/* transform: translate(2px, 2px); */
	/* box-shadow: 2px 2px 0 var(--color-black); */
}

/* Gold accent line */
.gold-line {
	width: 150px;
	height: 4px;
	background: var(--color-gold);
	margin: 30px auto;
	animation: shimmer 2s ease-in-out infinite;
	border-top: 2px solid var(--color-black);
	border-bottom: 2px solid var(--color-black);
	transition: background 0.3s ease, border-color 0.3s ease;
}

/* Features Section */
.features {
	padding: 80px 20px;
	background: var(--bg-secondary);
	border-top: 4px solid var(--color-black);
	transition: background 0.3s ease, border-color 0.3s ease;
}

.features.dark {
	background: var(--bg-primary);
}

.features h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 20px;
	color: var(--color-black);
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 60px;
}

.feature-card {
	background: var(--bg-secondary);
	padding: 40px;
	border-radius: 0;
	text-align: center;
	transition: all 0.4s ease;
	animation: fadeIn 1s ease-out;
	border: 2px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
	transition: left 0.5s ease;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: var(--color-gold);
	box-shadow: 8px 8px 0 var(--color-gold);
}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
	animation: bounce 2s ease-in-out infinite;
}

.feature-card h3 {
	font-size: 1.2rem;
	margin-bottom: 15px;
	color: var(--color-black);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.feature-card p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.6;
	transition: color 0.3s ease;
}

.feature-box {
	padding-top: 40px;
	text-align: center;
	background: var(--bg-secondary);
	transition: background 0.3s ease, border-color 0.3s ease;
}

/* Testimonial Section */
.testimonial {
	padding: 80px 20px;
	text-align: center;
	background: var(--bg-primary);
	border-top: 4px solid var(--color-black);
	transition: background 0.3s ease;
}

.testimonial h2 {
	font-size: 3rem;
	color: var(--color-black);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.testimonial .container {
	max-width: 1400px;
}

.testimonial-wrapper {
	position: relative;
}

.testimonial-wrapper::before,
.testimonial-wrapper::after {
	content: '';
	position: absolute;
	top: 60px;
	width: 100px;
	height: calc(100% - 60px);
	pointer-events: none;
	z-index: 10;
	transition: opacity 0.3s ease;
}

.testimonial-wrapper::before {
	left: 0;
	background: linear-gradient(to right, var(--bg-primary), transparent);
}

.testimonial-wrapper::after {
	right: 0;
	background: linear-gradient(to left, var(--bg-primary), transparent);
}

.testimonial-container {
	max-width: 100%;
	margin: 60px auto 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 20px;
	display: flex;
	gap: 30px;
	scroll-behavior: smooth;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
}

.testimonial-container:active {
	cursor: grabbing;
	user-select: none;
}

/* Custom Scrollbar for horizontal */
.testimonial-container::-webkit-scrollbar {
	height: 8px;
}

.testimonial-container::-webkit-scrollbar-track {
	background: var(--border-color);
}

.testimonial-container::-webkit-scrollbar-thumb {
	background: var(--color-gold);
	border-radius: 0;
}

.testimonial-container::-webkit-scrollbar-thumb:hover {
	background: var(--color-black);
}

.testimonial-box {
	background: var(--bg-secondary);
	padding: 40px;
	border-radius: 0;
	border: 2px solid var(--border-color);
	position: relative;
	box-shadow: none;
	transition: all 0.3s ease;
	min-width: 400px;
	max-width: 400px;
	flex-shrink: 0;
}

.testimonial-box:hover {
	border-color: var(--color-gold);
	transform: translateY(-5px);
}

.scroll-indicator {
	text-align: center;
	margin-top: 20px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	letter-spacing: 1px;
	animation: fadeIn 1s ease-out;
	transition: opacity 0.3s ease, color 0.3s ease;
}

.scroll-indicator span {
	display: inline-block;
	animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
}

.testimonial-box::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 60px;
	color: var(--color-gold);
	opacity: 0.3;
	font-weight: 700;
	transition: color 0.3s ease;
}

.testimonial-box::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--color-gold);
	transition: background 0.3s ease;
}

.testimonial-text {
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.8;
	color: var(--text-primary);
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-black);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

/* Final CTA Section */
.final-cta {
	padding: 100px 20px;
	text-align: center;
	background: var(--bg-secondary);
	border-top: 4px solid var(--color-black);
	transition: background 0.3s ease, border-color 0.3s ease;
}

.final-cta h2 {
	font-size: 3rem;
	margin-bottom: 30px;
	animation: pulse 2s ease-in-out infinite;
	color: var(--color-black);
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.final-cta p {
	color: var(--text-secondary);
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	animation: fadeIn 0.3s ease;
}

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

.modal-content {
	background: var(--bg-secondary);
	border: 2px solid var(--color-gold);
	padding: 40px;
	max-width: 500px;
	width: 90%;
	position: relative;
	animation: slideDown 0.3s ease;
	/* box-shadow: 8px 8px 0 var(--color-gold); */
	transition: background 0.3s ease;
}

.close-modal {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 2rem;
	cursor: pointer;
	color: var(--text-primary);
	background: none;
	border: none;
	line-height: 1;
	transition: color 0.3s ease;
}

.close-modal:hover {
	color: var(--color-gold);
}

.modal-content h2 {
	color: var(--color-black);
	font-size: 2rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	transition: color 0.3s ease;
}

.modal-content .gold-line {
	margin: 20px 0 30px 0;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid var(--border-color);
	background: var(--bg-primary);
	color: var(--text-primary);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: var(--color-gold);
	box-shadow: 4px 4px 0 var(--color-gold);
}

.submit-button {
	width: 100%;
	padding: 15px;
	background: var(--color-gold);
	color: var(--color-black);
	border: 2px solid var(--color-black);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	/* box-shadow: 4px 4px 0 var(--color-black); */
	margin-top: 10px;
	font-family: inherit;
}

.submit-button:hover {
	background: var(--color-black);
	color: var(--color-gold);
	/* transform: translate(2px, 2px); */
	/* box-shadow: 2px 2px 0 var(--color-black); */
}

.submit-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.recaptcha-container {
	margin: 30px 0 20px 0;
	display: flex;
	justify-content: center;
}

.error-message {
	color: #e63946;
	background: rgba(230, 57, 70, 0.1);
	border: 2px solid #e63946;
	padding: 12px 15px;
	font-size: 0.95rem;
	margin-bottom: 20px;
	display: none;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.5px;
	animation: slideDown 0.3s ease;
}

.success-message {
	color: #2d6a4f;
	background: rgba(45, 106, 79, 0.1);
	border: 2px solid #2d6a4f;
	padding: 12px 15px;
	font-size: 0.95rem;
	margin-bottom: 20px;
	display: none;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.5px;
	animation: slideDown 0.3s ease;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes shimmer {
	0%,
	100% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
		letter-spacing: 3px;
	}

	.hero p {
		font-size: 1.2rem;
	}

	.features h2,
	.testimonial h2,
	.final-cta h2 {
		font-size: 2rem;
		letter-spacing: 2px;
	}

	.cta-button {
		padding: 15px 35px;
		font-size: 1rem;
	}

	.modal-content {
		padding: 30px 20px;
	}

	.nav-right {
		position: fixed;
		top: 115px;
		left: -100%;
		flex-direction: column;
		background: var(--bg-secondary);
		width: 100%;
		padding: 20px;
		gap: 20px;
		border-bottom: 3px solid var(--color-gold);
		transition: left 0.3s ease;
		align-items: stretch;
	}

	.nav-right.active {
		left: 0;
	}

	.nav-links {
		flex-direction: column;
		gap: 15px;
	}

	.theme-toggle {
		width: 100%;
		text-align: center;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.logo {
		font-size: 1.2rem;
	}

	.testimonial-box {
		padding: 30px 20px;
		min-width: 300px;
		max-width: 300px;
	}

	.instagram-section h2 {
		font-size: 2rem;
		letter-spacing: 2px;
	}

	.instagram-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 10px;
	}

	.instagram-button {
		padding: 15px 35px;
		font-size: 1rem;
	}

	.instagram-note {
		font-size: 0.85rem;
		padding: 15px;
	}
}
