/* Fix for Font Awesome 6 social icons hover effect */
.social-icon i {
  height: 100%;
  width: 100%;
  text-align: center;
}

/* Ensure proper sizing for Font Awesome icons */
.fa-brands, .fa-solid {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: inherit !important;
}

/* Fix hover animation for Font Awesome icons */
.social-icon:hover i:first-child {
  margin-top: -38px;
}

.social-icon.si-small:hover i:first-child {
  margin-top: -30px;
}

/* Ensure proper coloring for the icons */
.social-icon i:last-child {
  color: #FFF !important;
}

/* Add specific fixes for X icon */
.fa-x-twitter {
  font-size: 90%; /* Slightly smaller to match other icons */
}

/* Specific fix for icons in index.php to display inline with text */
#about h3 i.fa-solid {
  display: inline;
  width: auto;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

#about h3 br + i.fa-solid {
  display: inline;
}

/* Remove line breaks between icon and text in index.php */
#about h3 {
  display: block;
  white-space: normal;
}

/* Add spacing between sections */
#about h3 i.fa-solid:not(:first-child) {
  margin-left: 10px;
  margin-top: 10px;
}
