/**
 * Regional Prestige Concierge - Philosophy/About Section
 * 
 * About section with logo and philosophy text
 */

/* ============================================================================
   PHILOSOPHY/ABOUT SECTION
   ============================================================================ */

.about-philosophy-block {
	background-color: #0A0A19;
	background-image: url('../assets/images/carhero.svg');
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
	transform: none !important;
}

/* Dark overlay for philosophy section */
.about-philosophy-block::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 25, .8);
}

.philosophy-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	align-items: center;
}

.philosophy-logo {
	display: flex;
	justify-content: center;
}

.philosophy-accent {
	height: 200px;
	width: 200px;
}

.philosophy-heading {
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.philosophy-text {
	font-size: 32px;
	font-weight: 300;
	line-height: 1.4;
	font-family: 'Playfair Display', serif;
}

