/*
 * SocialMedia Mobile Styles (page-specific)
 * Only for SocialMedia.cshtml, does not affect shared styles
 */

@media (max-width: 1200px) {
  .social-page-container {
    grid-template-columns: 220px 1fr !important;
    gap: 1.2rem !important;
  }
  .social-page-sidebar {
    padding: 1.2rem 1rem !important;
  }
}

@media (max-width: 992px) {
  .social-page-container {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  .social-page-sidebar {
    width: 100% !important;
    position: static !important;
    margin-bottom: 2rem !important;
    box-shadow: none !important;
    border-radius: 1rem !important;
    padding: 1.2rem 1rem !important;
  }
  .social-page-content {
    padding: 1.2rem 0.5rem !important;
    border-radius: 1rem !important;
    min-height: unset !important;
  }
  .platform-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .feature-box {
    padding: 1.2rem !important;
    font-size: 0.95rem !important;
  }
  .platform-detail-header h2 {
    font-size: 1.1rem !important;
  }
  .platform-cta {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }
  .social-nav-links {
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.7rem !important;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #22c55e #e0ffe7;
  }
  .social-nav-link {
    min-width: 120px !important;
    flex: 0 0 auto;
    font-size: 0.95rem !important;
    padding: 0.5rem 0.75rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .social-page-header {
    padding: 1rem 0.5rem !important;
    font-size: 1.1rem !important;
  }
  .social-page-header h1 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .social-page-header h1 {
    font-size: 1.1rem !important;
  }
  .platform-detail-header h2 {
    font-size: 1rem !important;
  }
  .social-nav-link {
    min-width: 90px !important;
    font-size: 0.85rem !important;
    padding: 0.4rem 0.5rem;
  }
}

/* SocialMedia Page-Specific Styles */
.social-media-page {
  background: #f7fafc;
  min-height: 100vh;
  padding: 2rem 0;
}
.social-page-header {
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #e0ffe7 0%, #b3ffe0 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(34,197,94,0.10);
  padding: 2.5rem 1.2rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1);
}
.social-page-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #22c55e, #0ea5e9, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-page-header .lead {
  font-size: 1.2rem;
  color: #444;
  margin-top: 0.5rem;
  font-weight: 500;
}
.social-page-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
}
.social-page-sidebar {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(34,197,94,0.10);
  padding: 2rem 1.2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
  animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1);
}
.social-page-sidebar h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.social-nav-links {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #22c55e #e0ffe7;
}
.social-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 0.8rem;
  background: #f0fdf4;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(34,197,94,0.08);
}
.social-nav-link.active,
.social-nav-link:hover {
  background: linear-gradient(90deg, #d1fae5 0%, #b3ffe0 100%);
  color: #22c55e;
  box-shadow: 0 4px 16px rgba(34,197,94,0.18);
  transform: translateY(-2px) scale(1.04);
}
.social-nav-link i {
  font-size: 1.5rem;
  width: 32px;
  text-align: center;
  transition: color 0.2s, transform 0.2s;
}
.social-nav-link:hover i {
  color: #0ea5e9;
  transform: scale(1.2);
}
.cta-section.highlight {
  background: linear-gradient(135deg, #e0ffe7 0%, #b3ffe0 100%);
  border: 2px solid #22c55e;
  box-shadow: 0 4px 24px rgba(34,197,94,0.12);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1.4s cubic-bezier(0.4,0,0.2,1);
}
.cta-section.highlight h6 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #22c55e;
}
.cta-section.highlight p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 1rem;
}
.cta-section.highlight .btn {
  width: 100%;
  font-weight: 600;
  background: linear-gradient(90deg, #22c55e 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(14,165,233,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-section.highlight .btn:hover {
  background: linear-gradient(90deg, #0ea5e9 0%, #22c55e 100%);
  box-shadow: 0 4px 16px rgba(14,165,233,0.18);
}
.social-page-content {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(34,197,94,0.10);
  padding: 2rem 1.2rem;
  animation: fadeInUp 1.6s cubic-bezier(0.4,0,0.2,1);
}
.platform-detail {
  display: none;
}
.platform-detail.active {
  display: block;
}
.platform-detail-header {
  text-align: center;
  margin-bottom: 2rem;
}
.platform-detail-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #222;
  letter-spacing: 0.5px;
}
.platform-detail-header .lead {
  font-size: 1.1rem;
  color: #444;
  margin-top: 0.5rem;
  font-weight: 500;
}
.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.feature-box {
  background: #f0fdf4;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(34,197,94,0.08);
  padding: 1.2rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeInUp 1.8s cubic-bezier(0.4,0,0.2,1);
}
.feature-box:hover {
  box-shadow: 0 8px 32px rgba(34,197,94,0.18);
  transform: translateY(-4px) scale(1.03);
}
.feature-box i {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  color: #22c55e;
  transition: color 0.2s, transform 0.2s;
}
.feature-box:hover i {
  color: #0ea5e9;
  transform: scale(1.15);
}
.platform-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.platform-cta .btn-lg {
  font-size: 1.15rem;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #ff0000 0%, #d90429 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,0,0,0.10);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.platform-cta .btn-lg:hover {
  background: linear-gradient(90deg, #d90429 0%, #ff0000 100%);
  box-shadow: 0 4px 16px rgba(255,0,0,0.18);
  transform: scale(1.04);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
