/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Import elegant Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
	--pearl-white: #f8f6f0;
	--off-white: #faf9f5;
	--black: #0a0a0a;
	--soft-black: #1a1a1a;
	--gold: #d4af37;
	--gold-light: #e8c547;
	--gold-dark: #b8941f;
	--shadow: rgba(0, 0, 0, 0.1);
	--shadow-dark: rgba(0, 0, 0, 0.3);
}

body {
	font-family: "Cormorant Garamond", "Georgia", serif;
	line-height: 1.6;
	color: var(--soft-black);
	background: var(--pearl-white);
	overflow-x: hidden;
}

.landing-page {
	width: 100%;
	overflow-x: hidden;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 15px 0;
	box-shadow: 0 2px 20px var(--shadow-dark);
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-container {
	height: 60px;
}

.logo {
	height: 100%;
	width: auto;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
}

.nav-menu li a {
	color: var(--pearl-white);
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 1px;
	position: relative;
	padding: 5px 0;
	transition: color 0.3s ease;
}

.nav-menu li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	transition: width 0.3s ease;
}

.nav-menu li a:hover {
	color: var(--gold-light);
}

.nav-menu li a:hover::after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: var(--gold);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--black) 0%,
		var(--soft-black) 100%
	);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 35px,
		rgba(212, 175, 55, 0.03) 35px,
		rgba(212, 175, 55, 0.03) 70px
	);
	pointer-events: none;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at center,
		transparent 0%,
		rgba(10, 10, 10, 0.5) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--pearl-white);
	max-width: 900px;
	padding: 0 20px;
}

.decorative-line {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 30px auto;
	max-width: 400px;
	position: relative;
}

.decorative-line::before,
.decorative-line::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
}

.decorative-line::before {
	left: 0;
}

.decorative-line::after {
	right: 0;
}

.hero-title {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 2px;
	color: var(--gold);
	animation: fadeInUp 1s ease;
}

.hero-subtitle {
	font-size: 24px;
	font-style: italic;
	color: var(--pearl-white);
	margin-bottom: 20px;
	letter-spacing: 3px;
	animation: fadeInUp 1.2s ease;
}

.hero-description {
	font-size: 18px;
	color: rgba(248, 246, 240, 0.9);
	margin-bottom: 40px;
	line-height: 1.8;
	animation: fadeInUp 1.4s ease;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1.6s ease;
}

.btn {
	padding: 15px 40px;
	border: none;
	border-radius: 0;
	font-size: 16px;
	letter-spacing: 2px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition:
		width 0.6s ease,
		height 0.6s ease;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
	color: var(--black);
	border: 2px solid var(--gold);
	font-weight: 600;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--pearl-white);
	border: 2px solid var(--gold);
	font-weight: 600;
}

.btn-secondary:hover {
	background: rgba(212, 175, 55, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 30px;
	height: 50px;
	border: 2px solid var(--gold);
	border-radius: 20px;
	position: relative;
}

.scroll-arrow::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	animation: scrollDot 2s infinite;
}

/* Sections */
section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 48px;
	color: var(--black);
	margin-bottom: 20px;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
}

.title-decoration {
	width: 100px;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gold-dark),
		var(--gold),
		var(--gold-light)
	);
	margin: 0 auto 20px;
	position: relative;
}

.title-decoration::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background: var(--gold);
	border-radius: 50%;
}

.section-subtitle {
	font-size: 18px;
	color: #666;
	font-style: italic;
}

/* Parallax Sections */
.parallax-section {
	position: relative;
	height: 350px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.parallax-bg {
	position: absolute;
	top: -49vh;
	left: 0;
	width: 100%;
	height: 98vh;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	will-change: transform;
	transition: transform 0.1s ease-out;
}

.parallax-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.7) 0%,
		rgba(26, 26, 26, 0.6) 50%,
		rgba(10, 10, 10, 0.7) 100%
	);
}

.parallax-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--pearl-white);
	padding: 0 20px;
	max-width: 80%;
}

