/* assets/css/about_the_soul.css */

/* ── BACKGROUND VIDEO & OVERLAY ── */
.bg-container {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.12;
	filter: blur(8px);
}

.bg-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
}

/* ── LAYOUT CONTAINER ── */
.about-wrapper {
	position: relative;
	min-height: 100vh;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 160px 24px 80px 24px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* ── HERO PHILOSOPHY SECTION ── */
.philosophy-section {
	width: 100%;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 48px;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
	animation: aboutFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

.philosophy-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, var(--primary-navy), var(--accent-blue), var(--light-blue));
}

.about-header {
	margin-bottom: 36px;
}

.about-header__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 44px;
	font-weight: 300;
	color: var(--light-blue);
	margin-bottom: 6px;
	letter-spacing: 0.02em;
}

.about-header__tagline {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-blue);
}

.philosophy-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	line-height: 1.7;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
}

.philosophy-content p {
	margin-bottom: 20px;
}

.philosophy-content p:last-child {
	margin-bottom: 0;
}

.philosophy-content__left,
.philosophy-content__right {
	display: flex;
	flex-direction: column;
}

.philosophy-quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-style: italic;
	color: var(--offwhite);
	border-left: 3px solid var(--primary-navy);
	padding-left: 20px;
	margin: 20px 0;
	line-height: 1.4;
}

/* ── STACKED CHRONOLOGICAL TIMELINE ── */
.timeline-section {
	width: 100%;
}

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	font-weight: 300;
	color: var(--light-blue);
	margin-bottom: 40px;
	letter-spacing: 0.02em;
	text-align: center;
}

.timeline {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	padding: 20px 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, var(--primary-navy) 0%, var(--light-blue) 50%, rgba(255, 255, 255, 0.05) 100%);
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	width: 50%;
	padding: 20px 40px;
	box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
	left: 0;
	text-align: right;
}

.timeline-item:nth-child(even) {
	left: 50%;
	text-align: left;
}

.timeline-item::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--black);
	border: 2px solid var(--light-blue);
	top: 26px;
	z-index: 2;
	transition: all 0.3s ease;
}

.timeline-item:nth-child(odd)::after {
	right: -6px;
}

.timeline-item:nth-child(even)::after {
	left: -6px;
}

.timeline-item:hover::after {
	background: var(--light-blue);
	box-shadow: 0 0 10px var(--light-blue);
	transform: scale(1.3);
}

.timeline-date {
	font-family: 'DM Sans', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--accent-blue);
	margin-bottom: 6px;
	letter-spacing: 0.05em;
}

.timeline-card {
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 20px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: all 0.3s ease;
}

.timeline-card h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 4px;
	color: var(--white);
}

.timeline-card span {
	font-size: 12px;
	color: var(--light-blue);
	display: block;
	margin-bottom: 10px;
}

.timeline-card p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.timeline-item:hover .timeline-card {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(0, 164, 228, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ── DOUBLE COLUMN CONTENT BLOCK ── */
.details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.grid-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 32px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}

.grid-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 300;
	color: var(--light-blue);
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 10px;
}

.grid-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.grid-card li {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	position: relative;
	padding-left: 18px;
}

.grid-card li::before {
	content: '▪';
	position: absolute;
	left: 0;
	top: -2px;
	color: var(--accent-blue);
}

.grid-card li strong {
	color: var(--white);
	display: block;
	font-weight: 500;
	margin-bottom: 2px;
}

.grid-card:hover {
	border-color: rgba(0, 118, 192, 0.25);
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ── RESPONSIVENESS ── */
@media (max-width: 768px) {
	.philosophy-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.details-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	/* Timeline collapse to single column */
	.timeline::before {
		left: 20px;
	}
	
	.timeline-item {
		width: 100%;
		padding-left: 45px;
		padding-right: 0;
		text-align: left !important;
	}
	
	.timeline-item:nth-child(even) {
		left: 0;
	}
	
	.timeline-item::after {
		left: 14px !important;
		right: auto !important;
	}
}
