/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Site specific styles */
body {
	font-family: 'Poppins', sans-serif;
	color: #1a1a1a;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
	color: #c11c84;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: #c11c84;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	background-color: #f7f7f7;
}

.site-nav-download-resume {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-nav > ul {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-nav > ul > li > a {
	color: #1a1a1a;
	font-weight: 500;
}

.site-nav > ul > li > a:hover {
	color: #c11c84;
}

.resume-link {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	background-color: #c11c84;
}

.resume-link:hover {
	text-decoration: none;
}

.resume-link > svg {
	width: 24px;
	height: 24px;
	fill: currentcolor;
}

.nav-toggle {
	display: none;
	cursor: pointer;
	border: none;
	background: none;
}

.nav-toggle > svg {
	width: 24px;
	height: 24px;
	fill: currentcolor;
}

@media screen and (max-width: 767px) {
	.site-nav > ul {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.nav-list.active {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		top: 100%;
		right: 0;
		width: 100%;
		padding: 0 20px 20px;
		box-sizing: border-box;
		background-color: #f7f7f7;
	}
}

.site-content {
	padding: 40px 0;
}

.hero-section {
	padding: 40px 0;
}

.hero-image {
	height: auto;
	border-radius: 100%;
	margin-bottom: 10px;
}

.hero-title {
	font-size: 36px;
	margin-bottom: 10px;
}

.hero-subtitle {
	color: #555;
	font-size: 20px;
	font-weight: 500;
}

.about-section {
	padding: 40px 0;
}

.section-title {
	font-size: 28px;
	margin-bottom: 10px;
}

.section-description {
	margin-bottom: 10px;
}

.skills-section {
	padding: 40px 0;
}

.skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.skill {
	padding: 4px 8px;
	color: #fff;
	border-radius: 4px;
	background-color: inherit;
}

.projects-section {
	padding: 40px 0;
}

.projects-lists {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.project-item {
	border-radius: 4px;
	box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	padding-bottom: 20px;
}

.project-item > a {
	color: #1a1a1a;
}

.project-item > a:hover {
	text-decoration: none;
}

.project-item > a:hover > .project-image {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

.project-image {
	height: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto 10px;
	transform: none;
	transition: transform 0.3s ease;
}

.project-title,
.project-description {
	padding: 0 20px;
}

.project-item > a:hover > .project-title {
	text-decoration: underline;
}

.project-title {
	font-size: 20px;
	margin-bottom: 10px;
}

.contact-section {
	padding: 40px 0;
}

.site-footer {
	padding: 20px 0;
	border-top: 1px solid #eee;
	background-color: #f7f7f7;
}

.copyright-social-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 20px;
}

.copyright {
	font-size: 14px;
}

.social-links {
	display: flex;
	gap: 5px;
}

.social-links > a {
	font-size: 0;
}

.social-links > a > svg {
	width: 36px;
	height: 36px;
	fill: #1a1a1a;
}

.social-links > a:hover > svg {
	fill: #c11c84;
}
