/* ════════════════════════════════
   VARIABLES — Thème Ardoise & Or
   ════════════════════════════════ */
:root {
  --noir:     #0F1923;
  --ardoise:  #1E2A3A;
  --ardoise2: #253447;
  --or:       #C9A84C;
  --or-clair: #E8C97A;
  --or-bg:    rgba(201, 168, 76, 0.12);
  --texte:    #EAE6DF;
  --muted:    #8FA3B8;
  --border:   rgba(201, 168, 76, 0.2);
}

/* Mode clair ( toggle JS) */
body.light-mode {
  --noir:    #F5F5F0;
  --ardoise: #FFFFFF;
  --ardoise2:#F0EFE8;
  --texte:   #1a1a1a;
  --muted:   #555555;
  --border:  rgba(201, 168, 76, 0.35);
}

/* ════════════════════════════════
   BASE
   ════════════════════════════════ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ardoise);
  color: var(--texte);
  margin-top: 64px;
  transition: background 0.3s, color 0.3s;
}

/* ════════════════════════════════
           NAVBAR 
   ════════════════════════════════ */
.navbar {
  background: var(--noir) !important;
  border-bottom: 1px solid var(--border);
  height: 64px;
  padding: 0;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--or) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted) !important;
  border-radius: 6px;
  padding: 7px 16px !important;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--or-bg) !important;
  color: var(--or) !important;
}

.navbar-toggler {
  border-color: var(--or) !important;
}

.navbar-toggler-icon {
  filter: invert(70%) sepia(50%) saturate(400%) hue-rotate(10deg);
}

.nav-search {
  padding: 7px 14px;
  background: var(--ardoise2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--texte);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  width: 170px;
  transition: border-color 0.2s;
}

.nav-search::placeholder { color: var(--muted); }
.nav-search:focus { border-color: var(--or); }

