/* ════════════════════════════════════════════════════════════════
   NAMASTE CARS V14 — Circuits Page Styles (nc-cp-)
   
   Sections:
   1. Hero (nc-cp-hero) — left-aligned, full-width with stats bar
   2. Section wrappers (nc-cp-section)
   3. Filter pills (nc-cp-filter)
   4. Destination grid (nc-cp-dest)
   5. Responsive
═══════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════
   1. HERO — Left-aligned content
═══════════════════════════════════════════ */
.nc-cp-hero {
	position: relative;
	min-height: 500px;
	background: #1C2B3A;
	background-image: var(--bg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.nc-cp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(12,22,32,.92) 0%, rgba(12,22,32,.55) 100%);
}

.nc-cp-hero__inner {
	position: relative;
	z-index: 2;
	padding-block: 72px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
}

.nc-cp-hero__inner > * {
	max-width: 800px;
}

.nc-cp-hero__eyebrow {
	display: inline-block;
	background: rgba(200,150,62,.18);
	border: 1px solid rgba(200,150,62,.4);
	color: #E8C882;
	font-size: .74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .2em;
	padding: 4px 14px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.nc-cp-hero__h1 {
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.15;
	margin: 0 0 16px;
}

.nc-cp-hero__sub {
	font-size: 1.08rem;
	line-height: 1.68;
	color: rgba(255,255,255,.75);
	margin: 0 0 30px;
}

.nc-cp-hero__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.nc-cp-hero .nc-breadcrumb {
	margin-bottom: 14px;
}


/* ═══════════════════════════════════════════
   2. SECTION WRAPPERS
═══════════════════════════════════════════ */
.nc-cp-section { padding: 72px 0; }
.nc-cp-section--white { background: #FFFFFF; }
.nc-cp-section--light { background: #F8F5F0; }

.nc-cp-section__head {
	text-align: center;
	margin-bottom: 44px;
}

.nc-cp-section__lines {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.nc-cp-section__lines span:first-child,
.nc-cp-section__lines span:last-child {
	flex: 1;
	height: 1px;
	background: #C8963E;
	opacity: .3;
}

.nc-cp-section__title-text {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #1C2B3A;
	line-height: 1.22;
	margin: 0;
}

.nc-cp-section__sub {
	font-size: 1rem;
	line-height: 1.7;
	color: #5A6470;
	max-width: 700px;
	margin: 0 auto;
}


/* ═══════════════════════════════════════════
   3. FILTER PILLS
═══════════════════════════════════════════ */
.nc-cp-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 24px;
}

.nc-cp-filter__pill {
	padding: 9px 18px;
	border-radius: 50px;
	background: #FFFFFF;
	border: 1px solid #E5E0D8;
	font-size: .85rem;
	font-weight: 500;
	color: #5A6470;
	text-decoration: none;
	transition: all .2s ease;
}

.nc-cp-filter__pill:hover,
.nc-cp-filter__pill--active,
.nc-cp-filter__pill.is-active {
	color: #C8963E;
	border-color: rgba(200,150,62,.4);
	background: rgba(200,150,62,.05);
}

.nc-cp-filter__pill--active,
.nc-cp-filter__pill.is-active {
	background: #C8963E;
	color: #FFFFFF;
	border-color: #C8963E;
}

/* Filter group (used for Style + Durée double filters on destination pages) */
.nc-cp-filter-group {
	margin-bottom: 18px;
}
.nc-cp-filter-group .nc-cp-filter {
	margin-bottom: 0;
}
.nc-cp-filter-label {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	color: #8A9199;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}


/* ═══════════════════════════════════════════
   4. DESTINATION GRID
═══════════════════════════════════════════ */
.nc-cp-dest-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.nc-cp-dest-card {
	display: block;
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0 4px 16px rgba(28,43,58,.08);
	transition: transform .3s ease, box-shadow .3s ease;
	text-decoration: none;
	color: inherit;
}

.nc-cp-dest-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(28,43,58,.15);
}

.nc-cp-dest-card__img {
	position: relative;
	aspect-ratio: 16/10;
	background-color: #1C2B3A;
	background-image: var(--bg, linear-gradient(135deg, #1C2B3A 0%, #243447 100%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nc-cp-dest-card__img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(28,43,58,.4) 0%, rgba(28,43,58,0) 60%);
}

.nc-cp-dest-card__body {
	padding: 18px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 3px solid #C8963E;
}

.nc-cp-dest-card__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1C2B3A;
	margin: 0;
}

.nc-cp-dest-card__count {
	font-size: .8rem;
	color: #C8963E;
	background: rgba(200,150,62,.1);
	padding: 4px 12px;
	border-radius: 50px;
	font-weight: 600;
}


/* ═══════════════════════════════════════════
   5. RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
	.nc-cp-hero { min-height: 420px; }
	.nc-cp-hero__inner { padding-block: 56px; }
	.nc-cp-dest-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.nc-cp-section { padding: 56px 0; }
}

@media (max-width: 600px) {
	.nc-cp-hero { min-height: 380px; }
	.nc-cp-hero__inner { padding-block: 48px; }
	.nc-cp-dest-grid { grid-template-columns: 1fr; }
	.nc-cp-section { padding: 44px 0; }
}
