/* CSS Variables - Bold African-Inspired Palette */
:root 
{
	--primary-dark: #1A0F0A;
	--primary-brown: #2C1810;
	--primary-chestnut: #4A2C20;
	--primary-rust: #6B3D2E;
	--accent-gold: #D4A574;
	--accent-amber: #E8B86D;
	--accent-copper: #B87333;
	--cream: #FFFAF5;
	--cream-dark: #F5EDE6;
	----cream-none: #00FFFFFF;
	--text-muted: #8B7355;
	--border-light: #E8DDD4;
	--success: #2D6A4F;
	--gradient-hero: linear-gradient(135deg, #2C1810 0%, #4A2C20 50%, #6B3D2E 100%);
	--shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.1);
	--shadow-medium: 0 8px 30px rgba(44, 24, 16, 0.15);
	--shadow-strong: 0 12px 40px rgba(44, 24, 16, 0.2);
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html 
{
	scroll-behavior: smooth;
}

body 
{
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--cream);
	color: var(--primary-brown);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Watermark Background - African Barber Pattern */
.watermark-bg 
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.03;
	/*background-image: 
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='%232C1810'%3E%3Cpath d='M60 50 L80 30 L85 35 L65 55 L60 50 M75 45 L95 25 L100 30 L80 50 L75 45' /%3E%3Ccircle cx='100' cy='100' r='35' fill='none' stroke='%232C1810' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='25' fill='none' stroke='%232C1810' stroke-width='1.5'/%3E%3Cpath d='M85 85 Q100 70 115 85 Q130 100 115 115 Q100 130 85 115 Q70 100 85 85' fill='none' stroke='%232C1810' stroke-width='1'/%3E%3Cpath d='M70 140 L75 130 L90 145 L85 155 Z' /%3E%3Cpath d='M110 140 L130 145 L125 155 L105 150 Z' /%3E%3Crect x='95' y='60' width='10' height='25' rx='2' /%3E%3Cellipse cx='100' cy='100' rx='8' ry='10' /%3E%3C/g%3E%3C/svg%3E"),
		linear-gradient(45deg, transparent 40%, rgba(212, 165, 116, 0.02) 50%, transparent 60%);*/
	background-image: url("../images/wm.jpg"), linear-gradient(45deg, transparent 40%, rgba(212, 165, 116, 0.02) 50%, transparent 60%);
	background-size: 200px 200px, 100% 100%;
}

/* Container */
.container 
{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

/* Header / Navigation */
.header 
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 250, 245, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-light);
	transition: var(--transition-smooth);
}

.header.scrolled 
{
	box-shadow: var(--shadow-soft);
}