/* Bouton mode*/
.btn-mode {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--or);
  background: var(--or-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-mode:hover { background: rgba(201, 168, 76, 0.22); }

/* ── Menu mobile : fond visible ── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--noir);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.2rem;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .navbar-nav { margin-bottom: 1rem; }
  .nav-link { padding: 10px 12px !important; border-radius: 6px; }
  .nav-search { width: 100%; margin-bottom: 8px; }
  .d-flex.align-items-center { flex-direction: column; align-items: stretch !important; gap: 8px; }
  .btn-mode { width: 100%; text-align: center; }
}

/* ════════════════════════════════
   SECTIONS 
   ════════════════════════════════ */
.section-titre {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 8px;
}

.section-sous-titre {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════
             HERO 
   ════════════════════════════════ */
.hero {
  padding: 5rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.hero-salut {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-nom {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--texte);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-titre {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-ligne {
  width: 60px;
  height: 2px;
  background: var(--or);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-boutons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-reseaux {
  display: flex;
  gap: 20px;
}

.hero-reseaux a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.hero-reseaux a:hover { color: var(--or); }

/* Photo cercle  */
.photo-cercle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--or);
  object-fit: cover;
  background: var(--ardoise2);
}

/* ════════════════════════════════
   BOUTONS 
   ════════════════════════════════ */
.btn-or {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--noir);
  background: var(--or);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-or:hover { background: var(--or-clair); color: var(--noir); }

.btn-contour {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--or);
  background: transparent;
  border: 1px solid var(--or);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-contour:hover { background: var(--or-bg); color: var(--or); }

/* ════════════════════════════════
   COMPÉTENCES 
   ════════════════════════════════ */
.competences {
  padding: 4rem 0;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.competences-liste {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 12px;
}

.badge-comp {
  padding: 8px 22px;
  background: var(--or-bg);
  color: var(--or);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.badge-comp:hover { background: rgba(201, 168, 76, 0.22); }

/* ════════════════════════════════
   PROJETS
   ════════════════════════════════ */
.projets {
  padding: 4rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.projet-carte {
  background: var(--ardoise2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  transition: border-color 0.2s, transform 0.2s;
}

.projet-carte:hover {
  border-color: var(--or) !important;
  transform: translateY(-4px);
}

.projet-image {
  width: 100%;
  height: 160px;
  background: var(--or-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-bottom: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
}

.projet-info { padding: 1.2rem; }

.projet-carte .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 8px;
  margin-top: 8px;
}

.projet-carte .card-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Tags  */
.projet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.badge-tag {
  padding: 3px 10px;
  background: var(--or-bg);
  color: var(--or);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.projet-liens {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.projet-liens .btn-or,
.projet-liens .btn-contour {
  padding: 7px 16px;
  font-size: 12px;
}

/* ════════════════════════════════
   FOOTER 
   ════════════════════════════════ */
.site-footer {
  padding: 2rem 0;
  background: var(--noir);
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.or { color: var(--or); }

/* ════════════════════════════════
   ANIMATION SCROLL 
   ════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 768px) {
  .hero-nom  { font-size: 36px; }
  .hero      { min-height: auto; padding: 3rem 0; }
  .photo-cercle { width: 200px; height: 200px; margin-top: 2rem; }
  .hero-boutons { flex-direction: column; }
  .section-titre { font-size: 24px; }
}

@media (max-width: 375px) {
  .hero-nom  { font-size: 26px; }
  .nav-search { display: none; }
}



/* ════════════════════════════════
   about.css — Page À Propos
   Thème Ardoise & Or 
   ════════════════════════════════ */

/* ── HERO À PROPOS ── */
.ap-hero {
  padding: 5rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.ap-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ap-nom {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--texte);
  line-height: 1.1;
  margin-bottom: 10px;
}

.ap-titre {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}

.ap-ligne {
  width: 60px;
  height: 2px;
  background: var(--or);
  margin-bottom: 24px;
}

.ap-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ── INFORMATIONS PERSONNELLES ── */
.infos {
  padding: 4rem 0;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.info-carte {
  background: var(--ardoise2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  transition: border-color 0.2s, transform 0.2s;
}

.info-carte:hover {
  border-color: var(--or) !important;
  transform: translateY(-3px);
}

.info-icone {
  font-size: 28px;
  margin-bottom: 12px;
}

.info-carte h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--or);
  margin-bottom: 10px;
}

.info-carte ul {
  list-style: none;
  padding: 0;
}

.info-carte ul li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
  padding-left: 14px;
  position: relative;
}

.info-carte ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
  font-size: 10px;
}

/* ── COMPÉTENCES AVEC BARRES ── */
.competences-barres {
  padding: 4rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.comp-item {
  margin-bottom: 1.5rem;
}

.comp-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comp-nom {
  font-size: 14px;
  font-weight: 500;
  color: var(--texte);
}

.comp-pct {
  font-size: 13px;
  font-weight: 500;
  color: var(--or);
}

.barre-fond {
  width: 100%;
  height: 6px;
  background: var(--ardoise2);
  border-radius: 999px;
  overflow: hidden;
}

.barre-rempli {
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  border-radius: 999px;
}

/* ── TIMELINE EXPÉRIENCES ── */
.experiences {
  padding: 4rem 0;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-point {
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--or);
  border: 2px solid var(--noir);
}

.timeline-contenu {
  background: var(--ardoise2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.2s;
}

.timeline-contenu:hover { border-color: var(--or); }

.timeline-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.timeline-contenu h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--texte);
  margin-bottom: 4px;
}

.timeline-contenu p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.timeline-desc {
  margin-top: 8px !important;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ap-nom { font-size: 34px; }
  .ap-hero { padding: 3rem 0; }
}




/* ════════════════════════════════
   VARIABLES — Thème Ardoise & Or
   
   ════════════════════════════════ */
:root {
  --noir:     #0F1923;
  --ardoise:  #1E2A3A;
  --ardoise2: #253447;
  --or:       #C9A84C;
  --or-clair: #E8C97A;
  --or-bg:    rgba(201, 168, 76, 0.12);
  --texte:    #EAE6DF;
  --muted:    #8FA3B8;
  --border:   rgba(201, 168, 76, 0.2);
}

/* Mode clair ( toggle JS) */
body.light-mode {
  --noir:    #F5F5F0;
  --ardoise: #FFFFFF;
  --ardoise2:#F0EFE8;
  --texte:   #1a1a1a;
  --muted:   #555555;
  --border:  rgba(201, 168, 76, 0.35);
}

/* ════════════════════════════════
   BASE
   ════════════════════════════════ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ardoise);
  color: var(--texte);
  margin-top: 64px;
  transition: background 0.3s, color 0.3s;
}

/* ════════════════════════════════
   NAVBAR 
   ════════════════════════════════ */
.navbar {
  background: var(--noir) !important;
  border-bottom: 1px solid var(--border);
  height: 64px;
  padding: 0;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--or) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted) !important;
  border-radius: 6px;
  padding: 7px 16px !important;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--or-bg) !important;
  color: var(--or) !important;
}

.navbar-toggler {
  border-color: var(--or) !important;
}

.navbar-toggler-icon {
  filter: invert(70%) sepia(50%) saturate(400%) hue-rotate(10deg);
}

.nav-search {
  padding: 7px 14px;
  background: var(--ardoise2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--texte);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  width: 170px;
  transition: border-color 0.2s;
}

.nav-search::placeholder { color: var(--muted); }
.nav-search:focus { border-color: var(--or); }

/* Bouton mode */
.btn-mode {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--or);
  background: var(--or-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-mode:hover { background: rgba(201, 168, 76, 0.22); }

/* ════════════════════════════════
   SECTIONS 
   ════════════════════════════════ */
.section-titre {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 8px;
}

.section-sous-titre {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════
   HERO 
   ════════════════════════════════ */
.hero {
  padding: 5rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.hero-salut {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-nom {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--texte);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-titre {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-ligne {
  width: 60px;
  height: 2px;
  background: var(--or);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-boutons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-reseaux {
  display: flex;
  gap: 20px;
}

.hero-reseaux a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.hero-reseaux a:hover { color: var(--or); }

/* Photo cercle */
.photo-cercle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--or);
  object-fit: cover;
  background: var(--ardoise2);
}

/* ════════════════════════════════
   BOUTONS
   ════════════════════════════════ */
.btn-or {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--noir);
  background: var(--or);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-or:hover { background: var(--or-clair); color: var(--noir); }

.btn-contour {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--or);
  background: transparent;
  border: 1px solid var(--or);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-contour:hover { background: var(--or-bg); color: var(--or); }

/* ════════════════════════════════
   COMPÉTENCES 
   ════════════════════════════════ */
.competences {
  padding: 4rem 0;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.competences-liste {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-comp {
  padding: 8px 22px;
  background: var(--or-bg);
  color: var(--or);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.badge-comp:hover { background: rgba(201, 168, 76, 0.22); }

/* ════════════════════════════════
   PROJETS 
   ════════════════════════════════ */
.projets {
  padding: 4rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.projet-carte {
  background: var(--ardoise2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  transition: border-color 0.2s, transform 0.2s;
}

.projet-carte:hover {
  border-color: var(--or) !important;
  transform: translateY(-4px);
}

.projet-image {
  width: 100%;
  height: 160px;
  background: var(--or-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-bottom: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
}

.projet-info { padding: 1.2rem; }

.projet-carte .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 8px;
  margin-top: 8px;
}

.projet-carte .card-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Tags */
.projet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.badge-tag {
  padding: 3px 10px;
  background: var(--or-bg);
  color: var(--or);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.projet-liens {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.projet-liens .btn-or,
.projet-liens .btn-contour {
  padding: 7px 16px;
  font-size: 12px;
}

/* ════════════════════════════════
   FOOTER 
   ════════════════════════════════ */
.site-footer {
  padding: 2rem 0;
  background: var(--noir);
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.or { color: var(--or); }

/* ════════════════════════════════
   ANIMATION SCROLL 
   ════════════════════════════════ */
.fade-in { 
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 768px) {
  .hero-nom  { font-size: 36px; }
  .hero      { min-height: auto; padding: 3rem 0; }
  .photo-cercle { width: 200px; height: 200px; margin-top: 2rem; }
  .hero-boutons { flex-direction: column; }
  .section-titre { font-size: 24px; }
}

@media (max-width: 375px) {
  .hero-nom  { font-size: 26px; }
  .nav-search { display: none; }
}

/* ════════════════════════════════
   PAGE PROJETS
   ════════════════════════════════ */

/* Hero projets */
.projets-hero {
  padding: 5rem 0 3rem;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.ap-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ap-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Filtres */
.filtres-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}

.filtre {
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.filtre:hover {
  border-color: var(--or);
  color: var(--or);
}

.filtre.active {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
  font-weight: 600;
}

/* Liste projets */
.projets-liste {
  padding: 3rem 0 4rem;
  background: var(--ardoise);
}

/* ════════════════════════════════
   PAGE À PROPOS
   ════════════════════════════════ */
.ap-hero {
  padding: 5rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.ap-nom {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--texte);
  line-height: 1.1;
  margin-bottom: 10px;
}

.ap-titre {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}

.ap-ligne {
  width: 60px;
  height: 2px;
  background: var(--or);
  margin-bottom: 24px;
}

/* Infos personnelles */
.infos {
  padding: 4rem 0;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.info-carte {
  background: var(--ardoise2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  transition: border-color 0.2s, transform 0.2s;
}

.info-carte:hover {
  border-color: var(--or) !important;
  transform: translateY(-3px);
}

.info-icone { font-size: 28px; margin-bottom: 12px; }

.info-carte h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--or);
  margin-bottom: 10px;
}

.info-carte ul { list-style: none; padding: 0; }

.info-carte ul li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
  padding-left: 14px;
  position: relative;
}

.info-carte ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
  font-size: 10px;
}

/* Barres compétences */
.competences-barres {
  padding: 4rem 0;
  background: var(--ardoise);
  border-bottom: 1px solid var(--border);
}

.comp-item { margin-bottom: 1.5rem; }

.comp-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comp-nom { font-size: 14px; font-weight: 500; color: var(--texte); }
.comp-pct { font-size: 13px; font-weight: 500; color: var(--or); }

.barre-fond {
  width: 100%;
  height: 6px;
  background: var(--ardoise2);
  border-radius: 999px;
  overflow: hidden;
}

.barre-rempli {
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  border-radius: 999px;
}

/* Timeline */
.experiences {
  padding: 4rem 0;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-point {
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--or);
  border: 2px solid var(--noir);
}

.timeline-contenu {
  background: var(--ardoise2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.2s;
}

.timeline-contenu:hover { border-color: var(--or); }

.timeline-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--or);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.timeline-contenu h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--texte);
  margin-bottom: 4px;
}

.timeline-contenu p { font-size: 13px; color: var(--muted); margin: 0; }
.timeline-desc { margin-top: 8px !important; line-height: 1.6; }

@media (max-width: 768px) {
  .ap-nom { font-size: 34px; }
  .ap-hero { padding: 3rem 0; }
  .projets-hero { padding: 3rem 0 2rem; }
}