/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 17 2025 | 08:14:08 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Common icon container style */
.social-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgb(44, 44, 44); /* Normal background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Icon styling */
.social-container svg {
  width: 17px;
  transition: all 0.3s ease;
  fill: #ffffff; /* Default icon color */
}

/* Hover color variants */
.social-container.instagram:hover {
  background-color: #d62976; /* Instagram */
}

.social-container.twitter:hover {
  background-color: #00acee; /* Twitter */
}

.social-container.linkedin:hover {
  background-color: #0072b1; /* LinkedIn */
}

.social-container.facebook:hover {
  background-color: #1877f2; /* Facebook */
}

.social-container.youtube:hover {
  background-color: #ff0000; /* YouTube */
}

/* Active click feedback */
.social-container:active {
  transform: scale(0.9);
}

/* Slide-in top animation for icons */
.social-container:hover svg {
  animation: slide-in-top 0.3s both;
}

/* Keyframes for hover animation */
@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
