/**
 * About Section Styles
 * Remote Madam Design System
 */

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

.about {
	position: relative;
	background: linear-gradient(180deg, var(--bg) 0%, rgba(9, 9, 9, 0.95) 100%);
	padding: 140px 0 120px;
	overflow: hidden;
}

.about__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
}

.about__inner {
	display: grid;
	grid-template-columns: 52% 48%;
	gap: 60px;
	align-items: center;
}

/* ============================================
   ABOUT CONTENT
   ============================================ */

.about__content {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease forwards;
}

.about__title {
	font-size: 48px;
	font-weight: 700;
	font-family: var(--font-heading);
	color: var(--text);
	margin: 0 0 32px;
	line-height: 1.2;
}

.about__description {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin: 0 0 24px;
	max-width: 600px;
}

.about__description:last-of-type {
	margin-bottom: 40px;
}

/* ============================================
   ABOUT SIGNATURE
   ============================================ */

.about__signature {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about__signature-line {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: var(--radius-full);
}

.about__signature-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about__signature-name {
	font-size: 24px;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--text);
	margin: 0;
}

.about__signature-title {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ============================================
   ABOUT VISUAL
   ============================================ */

.about__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 600px;
}

.about__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.about__glow--pink {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 93, 174, 0.25) 0%, transparent 75%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: blur(40px);
}

.about__glow--gradient-1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(245, 93, 174, 0.15) 100%);
	filter: blur(70px);
	top: 25%;
	right: 15%;
}

.about__glow--gradient-2 {
	width: 250px;
	height: 250px;
	background: linear-gradient(135deg, rgba(245, 93, 174, 0.15) 0%, rgba(108, 99, 255, 0.1) 100%);
	filter: blur(90px);
	bottom: 25%;
	left: 15%;
}

.about__image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	background-color: #111111;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about__image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 24px;
}

.about__placeholder {
	width: 100%;
	height: 500px;
	background-color: #111111;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* fadeUp keyframe defined in animations.css */

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
	.about__container {
		padding: 0 40px;
	}

	.about__inner {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
	}

	.about__title {
		font-size: 40px;
		margin-bottom: 28px;
	}

	.about__description {
		font-size: 17px;
		max-width: 550px;
	}

	.about__visual {
		min-height: 500px;
	}

	.about__glow--pink {
		width: 400px;
		height: 400px;
	}

	.about__image-wrapper {
		max-width: 450px;
	}
}

@media (max-width: 768px) {
	.about {
		padding: 100px 0 80px;
	}

	.about__container {
		padding: 0 24px;
	}

	.about__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.about__content {
		text-align: center;
	}

	.about__title {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.about__description {
		font-size: 16px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.about__signature {
		align-items: center;
	}

	.about__visual {
		min-height: 400px;
		order: -1;
	}

	.about__glow--pink {
		width: 350px;
		height: 350px;
	}

	.about__image-wrapper {
		max-width: 400px;
	}

	.about__placeholder {
		height: 400px;
	}
}

@media (max-width: 480px) {
	.about {
		padding: 80px 0 60px;
	}

	.about__container {
		padding: 0 20px;
	}

	.about__inner {
		gap: 40px;
	}

	.about__title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.about__description {
		font-size: 15px;
	}

	.about__signature-name {
		font-size: 20px;
	}

	.about__visual {
		min-height: 350px;
	}

	.about__glow--pink {
		width: 300px;
		height: 300px;
	}

	.about__image-wrapper {
		max-width: 100%;
		border-radius: 20px;
	}

	.about__image {
		border-radius: 20px;
	}

	.about__placeholder {
		height: 350px;
		border-radius: 20px;
	}
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
	.about__content {
		animation: none;
		opacity: 1;
		transform: none;
	}
}
