/* a-propos.css */

/* ── Hero ── */
.about-hero {
  background: var(--off-white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,184,200,0.15) 0%, transparent 70%);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-hero-text h1 { margin-bottom: 1.5rem; }
.about-hero-text p { font-size: 1.1rem; line-height: 1.8; }

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  text-align: center;
  color: var(--pink-mid);
}
.photo-placeholder span { font-size: 4rem; display: block; margin-bottom: 0.5rem; }
.photo-placeholder p { font-size: 0.85rem; font-weight: 500; }

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-hero-photo {
  position: relative;
}

.photo-decoration {
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 3px solid var(--pink);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

/* ── Story ── */
.about-story { background: var(--white); }

.story-block h2 { margin: 1rem 0 2rem; }

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.story-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-dark);
}

/* ── Timeline ── */
.about-timeline { background: var(--off-white); }

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink-mid), var(--pink-light));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 3rem 3rem;
}

.timeline-dot {
  position: absolute;
  left: -7px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink-mid);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--pink-light);
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 0.6rem;
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.timeline-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-mid);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── Values ── */
.about-values { background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.value-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.8rem; }
.value-card p { font-size: 0.88rem; }

/* ── Skills ── */
.about-skills { background: var(--off-white); }

.skills-list { display: flex; flex-direction: column; gap: 1.5rem; }

.skill-item {}
.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.skill-bar {
  height: 8px;
  background: var(--pink-light);
  border-radius: 50px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  border-radius: 50px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tool-tag {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.tool-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* CTA import (copié de index.css) */
.cta-section { padding: 60px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 3rem 2rem; }
}
