/* Contact Section */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.contact-content {
  background: var(--secondary-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-text {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.social-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}

.social-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
}

/* Hover effects */
.social-link:hover .social-icon-wrapper {
  transform: translateY(-5px);
  background: rgba(0, 123, 255, 0.2);
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

/* Specific social link colors */
.email-link:hover .social-icon-wrapper {
  background: rgba(234, 67, 53, 0.1);
}

.github-link:hover .social-icon-wrapper {
  background: rgba(36, 41, 46, 0.1);
}

.linkedin-link:hover .social-icon-wrapper {
  background: rgba(0, 119, 181, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }

  .contact-content {
    padding: 30px 20px;
  }

  .social-links {
    gap: 20px;
  }

  .social-icon-wrapper {
    padding: 15px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }
} 