/* ==========================================================================
   AHENK SAÇ • GÜZELLİK • STİL - Yeni Nesil Türkçe Kuaför & Randevu Haritası
   Renk Paleti:
   - Main Orchid: #A85D82 (Orkide Ana Vurgu)
   - Deep Plum: #44283A (Derin Erik Koyu Zemin & Başlıklar)
   - Soft Lavender: #D9BED4 (Soft Lavanta Yüzey)
   - Peach Nude: #E6B9A9 (Şeftali Nude)
   - Powder Pink: #F1DADD (Pudra Yüzey)
   - Cream: #FAF4EF (Krem Kartlar)
   - Pure White: #FFFFFF (Saf Beyaz)
   - Dark Charcoal Text: #292128 (Koyu Metin)
   ========================================================================== */

:root {
	--ahenk-orchid: #A85D82;
	--ahenk-orchid-rgb: 168, 93, 130;
	--ahenk-plum: #44283A;
	--ahenk-lavender: #D9BED4;
	--ahenk-peach: #E6B9A9;
	--ahenk-powder: #F1DADD;
	--ahenk-cream: #FAF4EF;
	--ahenk-white: #FFFFFF;
	--ahenk-charcoal: #292128;
	--ahenk-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.page-template-page-demo-ahenk-sac-guzellik {
	background-color: var(--ahenk-cream) !important;
	color: var(--ahenk-charcoal) !important;
	font-family: var(--ahenk-font) !important;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* Hide Main PXVERS Canvas on Ahenk Page */
body.page-template-page-demo-ahenk-sac-guzellik #pxvers-neural-canvas,
body.page-template-page-demo-ahenk-sac-guzellik .bg-ambient-grid,
body.page-template-page-demo-ahenk-sac-guzellik .bg-noise,
body.page-template-page-demo-ahenk-sac-guzellik .custom-cursor-dot,
body.page-template-page-demo-ahenk-sac-guzellik .custom-cursor-follower {
	display: none !important;
}

.ahenk-wrapper {
	width: 100%;
	position: relative;
	background-color: var(--ahenk-cream);
}

.ahenk-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 28px;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.ahenk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 22px 0;
	transition: all 0.35s ease;
}

.ahenk-header.scrolled {
	background: rgba(250, 244, 239, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(168, 93, 130, 0.25);
	padding: 12px 0;
	box-shadow: 0 4px 20px rgba(68, 40, 58, 0.08);
}

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

.ahenk-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.ahenk-logo-mark {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ahenk-logo-text {
	display: flex;
	flex-direction: column;
}

.ahenk-logo-main {
	font-family: var(--ahenk-font);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 3.5px;
	color: var(--ahenk-plum);
	line-height: 1;
}

.ahenk-logo-sub {
	font-family: var(--ahenk-font);
	font-size: 8.5px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--ahenk-orchid);
	margin-top: 3px;
	text-transform: uppercase;
}

.ahenk-nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

.ahenk-nav-link {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ahenk-charcoal);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ahenk-nav-link:hover {
	color: var(--ahenk-orchid);
}

.btn-ahenk-cta {
	background: var(--ahenk-orchid);
	color: #FFFFFF;
	font-size: 13.5px;
	font-weight: 800;
	padding: 11px 24px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 18px rgba(168, 93, 130, 0.35);
}

.btn-ahenk-cta:hover {
	background: #914B6F;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(168, 93, 130, 0.5);
}

/* --------------------------------------------------------------------------
   HERO — SPLIT CINEMATIC SLIDER (5 SLIDES)
   -------------------------------------------------------------------------- */
.ahenk-hero-slider-section {
	position: relative;
	width: 100%;
	height: 90vh;
	min-height: 640px;
	background: var(--ahenk-plum);
	overflow: hidden;
}

.ahenk-slide-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.85s ease, visibility 0.85s ease;
	display: grid;
	grid-template-columns: 1fr 1fr;
	z-index: 1;
}

.ahenk-slide-item.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.ahenk-slide-visual {
	position: relative;
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
	transition: transform 8s ease-out;
}

.ahenk-slide-item.active .ahenk-slide-visual {
	transform: scale(1);
}

.ahenk-slide-text-side {
	background: var(--ahenk-plum);
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ahenk-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(168, 93, 130, 0.2);
	border: 1px solid rgba(168, 93, 130, 0.4);
	color: var(--ahenk-lavender);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 6px 14px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.ahenk-hero-title {
	font-size: 48px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.14;
	margin-bottom: 20px;
	letter-spacing: -1.5px;
}

.ahenk-hero-title span {
	color: var(--ahenk-orchid);
}

.ahenk-hero-desc {
	font-size: 15.5px;
	color: #E6D8E2;
	line-height: 1.65;
	margin-bottom: 32px;
}

/* Slider Controls & Counter */
.ahenk-slider-controls {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 20px;
}

.ahenk-slide-counter {
	font-size: 14px;
	font-weight: 800;
	color: var(--ahenk-orchid);
	letter-spacing: 2px;
}

.btn-ahenk-slide-nav {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(68, 40, 58, 0.75);
	backdrop-filter: blur(10px);
	border: 1.5px solid rgba(168, 93, 130, 0.4);
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-ahenk-slide-nav:hover {
	background: var(--ahenk-orchid);
	color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   STİL ÇEMBERİ ("BUGÜN HANGİ AHENKTESİNİZ?")
   -------------------------------------------------------------------------- */
.ahenk-circle-section {
	padding: 90px 0;
	background: var(--ahenk-cream);
}

.ahenk-circle-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.ahenk-circle-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.ahenk-circle-btn {
	background: #FFFFFF;
	border: 1.5px solid rgba(168, 93, 130, 0.25);
	border-radius: 30px;
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 800;
	color: var(--ahenk-plum);
	cursor: pointer;
	transition: all 0.25s ease;
}

.ahenk-circle-btn:hover,
.ahenk-circle-btn.active {
	background: var(--ahenk-orchid);
	border-color: var(--ahenk-orchid);
	color: #FFFFFF;
	box-shadow: 0 4px 16px rgba(168, 93, 130, 0.3);
}

/* --------------------------------------------------------------------------
   RANDEVU HARİTASI (APPOINTMENT CONNECTION MAP)
   -------------------------------------------------------------------------- */
.ahenk-map-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(41, 33, 40, 0.88);
	backdrop-filter: blur(14px);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ahenk-map-card {
	background: var(--ahenk-cream);
	border: 2px solid var(--ahenk-orchid);
	border-radius: 28px;
	max-width: 760px;
	width: 100%;
	padding: 36px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.ahenk-map-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.ahenk-map-chip {
	background: #FFFFFF;
	border: 1.5px solid rgba(168, 93, 130, 0.25);
	border-radius: 10px;
	padding: 9px 12px;
	font-size: 12.5px;
	font-weight: 800;
	color: var(--ahenk-plum);
	cursor: pointer;
	transition: all 0.25s ease;
}

.ahenk-map-chip:hover,
.ahenk-map-chip.active {
	background: var(--ahenk-orchid);
	border-color: var(--ahenk-orchid);
	color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   FOOTER & DEMO BADGE
   -------------------------------------------------------------------------- */
.ahenk-footer {
	background: #2D1A27;
	color: #BCAEBA;
	padding: 44px 0 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ahenk-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.ahenk-demo-badge {
	text-align: center;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.4);
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ahenk-demo-badge a {
	color: var(--ahenk-orchid);
	text-decoration: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
	.ahenk-slide-item {
		grid-template-columns: 1fr;
	}
	.ahenk-slide-visual {
		height: 300px;
	}
	.ahenk-hero-title {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.ahenk-nav {
		display: none;
	}
	.ahenk-map-grid {
		grid-template-columns: 1fr;
	}
	.ahenk-hero-title {
		font-size: 28px;
	}
}
