/* qui-sommes-nous.css - Specific stylesheet for NØDE Qui sommes-nous page */

/* ==========================================
   1. HERO SECTION (50VH)
   ========================================== */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.about-hero .hero-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 35vw;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(168,184,232,0.06) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

.breadcrumb .separator {
  margin: 0 8px;
}

.breadcrumb .current {
  color: var(--accent-iris-1);
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text-primary);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

/* Typewriter Container */
.typewriter-box {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 16px 32px;
  margin-top: 1.5rem;
  font-family: var(--font-title);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
  color: var(--accent-iris-1);
}

.typewriter-cursor {
  color: var(--accent-iris-2);
  margin-left: 2px;
  animation: cursor-blink 0.8s steps(2, start) infinite;
}

@keyframes cursor-blink {
  to {
    visibility: hidden;
  }
}


/* ==========================================
   2. EDITORIAL MANIFESTO SECTION
   ========================================== */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-left h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.4;
  color: var(--text-primary);
}

.manifesto-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-right p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}


/* ==========================================
   3. VALEURS SECTION
   ========================================== */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.valeur-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px 28px;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.valeur-item:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 184, 232, 0.05);
}

.valeur-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.valeur-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-iris-1);
  flex-shrink: 0;
}

.valeur-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-primary);
}

.valeur-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}


/* ==========================================
   4. TEAM SECTION
   ========================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 48px 24px;
  text-align: center;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.team-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.avatar-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.team-avatar-svg {
  width: 100%;
  height: 100%;
}

.member-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.member-linkedin {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-iris-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.member-linkedin:hover {
  color: #ffffff;
}

/* Solo grid — 1 seul membre centré */
.team-grid--solo {
  grid-template-columns: 1fr;
  max-width: 320px;
}

/* Photo de profil réelle */
.avatar-box--photo {
  width: 150px;
  height: 150px;
  border: 2px solid var(--accent-iris-1);
  box-shadow: 0 0 30px rgba(168, 184, 232, 0.2), 0 0 60px rgba(168, 184, 232, 0.08);
  transition: box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.team-card:hover .avatar-box--photo {
  box-shadow: 0 0 40px rgba(168, 184, 232, 0.35), 0 0 80px rgba(168, 184, 232, 0.15);
  border-color: var(--accent-iris-2);
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
}

.avatar-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(168, 184, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}


/* ==========================================
   5. TECHNOLOGY MARQUEE SCROLL
   ========================================== */
.stack-section {
  overflow: hidden;
  padding-bottom: 150px;
}

.tech-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.005);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.tech-marquee-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.tech-item {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-muted);
  filter: grayscale(1);
  opacity: 0.3;
  transition: filter 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth), text-shadow 0.3s var(--transition-smooth);
  cursor: default;
}

.tech-item:hover {
  filter: none;
  opacity: 1;
  color: var(--accent-iris-1);
  text-shadow: 0 0 20px rgba(168, 184, 232, 0.5);
}


/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    padding: 100px 0 60px 0;
  }

  .valeurs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-card {
    padding: 36px 20px;
  }

  .tech-marquee-track {
    gap: 3rem;
  }
}
