/* ============= ABOUT SECTION ============= */
.about-section {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
}

.socials-shortcut {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.socials-shortcut a {
  text-decoration: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  transition: transform 0.25s ease, color 0.25s ease;
}
.socials-shortcut a:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--accent-color);
  text-shadow: 0 6px 14px rgba(108, 0, 0, 0.35);
}
.socials-shortcut a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

/* experience-section */
.experience-section {
  max-width: 700px;
  margin: 40px 0 40px 320px;
  padding: 0 1rem;
}

.experience-card {
  border-left: 4px solid rgb(108, 0, 0);
  padding: 16px;
  margin-bottom: 20px;
  background: #f9f9f9;
  border-radius: 6px;
}

.experience-title {
  font-size: 18px;
  font-weight: bold;
}

.experience-company {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 4px;
}

.experience-date {
  font-size: 14px;
  color: gray;
  margin: 6px 0;
}

.experience-desc {
  font-size: 15px;
  line-height: 1.5;
}

.experience-links {
  margin-top: 10px;
}

.experience-links a {
  display: inline-block;
  margin-right: 12px;
  font-size: 14px;
  color: rgb(108, 0, 0);
  text-decoration: none;
  font-weight: 600;
}

.experience-links a:hover {
  text-decoration: dotted;
  color: var(--link-hover-color);
}

@media (max-width: 1024px) {
  .about-container {
    gap: 2rem;
  }

  .about-image img {
    width: 220px;
    height: 220px;
  }

  .about-text h1 {
    font-size: 2rem;
  }

  .experience-section {
    margin-left: 200px;
  }

  .experience-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .about-image img {
    width: 180px;
    height: 180px;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .experience-section {
    margin: 40px auto;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .about-image img {
    width: 140px;
    height: 140px;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

  .experience-section {
    margin: 20px auto;
    padding: 0 0.5rem;
  }

  .experience-title {
    font-size: 16px;
  }

  .experience-company {
    font-size: 14px;
  }

  .experience-desc {
    font-size: 14px;
  }

  .experience-links a {
    font-size: 13px;
    margin-right: 8px;
  }
}
