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

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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background: #fff;
	overflow-x: hidden;
}

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


/* Hero Section with YouTube Video Background */
.hero {
	position: relative;
	height: 80vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
}

.hero-video-container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 Aspect Ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 Aspect Ratio */
	transform: translate(-50%, -50%);
	z-index: -2;
}

.hero-video-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	pointer-events: none;
}

/* Video effects overlay */
.video-effects {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

/* Enhanced Video Overlay for Better Text Readability */
.video-effects::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, 
		rgba(0,0,0,0.7) 0%, 
		rgba(0,0,0,0.4) 30%, 
		rgba(0,0,0,0.3) 50%,
		rgba(0,0,0,0.5) 70%,
		rgba(0,0,0,0.8) 100%);
	z-index: 1;
}

/* Additional dark overlay specifically for text readability */
.video-effects::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
	radial-gradient(circle at center, 
		rgba(0,0,0,0.3) 0%, 
		rgba(0,0,0,0.6) 70%),
	linear-gradient(135deg, 
		rgba(0,0,0,0.4) 0%, 
		rgba(0,0,0,0.2) 50%, 
		rgba(0,0,0,0.5) 100%);
	z-index: 2;
	animation: pulse 4s ease-in-out infinite;
}

/* Enhanced text shadow for maximum readability */
.hero-content h1 {
	text-shadow: 
	2px 2px 8px rgba(0, 0, 0, 0.9),
	0 0 20px rgba(0, 0, 0, 0.7),
	0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
	text-shadow: 
	1px 1px 6px rgba(0, 0, 0, 0.9),
	0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
	text-shadow: 
	1px 1px 4px rgba(0, 0, 0, 0.8),
	0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-video-element { 
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 Aspect Ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 Aspect Ratio */
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: -2;
	pointer-events: none;
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.2rem !important;
	}
	
	.hero-content div {
		font-size: 18px !important;
	}
	
	.hero-content p {
		font-size: 16px !important;
	}
	
	.hero-content .cta-button {
		padding: 10px 20px;
	}
}

/* Ensure video covers full screen on all devices */
@media (max-width: 768px) {
	.hero-video-element {
		width: 100%;
		height: 100vh;
		min-width: 100%;
		object-fit: cover;
	}
}


/* Cinematic bars */
/*.cinematic-bars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.cinematic-bars::before,
.cinematic-bars::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 60px;
	background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
	z-index: 3;
}

.cinematic-bars::before {
	top: 0;
}

.cinematic-bars::after {
	bottom: 0;
	transform: rotate(180deg);
}*/

/* Floating particles */
.video-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 2px;
	height: 2px;
	background: rgba(255,255,255,0.7);
	border-radius: 50%;
	animation: floatParticle 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 3s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 6s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; animation-delay: 9s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 12s; animation-duration: 20s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 8s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(9) { left: 90%; animation-delay: 11s; animation-duration: 15s; }

@keyframes floatParticle {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
		transform: scale(1);
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-10vh) scale(0);
		opacity: 0;
	}
}

@keyframes pulse {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.1; }
}

/* Lens flare effect */
.lens-flare {
	position: absolute;
	top: 20%;
	right: 15%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, 
		rgba(255,255,255,0.1) 0%, 
		rgba(255,255,255,0.05) 30%, 
		transparent 70%);
	border-radius: 50%;
	z-index: 2;
	animation: flareMove 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes flareMove {
	0%, 100% { 
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}
	50% { 
		transform: translate(-30px, 20px) scale(1.2);
		opacity: 0.1;
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
	z-index: -1;
}

.hero-content {
	text-align: center;
	color: white;
	z-index: 1;
	max-width: 900px;
	padding: 0 2rem;
	animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4.5rem;
	font-weight: 300;
	margin-bottom: 1rem;
	letter-spacing: 3px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
	line-height: 1.2;
	animation: slideInFromLeft 1.2s ease-out 0.3s both;
}

.hero-tagline {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
	animation: slideInFromRight 1.2s ease-out 0.6s both;
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	font-weight: 300;
	opacity: 0.95;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	animation: fadeIn 1.5s ease-out 0.9s both;
}

.cta-button {
	display: inline-block;
	padding: 20px 50px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.95rem;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	animation: bounceIn 1s ease-out 1.2s both;
}

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

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

.cta-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	color: #000;
}

