/* Social Media Integration Styles for CVCWVUAA */

/* Social Media Links Section */
.social-media-links {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  color: white;
  text-align: center;
}

.social-media-links h3 {
  margin: 0 0 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: white;
}

.social-link .social-icon {
  font-size: 1.1em;
}

/* Platform-specific colors on hover */
.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.linkedin:hover { background: #0077b5; }
.social-link.youtube:hover { background: #ff0000; }

/* Share Buttons Section */
.share-section {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid #e2e8f0;
}

.share-section h4 {
  margin: 0 0 16px 0;
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.share-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  background: white;
  color: #475569;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.9rem;
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Platform-specific share button styles */
.share-btn.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.share-btn.twitter:hover {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.share-btn.linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.share-btn.email:hover {
  background: #059669;
  color: white;
  border-color: #059669;
}

.share-btn.copy:hover {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
}

/* Social Feed Section */
.social-feed {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.social-feed-placeholder {
  text-align: center;
  color: #64748b;
}

.social-feed-placeholder h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.social-feed-placeholder p {
  margin: 8px 0;
}

.feed-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.feed-links a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.feed-links a:hover {
  background: #eff6ff;
  text-decoration: none;
}

/* Social Media Footer Links */
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-social .social-link:hover {
  color: #3b82f6;
  text-decoration: none;
}

/* Compact social buttons for headers */
.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.header-social .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .social-icons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .social-link {
    justify-content: center;
  }
  
  .share-buttons-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .share-buttons-grid {
    grid-template-columns: 1fr;
  }
  
  .social-media-links {
    padding: 16px;
  }
}

/* Social notification animations */
.social-notification {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* Enhanced WVU branding for social elements */
.social-media-links.wvu-branded {
  background: linear-gradient(135deg, #002855 0%, #EAAA00 100%);
}

.share-section.wvu-branded {
  border-color: #EAAA00;
}

.share-section.wvu-branded h4 {
  color: #002855;
}

/* Integration with existing site theme */
.theme-dark .social-media-links {
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
}

.theme-dark .share-section {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.theme-dark .share-btn {
  background: #374151;
  color: #f9fafb;
  border-color: #4b5563;
}

.theme-dark .social-feed {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}