/* about.css - Professional About Page Styles */

/* About page hero */
.hero {
  min-height: 60vh;
  padding-top: 120px;
}

/* Content sections */
.content-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  margin: 60px 0;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.content-section:first-of-type {
  margin-top: 0;
  background: transparent;
  border: none;
}

.content-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}

.content-grid.single {
  grid-template-columns: 1fr;
}

.content-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.content-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: 200;
  letter-spacing: -1px;
}

.content-text .lead {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--accent-color);
  line-height: 1.6;
  font-weight: 300;
}

.content-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  line-height: 1.8;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Creator stats */
.creator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 80px 0;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 100;
  color: var(--primary-color);
  display: block;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.stat-label {
  color: var(--medium-gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* CTA section */
.cta-section {
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  margin: 0;
  border-top: 1px solid var(--border-color);
  padding: 120px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 25px;
  color: var(--primary-color);
  font-weight: 200;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: var(--accent-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Button enhancements for about page */
.cta-buttons .btn {
  min-width: 180px;
  transition: var(--transition);
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
}

/* Responsive design */
@media (max-width: 768px) {
  .content-section {
    padding: 80px 0;
    margin: 40px 0;
  }
  
  .content-grid.single {
    gap: 40px;
  }
  
  .content-text p {
    text-align: center;
    font-size: 1rem;
  }
  
  .creator-stats {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
    margin: 60px 0;
  }
  
  .stat {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid var(--border-color);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero {
    min-height: 50vh;
    padding-top: 100px;
  }
  
  .cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 60px 0;
  }
  
  .creator-stats {
    padding: 30px 20px;
    gap: 30px;
  }
  
  .stat {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .content-text .lead {
    font-size: 1.1rem;
  }
}

/* Animations */
.content-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.4s; }
.cta-section { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.stat:nth-child(1) { animation-delay: 0.8s; }
.stat:nth-child(2) { animation-delay: 0.9s; }
.stat:nth-child(3) { animation-delay: 1.0s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .content-section,
  .stat {
    animation: none;
    opacity: 1;
    transform: none;
  }
}