@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

body {
	font-family: 'Source Sans Pro', sans-serif;
	background: #000;
	color: #f5f5f5;
	line-height: 1.6;
	overflow-x: hidden;
}

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

/* Venetian Blind Effect */
.blinds-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0;
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 20px 0;
	border-bottom: 1px solid #333;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.header-cta {
	background: transparent;
	color: #fff;
	padding: 12px 24px;
	border: 2px solid #fff;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 12px;
}

.header-cta:hover {
	background: #fff;
	color: #000;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	background:
		linear-gradient(45deg, rgba(0, 0, 0, 0.8) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(0, 0, 0, 0.8) 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.8) 75%),
		linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.8) 75%),
		radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
	background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px, 100% 100%;
	background-position: 0 0, 0 30px, 30px -30px, -30px 0px, center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: linear-gradient(45deg,
			transparent 30%,
			rgba(255, 255, 255, 0.05) 50%,
			transparent 70%);
	animation: sweep 8s ease-in-out infinite;
}

@keyframes sweep {

	0%,
	100% {
		transform: translateX(-100%);
	}

	50% {
		transform: translateX(100%);
	}
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	z-index: 2;
	position: relative;
}

.hero-text h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 30px;
	line-height: 1.1;
	color: #fff;
	text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
	letter-spacing: -1px;
}

.hero-text .highlight {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.3);
	text-underline-offset: 8px;
	text-decoration-thickness: 2px;
}

.hero-text .tagline {
	font-size: 1.4rem;
	margin-bottom: 40px;
	color: #ccc;
	font-weight: 300;
	letter-spacing: 0.5px;
	line-height: 1.5;
}

.cta-section {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.cta-primary {
	background: #fff;
	color: #000;
	padding: 20px 40px;
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
}

.cta-primary:hover {
	background: #000;
	color: #fff;
	border: 2px solid #fff;
}

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

.cta-primary:hover::before {
	left: 100%;
}

.cta-secondary {
	color: #ccc;
	text-decoration: none;
	font-size: 1rem;
	text-align: center;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.cta-secondary:hover {
	color: #fff;
	border-bottom-color: #fff;
}

/* Before/After Showcase */
.image-showcase {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 650px;
	background: #000;
	border: 1px solid #333;
	overflow: hidden;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.showcase-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.image-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 3s ease-in-out;
}

.before-image {
	background: linear-gradient(135deg, #666 0%, #999 50%, #666 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #333;
	font-size: 1.2rem;
	font-weight: 300;
}

.before-placeholder {
	width: 300px;
	height: 400px;
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.after-image {
	background:
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	font-size: 1.2rem;
	opacity: 0;
	animation: fadeInOut 6s ease-in-out infinite;
	position: relative;
}

.after-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(45deg,
			transparent 0px,
			transparent 15px,
			rgba(255, 255, 255, 0.03) 15px,
			rgba(255, 255, 255, 0.03) 30px);
}

.after-placeholder {
	width: 300px;
	height: 400px;
	background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow:
		0 5px 15px rgba(0, 0, 0, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.sample-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

@keyframes fadeInOut {

	0%,
	30% {
		opacity: 0;
	}

	40%,
	70% {
		opacity: 1;
	}

	80%,
	100% {
		opacity: 0;
	}
}

.image-label {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	padding: 8px 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: 1px solid #333;
	z-index: 3;
}

/* Features Section */
.features {
	padding: 120px 0;
	background:
		linear-gradient(180deg, #000 0%, #111 50%, #000 100%);
	position: relative;
}

.features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23333" opacity="0.1"/><circle cx="80" cy="40" r="0.3" fill="%23333" opacity="0.1"/><circle cx="40" cy="70" r="0.4" fill="%23333" opacity="0.1"/><circle cx="90" cy="90" r="0.2" fill="%23333" opacity="0.1"/><circle cx="10" cy="50" r="0.3" fill="%23333" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.features h2 {
	font-family: 'Playfair Display', serif;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 80px;
	color: #fff;
	letter-spacing: -1px;
	position: relative;
	z-index: 2;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 60px;
	position: relative;
	z-index: 2;
}

.feature-card {
	background: rgba(255, 255, 255, 0.02);
	padding: 40px;
	border: 1px solid #333;
	text-align: left;
	transition: all 0.3s ease;
	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, 255, 255, 0.05), transparent);
	transition: left 0.6s ease;
}

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

.feature-card:hover {
	border-color: #666;
	background: rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.feature-card p {
	color: #ccc;
	font-weight: 300;
	line-height: 1.7;
	font-size: 1rem;
}

/* Gallery Section */
.gallery {
	padding: 120px 0;
	background: #000;
	position: relative;
}

.gallery h2 {
	font-family: 'Playfair Display', serif;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 80px;
	color: #fff;
	letter-spacing: -1px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.gallery-item {
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
	border: 1px solid #333;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-style: italic;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
	color: #fff;
	padding: 30px 20px 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-overlay h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.gallery-overlay p {
	font-size: 0.9rem;
	color: #ccc;
	font-weight: 300;
}

.gallery-item:hover {
	border-color: #666;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.testimonial {
	text-align: center;
	margin-top: 60px;
	font-style: italic;
	color: #888;
	font-size: 1.1rem;
	font-weight: 300;
}

.testimonial::before,
.testimonial::after {
	content: '"';
	font-size: 2rem;
	color: #555;
	vertical-align: top;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(5px);
}

.modal-content {
	background: #111;
	margin: 5% auto;
	padding: 60px;
	border: 1px solid #333;
	width: 90%;
	max-width: 500px;
	text-align: center;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.close {
	position: absolute;
	right: 30px;
	top: 25px;
	color: #888;
	font-size: 28px;
	font-weight: 300;
	cursor: pointer;
	transition: color 0.3s ease;
}

.close:hover {
	color: #fff;
}

.modal h3 {
	font-family: 'Playfair Display', serif;
	color: #fff;
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: 700;
}

.modal p {
	color: #ccc;
	margin-bottom: 20px;
	font-weight: 300;
	line-height: 1.6;
}

.email-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}

.email-input {
	padding: 18px;
	border: 1px solid #333;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 1rem;
	font-weight: 300;
}

.email-input::placeholder {
	color: #666;
}

.email-input:focus {
	outline: none;
	border-color: #666;
	background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
	padding: 80px 0;
	background: #000;
	border-top: 1px solid #222;
	text-align: center;
}

.footer-content {
	color: #666;
	font-weight: 300;
}

.footer-links {
	margin-bottom: 30px;
}

.footer-links a {
	color: #888;
	text-decoration: none;
	margin: 0 20px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 2.8rem;
	}

	.image-showcase {
		max-width: 350px;
		height: 500px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.modal-content {
		padding: 40px;
		margin: 10% auto;
	}
}