/**
 * About Page Styles
 * 
 * Modern styles for the About page matching the site design
 * 
 * @package Arptreme_Theme_10
 * @since 1.0.0
 */

/* ====================
   Full Width Override
   ==================== */

/* Override parent container constraints */
body.page-template-template-about #content.site-content {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.about-page-modern {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.about-page-modern > * {
	max-width: 100% !important;
}

/* ====================
   About Hero Section (About Me + Image)
   ==================== */

.about-hero {
	padding: 6rem 4rem;
	background: #ffffff;
	width: 100%;
}

.about-hero__container {
	max-width: 100%;
	width: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-hero__content {
	max-width: 600px;
}

.about-hero__title {
	font-family: 'Instrument Serif', serif;
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: #1a1a1a;
}

.about-hero__text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 1.5rem;
}

.about-hero__image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 4 / 5;
	background: #f5f5f5;
}

.about-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-hero__image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
	color: #999;
}

.about-hero__image-placeholder svg {
	margin-bottom: 1rem;
	opacity: 0.5;
}

.about-hero__image-placeholder p {
	font-size: 1rem;
	font-weight: 500;
}

/* ====================
   My Process Section
   ==================== */

.about-process {
	padding: 6rem 4rem;
	background: #fafafa;
	width: 100%;
}

.about-process__container {
	max-width: 100%;
	width: 100%;
	margin: 0;
}

.about-process__title {
	font-family: 'Instrument Serif', serif;
	font-size: 3rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 4rem;
	color: #1a1a1a;
}

.about-process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.about-process__item {
	background: #ffffff;
	border-radius: 16px;
	padding: 3rem 2rem;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-process__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.12);
}

.about-process__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
	border-radius: 50%;
	color: #1a1a1a;
}

.about-process__item-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.about-process__item-text {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.6);
}

/* ====================
   About CTA Section
   ==================== */

.about-cta {
	padding: 8rem 4rem;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	position: relative;
	overflow: hidden;
	width: 100%;
}

.about-cta__container {
	max-width: 100%;
	width: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-cta__content {
	max-width: 600px;
}

.about-cta__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.about-cta__badge svg {
	width: 16px;
	height: 16px;
}

.about-cta__title {
	font-family: 'Instrument Serif', serif;
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.about-cta__description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2.5rem;
}

.about-cta__buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.about-cta__button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid transparent;
}

.about-cta__button--primary {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.15);
}

.about-cta__button--primary:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.about-cta__button--primary svg {
	width: 18px;
	height: 18px;
}

.about-cta__button--secondary {
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	border-color: transparent;
}

.about-cta__button--secondary:hover {
	color: #ffffff;
}

/* Visual Decoration */
.about-cta__visual {
	position: relative;
	height: 400px;
}

.about-cta__visual-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cta__visual-circle--1 {
	width: 300px;
	height: 300px;
	top: 0;
	right: 0;
	animation: float 6s ease-in-out infinite;
}

.about-cta__visual-circle--2 {
	width: 200px;
	height: 200px;
	top: 50%;
	right: 25%;
	animation: float 8s ease-in-out infinite;
	animation-delay: 1s;
}

.about-cta__visual-circle--3 {
	width: 150px;
	height: 150px;
	bottom: 0;
	right: 40%;
	animation: float 7s ease-in-out infinite;
	animation-delay: 2s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* ====================
   Responsive Design
   ==================== */

@media (max-width: 1024px) {
	.about-hero__container,
	.about-cta__container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.about-hero__title,
	.about-cta__title {
		font-size: 2.5rem;
	}
	
	.about-process__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.about-cta__visual {
		display: none;
	}
}

@media (max-width: 768px) {
	.about-hero,
	.about-process,
	.about-cta {
		padding: 4rem 1.5rem;
	}
	
	.about-hero__title,
	.about-cta__title {
		font-size: 2rem;
	}
	
	.about-process__title {
		font-size: 2rem;
	}
	
	.about-hero__text,
	.about-cta__description {
		font-size: 1rem;
	}
	
	.about-process__item {
		padding: 2rem 1.5rem;
	}
	
	.about-cta__buttons {
		flex-direction: column;
	}
	
	.about-cta__button {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.about-hero__title,
	.about-cta__title {
		font-size: 1.75rem;
	}
	
	.about-process__title {
		font-size: 1.75rem;
		margin-bottom: 2rem;
	}
	
	.about-hero__image {
		aspect-ratio: 1 / 1;
	}
}
