/* Contact section header color */
.contact-section h2 {
	color: #4f8cff;
}
/* Section divider styles */
.section-divider {
	border: none;
	border-top: 2px solid #4f8cff;
	width: 80vw;
	margin: 40px auto;
}
/* Contact section styles */
.contact-section {
	text-align: center;
}
.contact-email {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}
/* Projects section styles */
.projects-section {
	width: 80vw;
	max-width: 900px;
	margin: 40px auto 0 auto;
	padding: 32px 24px;
	background: #181a1b;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.projects-section h2 {
	color: #4f8cff;
	text-align: center;
	margin-top: 0;
}
.projects-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 24px;
}
.project-card {
	background: #23272a;
	color: #f5f7fa;
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.12);
	width: 200px;
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 0 0 200px;
	margin: 0;
	padding: 0 12px;
}
.project-card h3 {
	margin: 0;
	color: #4f8cff;
	font-size: 1.2em;
}
/* Navigation bar styles */
.main-nav {
	background: #23272a;
	border-bottom: 1px solid #4f8cff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 32px;
}
.main-nav li {
	margin: 0;
}
.main-nav a {
	display: block;
	padding: 14px 0;
	color: #4f8cff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.08em;
	transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
	color: #fff;
}
/* Profile photo styles */
.profile-photo {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%; /* Makes the image circular */
	border: 2px solid #4f8cff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	display: block;
	margin: 0 auto 18px auto;
	background: #23272a;
}
/* Footer styles */
.site-footer {
	background: #e5e7eb; /* Light grey */
	color: #181a1b;
	padding: 18px 0;
	margin-top: 40px;
	font-size: 1em;
}
.footer-content {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
}
.footer-links {
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer-links a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	margin-left: 4px;
}
.footer-links svg {
	margin-right: 2px;
}
/* General page styles */
body {
	font-family: Arial, sans-serif; /* Easy-to-read font */
	margin: 0;
	padding: 0;
	background: #181a1b; /* Dark background */
	color: #f5f7fa; /* Light text */
}

/* Hero section styles */
.hero {
	background: #23272a; /* Darker grey for hero */
	color: #4f8cff; /* Blue text for hero */
	padding: 48px 16px 32px 16px;
	text-align: center;
}
.hero h1 {
	margin-bottom: 12px;
	font-size: 2.5em;
	color: #fff; /* White heading */
}
.hero p {
	font-size: 1.2em;
	color: #b3cfff; /* Light blue for intro */
}
/* Container for bio and quote card side by side */
.bio-quote-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	max-width: 900px;
	margin: 32px auto 0 auto;
}

/* Quote card styles */
.quote-card {
	background: #23272a;
	color: #b3cfff;
	border-left: 4px solid #4f8cff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	padding: 24px 20px;
	max-width: 320px;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.quote-card blockquote {
	margin: 0 0 12px 0;
	font-style: italic;
	font-size: 1.05em;
}
.quote-card cite {
	color: #4f8cff;
	font-size: 0.95em;
	font-style: normal;
}

/* Bio section styles */
.bio {
	background: #23272a;
	/* margin and max-width now handled by container */
	padding: 24px 16px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	flex: 1 1 320px;
	min-width: 220px;
	max-width: 500px;
}
.bio h2 {
	margin-top: 0;
	color: #4f8cff;
}

/* Skills section as a card */
.skills.card {
	background: #181a1b;
	margin: 32px auto;
	width: 80vw;
	max-width: 900px;
	padding: 32px 24px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.skills h2 {
	margin-top: 0;
	color: #4f8cff;
	text-align: center;
}
.skills ul {
	list-style: none; /* Remove default bullets */
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.skills li {
	background: #2d3236; /* Lighter than main background */
	color: #f5f7fa;
	padding: 12px 22px;
	border-radius: 6px;
	font-weight: bold;
	display: flex;
	align-items: center;
	font-size: 1.08em;
	width: 170px;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.skills .material-icons {
	font-size: 1.4em;
	margin-right: 6px;
	color: #4f8cff;
}
/* Add you CSS here */
