@import url('fonts.css');

:root {
	--color-primary: #c41e3a;
	--color-dark: #2d2d2d;
	--color-light: #fafafa;
	--color-gray: #757575;
	--color-text-light: #e0e0e0;
	--font-main: 'IBM Plex Sans', sans-serif;
	--font-mono: 'JetBrains Mono', monospace;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	background-color: var(--color-light);
	color: var(--color-dark);
	line-height: 1.5;
	min-height: 100vh;
}

.layout {
	display: grid;
	grid-template-columns: 600px 1fr;
	min-height: 100vh;
}

.sidebar {
	background: var(--color-dark);
	color: white;
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	position: relative;
}

.sidebar::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	background: var(--color-primary);
}

.photo-section {
	text-align: center;
}

.photo-container {
	display: inline-block;
	margin-bottom: 30px;
}

.photo-container img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--color-primary);
}

.name-block {
	text-align: left;
}

.name-block h1 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.name-block .role {
	font-size: 15px;
	font-weight: 300;
	color: #b0b0b0;
	font-family: var(--font-mono);
	line-height: 1.4;
}

.cert-sidebar {
	border-top: 1px solid #404040;
	padding-top: 30px;
}

.sidebar-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-primary);
	margin-bottom: 20px;
	font-weight: 600;
	font-family: var(--font-mono);
}

.cert-main {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: white;
	padding: 20px 15px;
	background: rgba(255, 255, 255, 0.03);
	border-left: 3px solid var(--color-primary);
	transition: all 0.3s ease;
	margin-bottom: 15px;
}

.cert-main:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(5px);
}

.cert-main img {
	width: 55px;
	height: 55px;
	object-fit: contain;
}

.cert-main-text {
	flex: 1;
}

.cert-main-text h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
}

.cert-main-text p {
	font-size: 12px;
	color: #909090;
	font-family: var(--font-mono);
}

.other-certs-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cert-secondary {
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.02);
	border-left: 2px solid #555;
	font-size: 13px;
	line-height: 1.4;
	transition: all 0.3s ease;
}

.cert-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	border-left-color: var(--color-primary);
}

.cert-secondary strong {
	display: block;
	font-weight: 500;
	margin-bottom: 3px;
	color: #e0e0e0;
}

.cert-secondary span {
	font-size: 11px;
	color: #909090;
}

.main-content {
	padding: 80px 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.content-block {
	max-width: 650px;
}

.section {
	margin-bottom: 50px;
}

.section:last-child {
	margin-bottom: 0;
}

.section-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-primary);
	margin-bottom: 25px;
	font-weight: 600;
	font-family: var(--font-mono);
}

.bio-text {
	font-size: 18px;
	line-height: 1.8;
	font-weight: 300;
	color: var(--color-dark);
}

.linkedin-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	background: var(--color-dark);
	color: white;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
}

.linkedin-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--color-primary);
	transition: width 0.3s ease;
	z-index: 0;
}

.linkedin-button:hover::before {
	width: 100%;
}

.linkedin-button span,
.linkedin-button svg {
	position: relative;
	z-index: 1;
}

.linkedin-icon {
	width: 20px;
	height: 20px;
}

.info-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.info-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-gray);
	font-weight: 600;
	font-family: var(--font-mono);
}

.info-value {
	font-size: 16px;
	color: var(--color-dark);
	font-weight: 400;
}

@media (max-width: 968px) {
	.layout {
		grid-template-columns: 1fr;
	}

	.sidebar {
		padding: 50px 30px;
	}

	.sidebar::before {
		width: 100%;
		height: 4px;
		bottom: 0;
		top: auto;
	}

	.main-content {
		padding: 50px 30px;
	}

	.bio-text {
		font-size: 16px;
	}
}

