/* contact.css: Styles for the Contact section */

.contact {
  background-color: var(--primary-color);
  color: white;
}

.contact .section-title {
  color: white;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--secondary-color);
}

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

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: white;
}