/* Floating elements animation */
.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-dot {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-dot:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-dot:nth-child(3) { top: 30%; left: 70%; animation-delay: 4s; }

/* Services Section */
.services {
	padding: 120px 0;
	background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 400;
	color: #1a1a1a;
	margin-bottom: 1.5rem;
	letter-spacing: 2px;
	position: relative;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, #1a1a1a, #666);
}

.section-title p {
	font-size: 1.2rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
	font-weight: 300;
	line-height: 1.8;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	/*max-width: 1000px;*/
	margin: 0 auto;
}

.service-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	animation: slideInUp 0.8s ease-out;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.service-image {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.service-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover .service-image::before {
	opacity: 1;
}

.service-card:nth-child(1) .service-image {
	background-image: url('/makeup/wp-content/uploads/2025/07/Ombre-brows-2.png');
}

.service-card:nth-child(2) .service-image {
	background-image: url('/makeup/wp-content/uploads/2025/07/combination-brows-1.png');
}

.service-card:nth-child(3) .service-image {
	background-image: url('/makeup/wp-content/uploads/2025/07/Nano-Brows-1.png');
}

.service-card:nth-child(4) .service-image {
	background-image: url('/makeup/wp-content/uploads/2025/07/Untitled-design-47.png');
}

.service-content {
	padding: 40px 30px;
}

.service-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #1a1a1a;
	font-weight: 500;
}

.service-card p {
	color: #666;
	line-height: 1.7;
	font-size: 1rem;
}
ul {
	margin-top: 10px;
	color: #666;
	margin-left: 18px;
}

/* Learn More Button Styling */
.service-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

/* Hover effect with shimmer */
.service-learn-more::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.6s;
}

.service-learn-more:hover::before {
	left: 100%;
}

.service-learn-more:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

/* Arrow animation */
.learn-more-arrow {
	transition: transform 0.3s ease;
	opacity: 0.8;
}

.service-learn-more:hover .learn-more-arrow {
	transform: translate(2px, -2px);
	opacity: 1;
}

/* Focus state for accessibility */
.service-learn-more:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.3);
}

/* Alternative minimal style (if you prefer) */
.service-learn-more-minimal {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 15px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
}

.service-learn-more-minimal:hover {
	border-bottom-color: #1a1a1a;
	transform: translateX(3px);
}

/* Mobile optimization */
@media (max-width: 768px) {
	.service-learn-more {
		padding: 10px 20px;
		font-size: 0.9rem;
		margin-top: 15px;
	}
}





/* Portfolio Section */
.portfolio {
	padding: 120px 0;
	background: #1a1a1a;
	color: #fff;
	position: relative;
}

.portfolio::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="25" cy="25" r="0.5" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.portfolio .section-title h2 {
	color: #fff;
}

.portfolio .section-title h2::after {
	background: linear-gradient(90deg, #fff, #ccc);
}

.portfolio .section-title p {
	color: #ccc;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	margin-top: 80px;
}

.portfolio-item {
	position: relative;
	height: 350px;
	border-radius: 15px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInScale 0.8s ease-out;
}

.portfolio-item:nth-child(2) { animation-delay: 0.3s; }
.portfolio-item:nth-child(3) { animation-delay: 0.6s; }

.portfolio-item:nth-child(1) {
	background-image: url('/makeup/wp-content/uploads/2025/07/our-work-4-scaled.jpeg');
}

.portfolio-item:nth-child(2) {
	background-image: url('/makeup/wp-content/uploads/2025/07/our-work-2-1.jpeg');
}

.portfolio-item:nth-child(3) {
	background-image: url('/makeup/wp-content/uploads/2025/07/our-work-1-1.jpeg');
}
.portfolio-item:nth-child(4) {
	background-image: url('/makeup/wp-content/uploads/2025/07/our-work-3.jpeg');
}

.portfolio-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0,0,0,0.4), transparent);
	opacity: 0;
	transition: all 0.3s ease;
}

.portfolio-item:hover::before {
	opacity: 1;
}

.portfolio-item::after {
	/*content: 'View Details';*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-weight: 600;
	font-size: 1.1rem;
	opacity: 0;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.portfolio-item:hover::after {
	opacity: 1;
}

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

/* About Section */
.about {
	padding: 120px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
	position: relative;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	height: 800px;
	border-radius: 20px;
	background: url(/makeup/wp-content/uploads/2025/07/meet-the-artiest-photo-scaled.jpg) center/cover no-repeat;
	position: relative;
	overflow: hidden;
	animation: slideInFromLeft 0.8s ease-out;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	background-size: cover;
	background-position: center center;
	width: 100%;
	max-width: 500px;
	transition: all 0.3s ease;
}

.about-image:hover {
	transform: scale(1.02);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.about-image {
		height: 600px;
		max-width: 100%;
		margin: 0 auto; 
	}
}

@media (max-width: 480px) {
	.about-image {
		height: 500px;
		border-radius: 15px;
	}
}

.about-text {
	animation: slideInFromRight 0.8s ease-out;
}

.about-text h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 30px;
	color: #1a1a1a;
	letter-spacing: 1px;
	position: relative;
}

