/**
 * Modern About Page Design
 * Clean, elegant layout with beautiful typography
 */

/* =========================
   ABOUT PAGE HERO
========================= */
.about-page-hero {
	background: linear-gradient(135deg, rgba(31, 41, 51, 0.95) 0%, rgba(59, 78, 255, 0.85) 100%),
				url('../images/DSC04450-Edit.webp') center/cover no-repeat;
	padding: 120px 20px 80px;
	position: relative;
	overflow: hidden;
}

.about-page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/DSC04450-Edit.webp') center/cover no-repeat;
	filter: blur(8px);
	opacity: 0.3;
	z-index: 0;
}

.about-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
}

.about-main-title {
	font-size: 64px;
	font-weight: 700;
	margin: 0 0 20px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-nav a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
	color: #ffffff;
}

.breadcrumb-nav .separator {
	margin: 0 5px;
	opacity: 0.7;
}

/* =========================
   MAIN CONTENT
========================= */
.about-page-main {
	padding: 80px 0;
	background: #ffffff;
}

.about-page-main .container {
	max-width: 1400px;
}

/* =========================
   STORY SECTION
========================= */
.about-story-section {
	margin-bottom: 100px;
}

.story-content-wrapper {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
}

.story-text-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.story-paragraph {
	line-height: 1.9;
	font-size: 17px;
	color: #333;
}

.story-paragraph p {
	margin: 0;
	text-align: justify;
	letter-spacing: 0.3px;
}

.story-paragraph:first-child {
	font-size: 18px;
	font-weight: 500;
	color: #1f2933;
}

.story-image-content {
	position: sticky;
	top: 120px;
}

.founder-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	background: #f8f9fa;
	padding: 20px;
}

.founder-image {
	width: 100%;
    height: 387px;
    display: block;
    border-radius: 15px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

section.about-block-section {
    padding-bottom: 37px !important;
}
.founder-image-wrapper:hover .founder-image {
	transform: scale(1.02);
}

/* =========================
   ALOPECIA SECTION
========================= */
.alopecia-section {
	background: linear-gradient(135deg, #f8f6f0 0%, #fff5e6 100%);
	padding: 80px 40px;
	border-radius: 30px;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
}

.alopecia-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.alopecia-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.alopecia-title {
	font-size: 48px;
	font-weight: 700;
	color: #1f2933;
	margin: 0 0 50px 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.alopecia-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #d4af37, #ffd700);
	border-radius: 2px;
}

.alopecia-image-wrapper {
	margin: 50px 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
	background: #ffffff;
	padding: 15px;
}

.alopecia-main-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;
	object-fit: cover;
}

.alopecia-description {
	max-width: 800px;
	margin: 40px auto 0;
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	font-style: italic;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1200px) {
	.story-content-wrapper {
		gap: 40px;
	}
	
	.about-main-title {
		font-size: 52px;
	}
	
	.alopecia-title {
		font-size: 40px;
	}
}

@media (max-width: 992px) {
	.story-content-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.story-image-content {
		position: static;
		order: -1;
	}
	
	.founder-image-wrapper {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.about-main-title {
		font-size: 42px;
	}
	
	.alopecia-section {
		padding: 60px 30px;
	}
	
	.alopecia-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.about-page-hero {
		padding: 80px 20px 60px;
	}
	
	.about-main-title {
		font-size: 36px;
		letter-spacing: 1px;
	}
	
	.breadcrumb-nav {
		font-size: 14px;
	}
	
	.about-page-main {
		padding: 60px 0;
	}
	
	.about-story-section {
		margin-bottom: 60px;
	}
	
	.story-paragraph {
		font-size: 16px;
		text-align: left;
	}
	
	.story-paragraph:first-child {
		font-size: 17px;
	}
	
	.alopecia-section {
		padding: 40px 20px;
		border-radius: 20px;
		margin-top: 40px;
	}
	
	.alopecia-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.alopecia-image-wrapper {
		margin: 30px 0;
		padding: 10px;
	}
	
	.alopecia-description {
		font-size: 16px;
		margin-top: 30px;
	}
}

@media (max-width: 576px) {
	.about-main-title {
		font-size: 28px;
	}
	
	.story-content-wrapper {
		gap: 30px;
	}
	
	.story-paragraph {
		font-size: 15px;
		gap: 20px;
	}
	
	.alopecia-title {
		font-size: 24px;
	}
}
