/* Help Page Styles */

/* Developer Section */
.developer-section {
  margin: 2rem 0;
}

.developer-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.developer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}

.developer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: bold;
}

.developer-info p {
  margin: 0.3rem 0;
  color: var(--text);
  line-height: 1.5;
}

/* Contact Section */
.contact-section {
  margin: 2rem 0;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  font-weight: 500;
}

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

.social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Social Media Colors */
.social-link.github {
  border-color: #333;
  color: #333;
}

.social-link.github:hover {
  background: #333;
  color: white;
}

.social-link.facebook {
  border-color: #1877f2;
  color: #1877f2;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  border-color: #e4405f;
  color: #e4405f;
}

.social-link.instagram:hover {
  background: #e4405f;
  color: white;
}

.social-link.linkedin {
  border-color: #0077b5;
  color: #0077b5;
}

.social-link.linkedin:hover {
  background: #0077b5;
  color: white;
}

.social-link.twitter {
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: white;
}

/* FAQ Section */
.faq-section {
  margin: 2rem 0;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

.faq-item h4 {
  margin: 0 0 0.8rem 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  margin: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-item {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-item h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Support Section */
.support-section {
  margin: 2rem 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.support-section h3 {
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.support-section p {
  margin: 0 0 1rem 0;
  color: var(--text);
}

.support-section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.support-section li {
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.5;
}

.support-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.support-section a:hover {
  text-decoration: underline;
}

/* Section Headers */
.developer-section h3,
.contact-section h3,
.faq-section h3,
.features-section h3,
.support-section h3 {
  margin: 0 0 1rem 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Dark Mode Adjustments */
body.dark .developer-card {
  background: var(--card);
  border-color: var(--border);
}

body.dark .social-link {
  background: var(--card);
  border-color: var(--border);
}

body.dark .faq-item {
  background: var(--card);
  border-color: var(--border);
}

body.dark .feature-item {
  background: var(--card);
  border-color: var(--border);
}

body.dark .support-section {
  background: var(--card);
  border-color: var(--border);
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .developer-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .developer-avatar {
    width: 60px;
    height: 60px;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .social-link {
    padding: 0.8rem;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .developer-card {
    padding: 1rem;
  }
  
  .developer-info h4 {
    font-size: 1.1rem;
  }
  
  .developer-info p {
    font-size: 0.9rem;
  }
  
  .faq-item {
    padding: 1rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .support-section {
    padding: 1rem;
  }
}

/* Animation for feature items */
@keyframes featureFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  animation: featureFadeIn 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

/* Focus styles for accessibility */
.social-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.feature-item:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .developer-card,
  .faq-item,
  .feature-item,
  .support-section {
    border-width: 3px;
  }
  
  .social-link {
    border-width: 3px;
  }
} 