/* ============================================================
   CORFLY — À propos · a-propos.css
   ============================================================ */

:root {
  --blue-dark:  #0d1b2a;
  --gold:       #b07e2f;
  --gold-light: #c99a4a;
  --cream:      #f2efea;
  --cream-mid:  #faf9f7;
  --white:      #ffffff;
  --text-dark:  #111111;
  --text-mid:   #444444;
  --text-muted: #777777;
  --border:     #e8e4de;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'League Spartan', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; }

/* ----------------------------------------------------------
   1. HISTOIRE DE LA MARQUE
---------------------------------------------------------- */
.ap-histoire {
  background: var(--blue-dark);
  padding: 120px 40px;
  text-align: center;
}

.ap-histoire-inner {
  max-width: 860px;
  margin: 0 auto;
}

.ap-histoire-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.ap-histoire-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   2. JE SUIS MÉLANIE
---------------------------------------------------------- */
.ap-melanie {
  background: var(--cream);
  padding: 100px 40px;
}

.ap-melanie-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ap-melanie-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.ap-melanie-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.62);
  pointer-events: none;
}

.ap-melanie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ap-melanie-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.ap-melanie-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.ap-melanie-text p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   3. NOS VALEURS
---------------------------------------------------------- */
.ap-valeurs {
  background: var(--blue-dark);
  padding: 100px 40px;
  position: relative;
}

.ap-valeurs::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
}

.ap-valeurs .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ap-valeurs-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 64px;
  letter-spacing: -0.5px;
}

.ap-valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.ap-valeur-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ap-valeur-item h4 {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

.ap-valeur-item p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  text-align: center;
}

.ap-valeur-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

/* ----------------------------------------------------------
   4. NOTRE MISSION
---------------------------------------------------------- */
.ap-mission {
  background: var(--cream);
  padding: 150px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.ap-mission-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ap-mission-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.ap-mission-text {
  font-size: 1.5rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   CTA FINAL
---------------------------------------------------------- */
.apropos-cta {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 80px 40px;
  text-align: center;
}

.apropos-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.apropos-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}

.apropos-btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.apropos-btn-primary:hover { background: var(--gold-light); }

.apropos-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.apropos-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.corfly-footer {
  background: var(--blue-dark);
  text-align: center;
  padding: 28px 40px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.5px;
  border-top: 3px solid var(--gold);
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .ap-melanie-inner { grid-template-columns: 320px 1fr; gap: 48px; }
  .ap-valeurs-grid  { gap: 32px; }
}

@media (max-width: 768px) {
  .ap-histoire  { padding: 80px 24px; }
  .ap-melanie   { padding: 72px 24px; }
  .ap-valeurs   { padding: 72px 24px; }
  .ap-mission   { padding: 72px 24px; }

  .ap-melanie-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ap-melanie-photo {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .ap-valeurs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ap-valeur-item p { text-align: left; }
}