.nav 
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.logo 
{
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo img 
{
	height: 50px;
	width: auto;
	transition: var(--transition-smooth);
}

.logo:hover img 
{
	transform: scale(1.05);
}

.nav-links 
{
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-link 
{
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--primary-brown);
	text-decoration: none;
	border-radius: 25px;
	transition: var(--transition-smooth);
	position: relative;
}

.nav-link:hover 
{
	color: var(--accent-gold);
	background: rgba(212, 165, 116, 0.1);
}

.nav-link.cta 
{
	background: var(--gradient-hero);
	color: var(--accent-gold);
	padding: 12px 24px;
	font-weight: 700;
}

.nav-link.cta:hover 
{
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.mobile-menu-btn 
{
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.hamburger 
{
	display: block;
	width: 28px;
	height: 3px;
	background: var(--primary-brown);
	border-radius: 3px;
	position: relative;
	transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after 
{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--primary-brown);
	border-radius: 3px;
	transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero 
{
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.hero::before 
{
	content: '';
	position: absolute;
	top: 0;
	right: -10%;
	width: 60%;
	height: 100%;
	background: var(--gradient-hero);
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
	z-index: -1;
}

.hero::after 
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	/*background: linear-gradient(to top, var(--cream), transparent);*/
	background: linear-gradient(to top, var(--cream-none), transparent);
	z-index: 1;
	pointer-events: none;
}

.hero-content 
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-text 
{
	padding-right: 40px;
}

.hero-badge 
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(184, 115, 51, 0.1));
	border: 1px solid var(--accent-gold);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-copper);
	margin-bottom: 24px;
	animation: fadeInUp 0.8s ease;
}

.hero-badge::before 
{
	content: '✨';
	font-size: 16px;
}

.hero-title 
{
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--primary-dark);
	animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span 
{
	color: var(--accent-gold);
	position: relative;
}

.hero-title span::after 
{
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 12px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
	opacity: 0.3;
	z-index: -1;
	border-radius: 4px;
}

.hero-services-list 
{
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 32px;
	line-height: 1.8;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-services-list strong 
{
	color: var(--primary-brown);
	font-weight: 600;
}

/* Flow Selection Cards */
.flow-cards 
{
	display: flex;
	flex-direction: column;
	gap: 16px;
	animation: fadeInUp 0.8s ease 0.3s both;
}

.flow-card 
{
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 28px;
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 20px;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.flow-card::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
	opacity: 0;
	transition: var(--transition-smooth);
	z-index: 0;
}

.flow-card:hover 
{
	border-color: var(--accent-gold);
	transform: translateY(-4px);
	box-shadow: var(--shadow-medium);
}

.flow-card:hover::before 
{
	opacity: 0.08;
}

.flow-card > * 
{
	position: relative;
	z-index: 1;
}

.flow-icon 
{
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
	transition: var(--transition-smooth);
}

.flow-icon.service 
{
	background: linear-gradient(135deg, #FFE4C4, #FFDAB9);
}

.flow-icon.location 
{
	background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
}

.flow-card:hover .flow-icon 
{
	transform: scale(1.1) rotate(5deg);
}

.flow-card-content 
{
	flex: 1;
}

.flow-card-title 
{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-brown);
	margin-bottom: 4px;
}

.flow-card-desc 
{
	font-size: 14px;
	color: var(--text-muted);
}

.flow-arrow 
{
	font-size: 24px;
	color: var(--accent-gold);
	transition: var(--transition-smooth);
}

.flow-card:hover .flow-arrow 
{
	transform: translateX(5px);
}

/* Hero Visual */
.hero-visual 
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeInRight 1s ease 0.4s both;
}

.hero-image-wrapper 
{
	position: relative;
	width: 100%;
	max-width: 500px;
	aspect-ratio: 1;
}

.hero-main-image 
{
	width: 100%;
	height: 100%;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	background: var(--gradient-hero);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.hero-main-image::before 
{
	content: '';
	position: absolute;
	inset: 0;
	background: 
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect fill='%23D4A574' fill-opacity='0.1' width='50' height='50'/%3E%3Crect fill='%23D4A574' fill-opacity='0.1' x='50' y='50' width='50' height='50'/%3E%3C/svg%3E");
	background-size: 40px 40px;
	opacity: 0.3;
}

.hero-barber-illustration 
{
	width: 80%;
	height: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.barber-icon 
{
	font-size: 120px;
	filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
	animation: float 3s ease-in-out infinite;
}

.barber-text 
{
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-gold);
	margin-top: 20px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Floating Elements */
.floating-element 
{
	position: absolute;
	background: white;
	padding: 16px 20px;
	border-radius: 16px;
	box-shadow: var(--shadow-medium);
	display: flex;
	align-items: center;
	gap: 12px;
	animation: float 4s ease-in-out infinite;
}

.floating-element.rating 
{
	top: 10%;
	right: -10%;
	animation-delay: 0.5s;
}

.floating-element.bookings 
{
	bottom: 20%;
	left: -15%;
	animation-delay: 1s;
}

.floating-icon 
{
	font-size: 24px;
}

.floating-text 
{
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-brown);
}

.floating-subtext 
{
	font-size: 12px;
	color: var(--text-muted);
}

/* Quick Services Section */
.quick-services 
{
	padding: 80px 0;
	background: linear-gradient(180deg, var(--cream) 0%, white 50%, var(--cream) 100%);
	position: relative;
}

.section-header 
{
	text-align: center;
	margin-bottom: 50px;
}

.section-badge 
{
	display: inline-block;
	background: var(--gradient-hero);
	color: var(--accent-gold);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.section-title 
{
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 16px;
}

.section-subtitle 
{
	font-size: 18px;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
}

/* Service Grid */
.services-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card 
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 24px;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.service-card::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--service-color, var(--accent-gold));
	transform: scaleX(0);
	transition: var(--transition-smooth);
}

.service-card:hover 
{
	transform: translateY(-8px);
	box-shadow: var(--shadow-strong);
	border-color: var(--service-color, var(--accent-gold));
}

.service-card:hover::before 
{
	transform: scaleX(1);
}

.service-icon 
{
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	margin-bottom: 16px;
	background: var(--service-bg, rgba(212, 165, 116, 0.15));
	transition: var(--transition-smooth);
}

.service-card:hover .service-icon 
{
	transform: scale(1.15) rotate(8deg);
}

.service-name 
{
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-brown);
	text-align: center;
}

