/* About Page Styles */

.about-main {
  padding: 3rem 0;
  min-height: calc(100vh - 60px - 80px); /* Abzüglich Header und Footer */
}

/* Hero Section */
.about-hero {
  margin-bottom: 2rem;
  text-align: center;
}

.about-hero-content {
  padding: 3rem 2rem;
  text-align: center;
}

.about-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styles */
.about-section {
  margin-bottom: 2rem;
  padding: 2rem;
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.section-divider {
  height: 3px;
  width: 60px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 3px;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.team-role {
  font-size: 0.9rem;
  color: var(--color-text-lighter);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Team Social Icons */
.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  color: var(--color-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--color-primary-dark);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:active {
  transform: translateY(-1px);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.value-description {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 180, 216, 0.2), rgba(67, 97, 238, 0.2));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-dark);
  z-index: 1;
}

.timeline-content {
  width: 45%;
  padding: 1rem;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--glass-border);
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(5px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.timeline-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.timeline-link {
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0;
}

.timeline-link:hover {
  color: var(--color-primary-dark);
}

.timeline-link[href^="https://"]::before {
  content: attr(href);
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

.timeline-link[href^="https://nexgen-nexus.net"]::before {
  content: "nexgen-nexus.net";
}

.timeline-link[href^="https://novaplex.xyz"]::before {
  content: "novaplex.xyz";
}

.timeline-link[href^="https://store.novaplex.xyz"]::before {
  content: "store.novaplex.xyz";
}

.timeline-link[href^="https://docs.novaplex.xyz"]::before {
  content: "docs.novaplex.xyz";
}

/* CTA Section */
.about-cta {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .team-grid, .values-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
}
