/* About Page Styles */
.about-main {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--background);
}

.about-main::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
  opacity: 0.3;
  top: -100px;
  right: -100px;
  z-index: 0;
  animation: float 15s ease-in-out infinite;
}

.about-main::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(110, 49, 255, 0.1) 0%, rgba(0,0,0,0) 70%);
  filter: blur(100px);
  opacity: 0.2;
  bottom: -100px;
  left: -100px;
  z-index: 0;
  animation: float 20s ease-in-out infinite reverse;
}

.about-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #9f6eff);
  border-radius: 2px;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.about-description {
  line-height: 1.8;
}

.about-description p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 0.8rem;
}

.about-values h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  margin-bottom: 1.2rem;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.about-team h2 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.about-team h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(110, 49, 255, 0.15);
}

.member-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(110, 49, 255, 0.3);
  position: relative;
}

.member-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-icon img {
  transform: scale(1.05);
}

.member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.member-role {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Animation keyframes */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
}

/* Responsive styles */
@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .about-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .about-main {
    padding: 6rem 0 4rem;
  }
  
  .about-title {
    margin-bottom: 2rem;
  }
  
  .team-grid {
    gap: 1.5rem;
  }
  
  .member-icon {
    width: 100px;
    height: 100px;
  }
  
  .member-name {
    font-size: 1.3rem;
  }
}

/* Custom visible class for fade in animation */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
} 