/* Import main style */
@import url("/style.css");
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

.profile img {
	width: 100%;
	max-width: 600px;
	display: block;
	margin: 2rem auto;
	border-radius: 10px;
	border: 2px solid #444;
}
.intro {
	font-style: italic;
	font-size: 1.2rem;
	color: #ccc;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}
.bio {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem 3rem;
	font-size: 1.1rem;
	line-height: 1.8;
}
.social-links {
  margin-top: 2em;
  padding: 1em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
}

.social-links h2 {
  font-size: 1.5em;
  margin-bottom: 0.8em;
  color: #fff;
  font-weight: 600;
}

.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6em;
}

.social-links li a {
  display: block;
  padding: 0.6em 1em;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 500;
}

.social-links li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
