/* about.css */

.about-container {
  max-width: 800px;
}

.text-justified {
  text-align: justify;
  text-justify: inter-word;
}

/* ─── Titres ─────────────────────────────────────────────────────────────── */
/* about.css */

.about-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff; /* "About" sera en blanc */
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
  /* Lueur blanche très légère pour le titre global */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.about-page-title .highlight {
  color: var(--color-green); /* "numbertwenty" en vert */
  /* Lueur verte plus prononcée pour rappeler l'image */
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.about-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  /* Glassmorphisme légèrement plus opaque pour la lecture longue */
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.about-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-green);
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.3); /* Légère lueur */

  margin-bottom: 1rem;
}
.about-section__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* ─── Paragraphes ────────────────────────────────────────────────────────── */
.about-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: justify;
  text-justify: inter-word;
}

.about-section p + p {
  margin-top: 0.75rem;
}

/* ─── Listes ─────────────────────────────────────────────────────────────── */
.about-list {
  list-style: disc;
  list-style-position: inside;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Style des listes pour la clarté */
.about-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-list strong {
  color: var(--color-green);

}

/* ─── Inline styles ──────────────────────────────────────────────────────── */
.brand {
  color: var(--color-green);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.3); /* Légère lueur */
}

/* ─── Photo ──────────────────────────────────────────────────────────────── */
.about-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-photo {
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  max-height: 20rem;
  object-fit: contain;
}

/* ─── Caption ────────────────────────────────────────────────────────────── */
.about-caption {
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
}
/* ============================================================
   LIGHT THEME OVERRIDES — about.css
   ============================================================ */

/* ── Titre principal ── */
[data-theme="light"] .about-page-title {
  color: var(--lt-text);
  text-shadow: none;
}
[data-theme="light"] .about-page-title .highlight {
  color: var(--color-green);
  text-shadow: none;
}

/* ── Sections ── */
[data-theme="light"] .about-section {
  background: var(--lt-surface);
  border-color: var(--lt-border-med);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
[data-theme="light"] .about-section__title {
  color: var(--lt-text);
  text-shadow: none;
}
[data-theme="light"] .about-section__subtitle {
  color: var(--lt-text-soft);
}
[data-theme="light"] .about-section p {
  color: var(--lt-text-soft);
  text-align: justify;
  text-justify: inter-word;
}

/* ── Listes ── */
[data-theme="light"] .about-list li {
  color: var(--lt-text-soft);
}
[data-theme="light"] .about-list strong {
  color: var(--color-green);
}

/* ── Brand inline ── */
[data-theme="light"] .brand {
  color: var(--color-green);
  text-shadow: none;
}

/* ── Photo ── */
[data-theme="light"] .about-photo {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ── Caption ── */
[data-theme="light"] .about-caption {
  color: var(--lt-text-2);
}