.about-text h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #1a1a1a, #666);
}

.about-text p {
	color: #666;
	margin-bottom: 25px;
	line-height: 1.8;
	font-size: 1.1rem;
	font-weight: 300;
}

.about-text p:first-of-type {
	font-size: 1.2rem;
	color: #333;
}

/* Contact CTA Section */
.contact-cta {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	text-align: center;
	color: #fff;
}

.contact-cta h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	margin-bottom: 30px;
	font-weight: 300;
	letter-spacing: 2px;
}

.contact-cta p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: #ccc;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-buttons {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-btn {
	padding: 18px 40px;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contact-btn.primary {
	background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
	color: #1a1a1a;
}

.contact-btn.secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.contact-btn:hover {
	transform: translateY(-3px) scale(1.05);
}

.contact-btn.primary:hover {
	box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.contact-btn.secondary:hover {
	background: #fff;
	color: #1a1a1a;
}

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

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInFromRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

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

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {

	.hero {
		margin-top: 70px;
		height: 50vh;
	}

	.hero-content h1 {
		font-size: 2.8rem;
		letter-spacing: 1px;
	}

	.hero-tagline {
		font-size: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.section-title h2 {
		font-size: 2.5rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

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

	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-text h2 {
		font-size: 2.2rem;
	}

	.contact-cta h2 {
		font-size: 2.2rem;
	}
	.contact-hero {
		height: 50vh;
		margin-top: 20px;
		max-height: 50vh;
	}

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

	.contact-content {
		grid-template-columns: 1fr !important;
		gap: 60px;
	}

	.contact-form {
		padding: 35px 25px;
	}

	.form-header h2 {
		font-size: 2.2rem;
	}

	.info-header h3 {
		font-size: 2rem;
	}

	.info-card:hover {
		transform: translateX(5px);
	}
}

/* Scroll animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}






/*Contact Us page*/

/* Hero Section */
.contact-hero {
	height: 60vh;
	background: linear-gradient(135deg, 
		rgba(26, 26, 26, 0.9) 0%, 
		rgba(26, 26, 26, 0.7) 100%),
	url('/makeup/wp-content/uploads/2025/07/HAIR-STROKS.png') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
	margin-top: 100px;
}

.contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, 
		rgba(255,255,255,0.1) 0%, 
		rgba(0,0,0,0.3) 70%);
	animation: pulse 4s ease-in-out infinite;
}

.hero-content {
	z-index: 2;
	animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	font-weight: 300;
	margin-bottom: 1rem;
	letter-spacing: 2px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
	font-size: 1.3rem;
	font-weight: 300;
	opacity: 0.95;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	max-width: 600px;
	margin: 0px auto 10px;
}

/* Main Contact Section */
.contact-main {
	padding: 120px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

/* Contact Form */
.contact-form-section {
	animation: slideInFromLeft 0.8s ease-out;
}

.form-header {
	text-align: center;
	margin-bottom: 50px;
}

.form-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	font-weight: 400;
	color: #1a1a1a;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.form-header p {
	font-size: 1.1rem;
	color: #666;
	font-weight: 300;
	line-height: 1.6;
}

.contact-form {
	background: #fff;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.contact-form:hover {
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.form-group {
	margin-bottom: 30px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #1a1a1a;
	font-size: 1rem;
}

.form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e5e5e5;
	border-radius: 10px;
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	background: #fafafa;
}

.form-control:focus {
	outline: none;
	border-color: #1a1a1a;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
	transform: translateY(-2px);
}

.form-control::placeholder {
	color: #999;
	font-weight: 300;
}

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

/* File Upload Styling */
.file-upload {
	position: relative;
	display: inline-block;
	width: 100%;
}

.file-upload input[type="file"] {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.file-upload-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 20px;
	border: 2px dashed #ccc;
	border-radius: 10px;
	background: #fafafa;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #666;
}

.file-upload-label:hover {
	border-color: #1a1a1a;
	background: #f0f0f0;
	color: #1a1a1a;
}

.file-upload-label i {
	font-size: 1.5rem;
}

/* Submit Button */
.submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.submit-btn::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.6s;
}

.submit-btn:hover::before {
	left: 100%;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(26, 26, 26, 0.3);
}
fieldset.hidden-fields-container {
	display: none;
}
/* Contact Info Section */
.contact-info {
	animation: slideInFromRight 0.8s ease-out;
}

.info-header {
	margin-bottom: 50px;
}

.info-header h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 400;
	color: #1a1a1a;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.info-header p {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
}

