/* Share Module Styles */
.share-section {
  padding: 3rem 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 2rem 0;
}

.share-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.share-content {
  text-align: center;
  margin-bottom: 2rem;
}

.share-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.share-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  min-width: 140px;
  justify-content: center;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-button i {
  font-size: 1.1rem;
}

/* Twitter Button */
.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-twitter:hover {
  background: #1a91da;
  color: white;
}

/* LinkedIn Button */
.share-linkedin {
  background: #0077b5;
  color: white;
}

.share-linkedin:hover {
  background: #006396;
  color: white;
}

/* Facebook Button */
.share-facebook {
  background: #1877f2;
  color: white;
}

.share-facebook:hover {
  background: #166fe5;
  color: white;
}

/* Copy Link Button */
.share-copy {
  background: var(--surface-color);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.share-copy:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.share-copy.copied {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .share-section {
    padding: 2rem 0;
    margin: 1.5rem 0;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .share-button {
    width: 100%;
    max-width: 280px;
  }
  
  .share-title {
    font-size: 1.25rem;
  }
  
  .share-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .share-container {
    padding: 0 0.75rem;
  }
  
  .share-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Animation for copy feedback */
@keyframes copySuccess {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.share-copy.copied {
  animation: copySuccess 0.3s ease-in-out;
}
