/* About Section */
.about-section {
  padding: 10rem 0;
  background-color: #faf8f2;
}

.about-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Profile Photo */
.profile-photo {
  display: flex;
  justify-content: center;
}

.profile-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1d1d1d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.profile-photo img:hover {
  transform: scale(1.05);
}

/* Bio */
.about-bio {
  text-align: center;
  max-width: 650px;
}

.about-bio h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-bio p {
  font-size: 1.1rem;
  color: #616060;
  line-height: 1.8;
}

/* Skills Tags */
.about-skills {
  text-align: center;
  width: 100%;
}

.about-skills h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  margin-top: 2rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.skill-tags span {
  background-color: #1d1d1d;
  color: #faf8f2;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.skill-tags span:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Experience */
.about-experience {
  width: 100%;
  max-width: 700px;
}

.about-experience h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 2rem;
}

.experience-item {
  border-left: 3px solid #1d1d1d;
  padding: 0 0 2rem 1.5rem;
  position: relative;
}

.experience-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #1d1d1d;
}

.experience-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.experience-item span {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-bottom: 0.5rem;
}

.experience-item p {
  color: #616060;
  line-height: 1.6;
}