:root {
  --bs-font-family-heading: 'Outfit', sans-serif;
}

.social-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  background: rgba(30, 0, 60, 0.8);
  border-radius: 0 8px 8px 0;
  z-index: 1000;
  flex-wrap: nowrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, background 0.3s ease;
  border-radius: 50%;
  background: #6a0dad;
  color: white;
}

.social-icon:hover {
  transform: scale(1.2);
  background: #9b30ff;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.main-content {
  margin-left: 60px;
}