.parallax-content h2 {
	font-family: "Cinzel", serif;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 3px;
	text-transform: uppercase;
	background: linear-gradient(
		135deg,
		var(--gold-light) 0%,
		var(--gold) 50%,
		var(--gold-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.parallax-content p {
	font-size: 18px;
	font-style: italic;
	line-height: 1.8;
	color: var(--pearl-white);
	letter-spacing: 1px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
	background: var(--off-white);
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
}

.about-text p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--soft-black);
	margin-bottom: 25px;
	text-align: center;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-block: 60px;
}

.stat {
	text-align: center;
	padding: 30px;
	background: white;
	border-radius: 0;
	box-shadow: 0 5px 20px var(--shadow);
	border-top: 3px solid var(--gold);
	transition: transform 0.3s ease;
}

.stat:hover {
	transform: translateY(-10px);
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	color: #666;
	letter-spacing: 1px;
}

/* Services Section */
.services {
	background: var(--pearl-white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.service-card {
	background: white;
	padding-bottom: 40px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gold-dark),
		var(--gold),
		var(--gold-light)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	box-shadow: 0 15px 40px var(--shadow);
	transform: translateY(-10px);
}

.service-card:hover .service-icon {
	background: var(--gold);
	color: white;
	transform: rotateY(360deg);
}

.service-icon svg {
	width: 40px;
	height: 40px;
}

.service-title {
	font-size: 24px;
	color: var(--black);
	margin-bottom: 15px;
	letter-spacing: 1px;
	padding-inline: 24px;
}

.service-description {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	padding-inline: 24px;
}

/*  olio Section */
.portfolio {
	background: var(--off-white);
}

.portfolio-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}

.portfolio-carousel a {
	height: min(90vh, 500px);
}

.portfolio-carousel img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.portfolio-project h3 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 10px;
	color: var(--gold);
}

.portfolio-overlay p {
	font-size: 16px;
	line-height: 1.6;
}

/* Contact Section */
.contact {
	background: var(--pearl-white);
}

.contact-content {
	gap: 60px;
	margin-top: 40px;
}

.contact-form {
	background: white;
	padding: 40px;
	box-shadow: 0 10px 30px var(--shadow);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	color: var(--soft-black);
	margin-bottom: 8px;
	letter-spacing: 1px;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	background: var(--off-white);
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: white;
}

.form-group textarea {
	resize: vertical;
}

.btn-large {
	width: 100%;
	padding: 18px;
	font-size: 18px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.info-item {
	display: flex;
	gap: 20px;
	padding: 25px;
	background: white;
	box-shadow: 0 5px 20px var(--shadow);
	transition: transform 0.3s ease;
}

.info-item:hover {
	transform: translateX(10px);
}

.info-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gold);
	color: white;
	border-radius: 50%;
}

.info-icon svg {
	width: 24px;
	height: 24px;
}

.info-content h4 {
	font-size: 18px;
	color: var(--black);
	margin-bottom: 5px;
}

.info-content p {
	font-size: 16px;
	color: #666;
}

/* Footer */
.footer {
	background: var(--black);
	color: var(--pearl-white);
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	font-size: 20px;
	color: var(--gold);
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.footer-section p {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(248, 246, 240, 0.8);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: rgba(248, 246, 240, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 14px;
}

.footer-section ul li a:hover {
	color: var(--gold);
}

.footer-logo {
	max-width: 200px;
	margin-bottom: 20px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--gold);
	color: var(--gold);
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--gold);
	color: var(--black);
	transform: translateY(-3px);
}

.social-links svg {
	width: 20px;
	height: 20px;
}

.footer-bottom {
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	padding-top: 20px;
	text-align: center;
	color: rgba(248, 246, 240, 0.6);
	font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes scrollDot {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(30px);
	}
}

/* Responsive Design */
@media (max-width: 968px) {
	.nav-menu {
		position: fixed;
		top: 90px;
		left: -100%;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.98);
		width: 100%;
		padding: 40px 0;
		gap: 20px;
		transition: left 0.3s ease;
		box-shadow: 0 5px 20px var(--shadow-dark);
	}

	.nav-menu.active {
		left: 0;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-description {
		font-size: 16px;
	}

	.section-title {
		font-size: 36px;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.section-title {
		font-size: 28px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}
}

.slick-prev {
	left: 4px !important;
}

.slick-next {
	right: 4px !important;
}

.slick-prev,
.slick-next {
	z-index: 4;
	height: 32px !important;
	width: 32px !important;
}

.slick-prev:before,
.slick-next:before {
	font-size: 32px !important;
	color: var(--gold) !important;
}
