/* your styles go here */

/* Contact Section Styles - Dark Theme */
.contact-item {
  padding: 20px 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

.contact-item:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-icon i {
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover .contact-icon i {
  transform: scale(1.1);
}

.contact-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Dark Social Links Styles */
.social-links-dark {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

.social-link-dark:hover {
  transform: translateY(-2px) scale(1.05);
  text-decoration: none;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.social-link-dark.facebook:hover {
  background-color: #3b5998;
  border-color: #3b5998;
}

.social-link-dark.twitter:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.social-link-dark.linkedin:hover {
  background-color: #0077b5;
  border-color: #0077b5;
}

.social-link-dark.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
}

.social-link-dark.github:hover {
  background-color: #333;
  border-color: #333;
}

.social-link-dark.blog:hover {
  background-color: #21759b;
  border-color: #21759b;
}

.social-link-dark.email:hover {
  background-color: #dd4b39;
  border-color: #dd4b39;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-item {
    padding: 15px 10px;
    margin-bottom: 15px;
  }
  
  .social-links-dark {
    gap: 12px;
  }
  
  .social-link-dark {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .contact-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .contact-item {
    margin-bottom: 20px;
  }
  
  .contact-icon i {
    font-size: 1.5rem !important;
  }
}