.info-cards {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.info-card {
	background: #fff;
	padding: 35px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #1a1a1a;
}

.info-card:hover {
	transform: translateX(10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.info-card p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 10px;
}

.info-card a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.info-card a:hover {
	color: #666;
}

/* Contact Button */
.contact-btn {
	display: inline-block;
	padding: 15px 35px;
	background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	margin-top: 20px;
	font-size: 0.95rem;
}

.contact-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(26, 26, 26, 0.3);
}
.wpcf7 br {
	display: none;
}
/* Success Message */
.screen-reader-response p, .wpcf7-response-output {
	display: none;
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: white;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	margin-top: 20px;
	font-weight: 500;
	animation: slideDown 0.5s ease-out;
}

/* Icons */
.icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

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

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInFromRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@keyframes pulse {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.1; }
}

/*Policy Page*/

/* Policy Page Specific Styles */
.policy-page-body {
	font-family: 'Inter', sans-serif;
	line-height: 1.7;
	color: #1a1a1a;
	background: #fff;
	overflow-x: hidden;
}

.policy-page-html {
	scroll-behavior: smooth;
}

/* Hero Section */
.policy-page-hero {
	height: 60vh;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
	margin-top: 80px;
	overflow: hidden;
}

.policy-page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
	radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
	radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	animation: policy-backgroundPulse 8s ease-in-out infinite;
}

.policy-hero-content {
	z-index: 2;
	animation: policy-fadeInUp 1.2s ease-out;
}

.policy-hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	font-weight: 300;
	margin-bottom: 1rem;
	letter-spacing: 2px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.policy-hero-content p {
	font-size: 1.3rem;
	font-weight: 300;
	opacity: 0.95;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	max-width: 600px;
	margin: 0 auto;
}

/* Main Content */
.policy-page-content {
	padding: 100px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.policy-page-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
}

.policy-content-wrapper {
	background: #fff;
	padding: 60px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	animation: policy-slideInUp 0.8s ease-out;
}

.policy-page-section {
	margin-bottom: 50px;
}

.policy-page-section:last-child {
	margin-bottom: 0;
}

.policy-section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 20px;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 15px;
}

.policy-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #1a1a1a, #666);
}

.policy-page-text {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
}

.policy-page-text:last-child {
	margin-bottom: 0;
}

.policy-page-list {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.policy-page-list li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
}

.policy-page-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #1a1a1a;
	font-weight: bold;
	font-size: 1.2rem;
}

.policy-page-highlight {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.05), rgba(26, 26, 26, 0.02));
	padding: 25px;
	border-radius: 10px;
	border-left: 4px solid #1a1a1a;
	margin: 25px 0;
}

.policy-page-highlight p {
	margin: 0;
	font-weight: 500;
	color: #1a1a1a;
}

.policy-contact-info {
	background: #1a1a1a;
	color: white;
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	margin-top: 60px;
}

.policy-contact-info h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: 400;
}

.policy-contact-info p {
	font-size: 1.1rem;
	margin-bottom: 15px;
	opacity: 0.9;
}

.policy-contact-info a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
}
a.policy-contact-btn {
	color: #000;
}
.policy-contact-info a:hover {
	opacity: 0.8;
}

.policy-contact-btn {
	display: inline-block;
	padding: 15px 35px;
	background: white;
	color: #1a1a1a;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	margin-top: 20px;
	font-size: 0.95rem;
}

.policy-contact-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Table Styling */
.policy-page-table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

.policy-page-table th,
.policy-page-table td {
	padding: 15px 20px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.policy-page-table th {
	background: #1a1a1a;
	color: white;
	font-weight: 600;
	font-size: 1rem;
}

.policy-page-table td {
	font-size: 1rem;
	color: #555;
}

.policy-page-table tr:last-child td {
	border-bottom: none;
}

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

@keyframes policy-slideInUp {
	from { opacity: 0; transform: translateY(80px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes policy-backgroundPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.8; transform: scale(1.1); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.policy-page-hero {
		height: 50vh;
		margin-top: 70px;
	}

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

	.policy-content-wrapper {
		padding: 40px 25px;
	}

	.policy-section-title {
		font-size: 1.8rem;
	}

	.policy-page-text,
	.policy-page-list li {
		font-size: 1rem;
	}

	.policy-page-table {
		font-size: 0.9rem;
	}

	.policy-page-table th,
	.policy-page-table td {
		padding: 12px 15px;
	}
}

/*  fdsfdsfd */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        left: 0;
        background: #fff;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Header with Logo and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 10px 0;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #666;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        left: 0;
        background: #fff;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
    }

    .nav-links.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
	
	
}
