/* ==========================================================================
   hakkimda.css — Hakkımda şablonu (§3.6)
   ========================================================================== */

.about-title {
	margin-bottom: 2rem;
}

/* ----------------------------------------------- Portre + iki kart */

.about-intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 768px) {
	.about-intro {
		grid-template-columns: 1fr 2fr;
	}
}

.about-portrait {
	width: 100%;
}

.about-card {
	position: relative;
	overflow: hidden;
}

.about-card__title {
	margin-bottom: .5rem;
}

.about-card__text {
	color: hsl(var(--muted-foreground));
	line-height: 1.7;
}

/* "Ne Yapıyorum?" kartında alttan hafif primary parıltı */
.about-card--glow::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -60%;
	left: 0;
	height: 100%;
	background: radial-gradient(ellipse at bottom center, hsl(var(--primary) / .18), transparent 70%);
	pointer-events: none;
}

.about-card--glow > * {
	position: relative;
}

.about-content {
	margin-top: 2rem;
}

/* --------------------------------------------- Yolculuk timeline */

.about-journey .section-title,
.about-contact .section-title {
	margin-bottom: 1.5rem;
}

.timeline {
	position: relative;
	margin: 0;
	padding: 0 0 0 3.5rem;
	list-style: none;
}

/* Marker'ların merkezinden geçen dikey çizgi (20px = 40px marker'ın yarısı) */
.timeline::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 20px;
	width: 1px;
	background: hsl(var(--border));
}

.timeline__item {
	position: relative;
}

.timeline__item + .timeline__item {
	margin-top: 1.25rem;
}

.timeline__marker {
	position: absolute;
	top: 0;
	left: -3.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid hsl(var(--border));
	border-radius: 50%;
	background: hsl(var(--background));
	color: hsl(var(--muted-foreground));
}

.timeline__marker.is-current {
	border-color: hsl(var(--primary));
	color: hsl(var(--primary));
}

.timeline__card.is-current {
	background: hsl(var(--primary) / .05);
	border-color: hsl(var(--primary) / .3);
}

.timeline__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	margin-bottom: .5rem;
}

.timeline__year {
	font-family: var(--font-mono);
	font-size: var(--text-mono-sm);
	font-weight: 700;
	color: hsl(var(--primary));
}

.timeline__desc {
	margin-top: .5rem;
	font-family: var(--font-mono);
	font-size: var(--text-mono-sm);
	line-height: 1.7;
	color: hsl(var(--muted-foreground));
}

.timeline__desc p + p {
	margin-top: .75em;
}

/* ------------------------------------------------------- İletişim */

.about-contact__text {
	margin-bottom: 1.25rem;
	max-width: 40rem;
	line-height: 1.7;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.contact-form__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.about-contact + .newsletter,
.about-journey + .newsletter {
	margin-top: 1rem;
}