/* Service-specific colors */
.service-card[data-service="hair"] { --service-color: #D4A574; --service-bg: rgba(212, 165, 116, 0.15); }
.service-card[data-service="barber"] { --service-color: #8B4513; --service-bg: rgba(139, 69, 19, 0.12); }
.service-card[data-service="nails"] { --service-color: #E8A0BF; --service-bg: rgba(232, 160, 191, 0.15); }
.service-card[data-service="massage"] { --service-color: #90B77D; --service-bg: rgba(144, 183, 125, 0.15); }
.service-card[data-service="facial"] { --service-color: #F2C1A7; --service-bg: rgba(242, 193, 167, 0.2); }
.service-card[data-service="waxing"] { --service-color: #C9A962; --service-bg: rgba(201, 169, 98, 0.15); }
.service-card[data-service="dental"] { --service-color: #87CEEB; --service-bg: rgba(135, 206, 235, 0.15); }
.service-card[data-service="aesthetics"] { --service-color: #DDA0DD; --service-bg: rgba(221, 160, 221, 0.15); }
.service-card[data-service="tanning"] { --service-color: #D2691E; --service-bg: rgba(210, 105, 30, 0.12); }
.service-card[data-service="spa"] { --service-color: #5F9EA0; --service-bg: rgba(95, 158, 160, 0.12); }
.service-card[data-service="makeup"] { --service-color: #C71585; --service-bg: rgba(199, 21, 133, 0.1); }
.service-card[data-service="skincare"] { --service-color: #FFB6C1; --service-bg: rgba(255, 182, 193, 0.15); }
.service-card[data-service="lashes"] { --service-color: #4B0082; --service-bg: rgba(75, 0, 130, 0.1); }
.service-card[data-service="brows"] { --service-color: #8B6914; --service-bg: rgba(139, 105, 20, 0.12); }
.service-card[data-service="tattoo"] { --service-color: #2F4F4F; --service-bg: rgba(47, 79, 79, 0.1); }
.service-card[data-service="piercing"] { --service-color: #708090; --service-bg: rgba(112, 128, 144, 0.12); }
.service-card[data-service="braids"] { --service-color: #6B4423; --service-bg: rgba(107, 68, 35, 0.12); }
.service-card[data-service="locs"] { --service-color: #3D2314; --service-bg: rgba(61, 35, 20, 0.12); }
.service-card[data-service="weaves"] { --service-color: #A0522D; --service-bg: rgba(160, 82, 45, 0.12); }
.service-card[data-service="mehndi"] { --service-color: #8B0000; --service-bg: rgba(139, 0, 0, 0.1); }

/* Features Section */
.features 
{
	padding: 100px 0;
	background: var(--gradient-hero);
	position: relative;
	overflow: hidden;
}

.features::before 
{
	content: '';
	position: absolute;
	inset: 0;
	background: 
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='%23D4A574' stroke-opacity='0.1'/%3E%3C/svg%3E");
	background-size: 60px 60px;
}

.features .container 
{
	position: relative;
	z-index: 1;
}

.features .section-title 
{
	color: white;
}

.features .section-subtitle 
{
	color: rgba(255, 255, 255, 0.7);
}

.features-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.feature-card 
{
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(212, 165, 116, 0.2);
	border-radius: 24px;
	padding: 36px;
	transition: var(--transition-smooth);
}

.feature-card:hover 
{
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-5px);
	border-color: var(--accent-gold);
}

.feature-icon 
{
	width: 70px;
	height: 70px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 24px;
	box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.feature-title 
{
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
}

.feature-desc 
{
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

/* Stats Section */
.stats 
{
	padding: 80px 0;
	background: white;
}

.stats-grid 
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.stat-item 
{
	text-align: center;
	padding: 30px;
	position: relative;
}

.stat-item::after 
{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 60%;
	width: 1px;
	background: var(--border-light);
}

.stat-item:last-child::after 
{
	display: none;
}

.stat-number 
{
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 800;
	color: var(--accent-gold);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label 
{
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-brown);
}

/* CTA Section */
.cta-section 
{
	padding: 100px 0;
	background: var(--cream-dark);
	position: relative;
}

.cta-content 
{
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-title 
{
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 20px;
}

.cta-subtitle 
{
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 40px;
}

.cta-buttons 
{
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn 
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 36px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition-smooth);
	cursor: pointer;
	border: none;
}

.btn-primary 
{
	background: var(--gradient-hero);
	color: var(--accent-gold);
}

.btn-primary:hover 
{
	transform: translateY(-3px);
	box-shadow: var(--shadow-strong);
}

.btn-secondary 
{
	background: white;
	color: var(--primary-brown);
	border: 2px solid var(--border-light);
}

.btn-secondary:hover 
{
	border-color: var(--accent-gold);
	color: var(--accent-gold);
}

/* Footer */
.footer 
{
	background: var(--primary-dark);
	padding: 60px 0 30px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-content 
{
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
}

.footer-brand 
{
	max-width: 300px;
}

.footer-logo 
{
	height: 60px;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}

.footer-desc 
{
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.social-links 
{
	display: flex;
	gap: 12px;
}

.social-link 
{
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.social-link:hover 
{
	background: var(--accent-gold);
	transform: translateY(-3px);
}

.footer-column h4 
{
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: white;
	margin-bottom: 24px;
}

.footer-links 
{
	list-style: none;
}

.footer-links li 
{
	margin-bottom: 12px;
}

.footer-links a 
{
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 15px;
	transition: var(--transition-smooth);
}

.footer-links a:hover 
{
	color: var(--accent-gold);
	padding-left: 5px;
}

.footer-bottom 
{
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright 
{
	font-size: 14px;
}

.footer-legal 
{
	display: flex;
	gap: 30px;
}

.footer-legal a 
{
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition-smooth);
}

.footer-legal a:hover 
{
	color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp 
{
	from 
	{
		opacity: 0;
		transform: translateY(30px);
	}
	to 
	{
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight 
{
	from 
	{
		opacity: 0;
		transform: translateX(50px);
	}
	to 
	{
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float 
{
	0%, 100% 
	{
		transform: translateY(0);
	}
	50% 
	{
		transform: translateY(-15px);
	}
}

/* Scroll Animations */
.reveal 
{
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.reveal.active 
{
	opacity: 1;
	transform: translateY(0);
}

/* Mobile Menu */
.mobile-nav 
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--cream);
	z-index: 999;
	padding: 100px 30px 40px;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-smooth);
}

.mobile-nav.active 
{
	opacity: 1;
	pointer-events: all;
}

.mobile-nav-link 
{
	display: block;
	padding: 20px 0;
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-brown);
	text-decoration: none;
	border-bottom: 1px solid var(--border-light);
	transition: var(--transition-smooth);
}

.mobile-nav-link:hover 
{
	color: var(--accent-gold);
	padding-left: 10px;
}

.mobile-nav .btn 
{
	margin-top: 30px;
	justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1200px) 
{
	.hero-content 
	{
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-text 
	{
		padding-right: 0;
		text-align: center;
	}

	.flow-cards 
	{
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-visual 
	{
		order: -1;
	}

	.hero-image-wrapper 
	{
		max-width: 400px;
	}

	.floating-element.rating 
	{
		right: 5%;
	}

	.floating-element.bookings 
	{
		left: 5%;
	}

	.footer-content 
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) 
{
	.nav-links 
	{
		display: none;
	}

	.mobile-menu-btn 
	{
		display: block;
	}

	.mobile-nav 
	{
		display: flex;
	}

	.stats-grid 
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.stat-item:nth-child(2)::after
	{
		display: none;
	}
}

@media (max-width: 768px) 
{
	.hero 
	{
		padding-top: 100px;
		min-height: auto;
		padding-bottom: 60px;
	}

	.hero::before 
	{
		width: 100%;
		clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0 100%);
		opacity: 0.9;
	}

	.hero-image-wrapper 
	{
		max-width: 300px;
	}

	.barber-icon 
	{
		font-size: 80px;
	}

	.barber-text 
	{
		font-size: 20px;
	}

	.floating-element 
	{
		display: none;
	}

	.services-grid 
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.service-card 
	{
		padding: 24px 16px;
	}

	.service-icon 
	{
		width: 56px;
		height: 56px;
		font-size: 28px;
	}

	.features-grid 
	{
		grid-template-columns: 1fr;
	}

	.stats-grid 
	{
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.stat-item::after 
	{
		display: none;
	}

	.stat-item 
	{
		padding: 20px;
		background: var(--cream-dark);
		border-radius: 16px;
	}

	.cta-buttons 
	{
		flex-direction: column;
		align-items: center;
	}

	.btn 
	{
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.footer-content 
	{
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom 
	{
		flex-direction: column;
		text-align: center;
	}

	.footer-legal 
	{
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 480px) 
{
	.container 
	{
		padding: 0 16px;
	}

	.hero-title 
	{
		font-size: 36px;
	}

	.section-title 
	{
		font-size: 28px;
	}

	.services-grid 
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.service-card 
	{
		padding: 20px 12px;
		border-radius: 18px;
	}

	.service-icon 
	{
		width: 50px;
		height: 50px;
		font-size: 24px;
		margin-bottom: 12px;
	}

	.service-name 
	{
		font-size: 13px;
	}

	.flow-card 
	{
		padding: 18px 20px;
	}

	.flow-icon 
	{
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.flow-card-title 
	{
		font-size: 16px;
	}
}