.socials-section {
  padding: 6rem 2rem;
  background: #f8f8f8;
}

.socials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.socials-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: capitalize;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.socials-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-decoration: none;
  background: white;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.socials-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.socials-icon {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.socials-platform {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
}

.socials-handle {
  color: #666;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  .socials-section {
      padding: 4rem 1.5rem;
  }

  .socials-title {
      font-size: 2rem;
      margin-bottom: 2rem;
  }

  .socials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }

  .socials-link {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .socials-grid {
      grid-template-columns: 1fr;
  }
}