/* ==========================================================================
   VELMONT RESIDENCES - Premium Residence & Yaşam Deneyimi Stilleri
   Renk Paleti:
   - Deep Warm Coffee: #211A18
   - Dark Burgundy-Coffee: #352422
   - Champagne Accent: #C8AE89
   - Cream / Off-White: #F1E9DE
   - Warm White: #FAF8F4
   - Muted Gray: #8C8580
   ========================================================================== */

:root {
	--velmont-coffee: #211A18;
	--velmont-burgundy: #352422;
	--velmont-champagne: #C8AE89;
	--velmont-champagne-rgb: 200, 174, 137;
	--velmont-cream: #F1E9DE;
	--velmont-warmwhite: #FAF8F4;
	--velmont-gray: #8C8580;
	--velmont-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.page-template-page-demo-velmont-residences {
	background-color: var(--velmont-coffee) !important;
	color: var(--velmont-cream) !important;
	font-family: var(--velmont-font) !important;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

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

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

.velmont-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

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

.velmont-header.scrolled {
	background: rgba(33, 26, 24, 0.94);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(200, 174, 137, 0.2);
	padding: 14px 0;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

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

.velmont-nav-link {
	font-size: 13.5px;
	font-weight: 600;
	color: #D6CEC5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.velmont-nav-link:hover {
	color: var(--velmont-champagne);
}

.btn-velmont-cta {
	background: var(--velmont-champagne);
	color: var(--velmont-coffee);
	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 20px rgba(200, 174, 137, 0.3);
}

.btn-velmont-cta:hover {
	background: #DBBF9A;
	color: var(--velmont-coffee);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(200, 174, 137, 0.45);
}

/* --------------------------------------------------------------------------
   HERO — PRIVATE RESIDENTIAL EXPERIENCE
   -------------------------------------------------------------------------- */
.velmont-hero {
	min-height: 92vh;
	padding-top: 150px;
	padding-bottom: 90px;
	position: relative;
	display: flex;
	align-items: center;
	background: radial-gradient(circle at 80% 20%, rgba(200, 174, 137, 0.1) 0%, transparent 60%);
}

.velmont-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(200, 174, 137, 0.15);
	border: 1px solid rgba(200, 174, 137, 0.35);
	color: var(--velmont-champagne);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 6px 14px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.velmont-hero-title {
	font-size: 54px;
	font-weight: 800;
	color: var(--velmont-warmwhite);
	line-height: 1.12;
	margin-bottom: 24px;
	letter-spacing: -1.5px;
}

.velmont-hero-title span {
	color: var(--velmont-champagne);
}

.velmont-hero-desc {
	font-size: 16.5px;
	color: #B5ACA3;
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 520px;
}

.velmont-hero-ctas {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn-velmont-secondary {
	border: 1.5px solid rgba(200, 174, 137, 0.3);
	color: var(--velmont-cream);
	font-size: 13.5px;
	font-weight: 700;
	padding: 11px 24px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-velmont-secondary:hover {
	border-color: var(--velmont-champagne);
	color: var(--velmont-champagne);
	background: rgba(200, 174, 137, 0.08);
}

/* --------------------------------------------------------------------------
   EDITORIAL LIFESTYLE CARDS ("VELMONT'U OLUŞTURAN DETAYLAR")
   -------------------------------------------------------------------------- */
.velmont-editorial-section {
	padding: 90px 0;
	background: var(--velmont-burgundy);
	border-top: 1px solid rgba(200, 174, 137, 0.15);
	border-bottom: 1px solid rgba(200, 174, 137, 0.15);
}

.velmont-editorial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.velmont-editorial-card {
	background: var(--velmont-coffee);
	border: 1.5px solid rgba(200, 174, 137, 0.2);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
	cursor: pointer;
}

.velmont-editorial-card:hover {
	border-color: var(--velmont-champagne);
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.velmont-card-img {
	height: 260px;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: transform 0.6s ease;
}

.velmont-editorial-card:hover .velmont-card-img {
	transform: scale(1.03);
}

.velmont-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(33, 26, 24, 0.2) 0%, rgba(33, 26, 24, 0.9) 100%);
}

.velmont-card-body {
	padding: 24px;
	position: relative;
	z-index: 2;
}

.velmont-card-tag {
	font-size: 11px;
	font-weight: 800;
	color: var(--velmont-champagne);
	letter-spacing: 2px;
	margin-bottom: 6px;
}

.velmont-card-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--velmont-warmwhite);
	margin-bottom: 6px;
}

.velmont-card-desc {
	font-size: 13px;
	color: #B5ACA3;
	margin: 0;
}

/* --------------------------------------------------------------------------
   "BİR GÜN VELMONT'TA" TIME EXPERIENCE
   -------------------------------------------------------------------------- */
.velmont-day-section {
	padding: 90px 0;
	background: var(--velmont-coffee);
}

.velmont-timeline-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 40px;
}

.velmont-timeline-card {
	background: var(--velmont-burgundy);
	border: 1.5px solid rgba(200, 174, 137, 0.2);
	border-radius: 18px;
	padding: 20px 16px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.velmont-timeline-card:hover,
.velmont-timeline-card.active {
	border-color: var(--velmont-champagne);
	background: rgba(200, 174, 137, 0.12);
	transform: translateY(-4px);
}

.velmont-time-num {
	font-size: 22px;
	font-weight: 800;
	color: var(--velmont-champagne);
	margin-bottom: 4px;
}

.velmont-time-label {
	font-size: 13.5px;
	font-weight: 800;
	color: var(--velmont-warmwhite);
	margin-bottom: 6px;
}

.velmont-time-desc {
	font-size: 12px;
	color: #B5ACA3;
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   DYNAMIC LIGHTING SWITCHER ("AYNI MEKÂN. FARKLI BİR SAAT.")
   -------------------------------------------------------------------------- */
.velmont-lighting-section {
	padding: 90px 0;
	background: #181312;
}

.velmont-lighting-card {
	background: var(--velmont-burgundy);
	border: 2px solid var(--velmont-champagne);
	border-radius: 28px;
	padding: 32px;
	max-width: 920px;
	margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.velmont-lighting-tabs {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 24px;
}

.velmont-light-btn {
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(200, 174, 137, 0.25);
	border-radius: 12px;
	padding: 10px 24px;
	color: var(--velmont-cream);
	font-family: var(--velmont-font);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s ease;
}

.velmont-light-btn:hover,
.velmont-light-btn.active {
	background: var(--velmont-champagne);
	border-color: var(--velmont-champagne);
	color: var(--velmont-coffee);
}

.velmont-lighting-viewport {
	height: 360px;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	position: relative;
	transition: all 0.6s ease;
}

/* --------------------------------------------------------------------------
   FOOTER & DEMO BADGE
   -------------------------------------------------------------------------- */
.velmont-footer {
	background: #14100F;
	color: #8C8580;
	padding: 44px 0 24px 0;
	border-top: 1px solid rgba(200, 174, 137, 0.15);
}

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

.velmont-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);
}

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

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
	.velmont-editorial-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.velmont-timeline-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.velmont-hero-title {
		font-size: 38px;
	}
}

@media (max-width: 576px) {
	.velmont-nav {
		display: none;
	}
	.velmont-editorial-grid {
		grid-template-columns: 1fr;
	}
	.velmont-timeline-grid {
		grid-template-columns: 1fr;
	}
	.velmont-hero-title {
		font-size: 30px;
	}
}
