/* =========================================================
   PAGE À PROPOS - GOAL AFRICA
   Fichier à ajouter après styles.css dans a-propos.html
   Les chemins images sont préparés pour l'étape 3.
========================================================= */

.menu > li > a.active,
.menu > li > a.active:hover{
  color:var(--green);
}

.menu > li > a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:4px;
  background:var(--green);
  border-radius:20px 20px 0 0;
}

.about-page{
  background:
    radial-gradient(circle at 80% 18%, rgba(47,197,48,.16), transparent 34%),
    radial-gradient(circle at 12% 48%, rgba(255,211,26,.08), transparent 28%),
    #050706;
}

/* HERO */
.about-hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#040605;
}

.about-hero-bg{
  position:absolute;
  inset:0;
  /* 🖼️ IMAGE 1 : assets/images/about/about-hero-bg.jpg */
  background:
    linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.38) 55%, rgba(0,0,0,.82)),
    url('assetsapropos/about-hero-bg.jpg')center/cover no-repeat;
  opacity:.9;
}

.about-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 64% 42%, rgba(47,197,48,.34), transparent 31%),
    linear-gradient(0deg, rgba(5,7,6,.98), transparent 34%);
}

.about-players{
  position:absolute;
  right:2%;
  bottom:0;
  width:min(58vw, 850px);
  max-height:92%;
  object-fit:contain;
  object-position:right bottom;
  filter:drop-shadow(0 0 28px rgba(47,197,48,.32));
  z-index:1;
}

.about-hero-content{
  position:relative;
  z-index:2;
  min-height:520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:56px 0 70px;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:26px;
  text-transform:uppercase;
  font-size:14px;
  font-weight:900;
  letter-spacing:.3px;
}

.breadcrumb a{color:#fff}.breadcrumb span{color:#d7ddd8}.breadcrumb strong{color:var(--green)}

.about-hero h1{
  margin:0;
  max-width:650px;
  font-size:clamp(56px, 7vw, 104px);
  line-height:.88;
  text-transform:uppercase;
  font-weight:1000;
  letter-spacing:-2px;
  text-shadow:0 12px 35px rgba(0,0,0,.75);
}

.about-hero h1 span{
  color:var(--green);
  font-style:italic;
}

.about-tagline{
  margin:18px 0 20px;
  font-size:clamp(24px, 3vw, 40px);
  font-weight:900;
}

.about-tagline mark{
  background:transparent;
  color:var(--yellow);
}

.about-intro{
  max-width:620px;
  margin:0;
  padding-left:22px;
  border-left:5px solid var(--yellow);
  color:#f5f7f5;
  font-size:19px;
  line-height:1.55;
}

/* SECTIONS */
.about-section{padding:34px 0 0}

.about-grid-main{
  display:grid;
  grid-template-columns:410px 1fr;
  gap:24px;
  align-items:stretch;
}

.about-side-cards{
  display:grid;
  gap:18px;
}

.about-card{
  border:1px solid rgba(255,255,255,.13);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow:0 20px 50px rgba(0,0,0,.22);
}

.about-card-horizontal{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:18px;
  align-items:center;
  min-height:176px;
  padding:26px;
}

.about-card h2,
.about-content-card h2,
.about-text-panel h2,
.about-cta h2{
  margin:0 0 12px;
  text-transform:uppercase;
  font-size:26px;
  line-height:1.1;
  font-weight:1000;
}

.about-card p,
.about-feature p,
.about-text-panel p,
.about-cta p{
  margin:0;
  color:#edf2ee;
  line-height:1.58;
}

.about-icon{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:40px;
  box-shadow:0 14px 35px rgba(0,0,0,.28);
}

.about-icon.green{background:linear-gradient(180deg, #39d63d, #148e17)}
.about-icon.yellow{background:linear-gradient(180deg, #ffdf29, #ffb300); color:#050706}

.about-content-card{
  padding:26px 24px;
}

.about-title-line{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.about-title-line span{
  width:48px;
  height:3px;
  background:var(--green);
  border-radius:30px;
  box-shadow:0 0 18px rgba(47,197,48,.6);
}

.about-title-line h2{margin:0}

.about-features-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.about-feature{
  min-height:230px;
  padding:24px 18px 22px;
  text-align:center;
  border:1px solid rgba(255,255,255,.11);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(47,197,48,.035));
  transition:.22s ease;
}

.about-feature:hover{
  transform:translateY(-5px);
  border-color:rgba(47,197,48,.6);
  box-shadow:0 20px 45px rgba(47,197,48,.12);
}

.feature-icon{
  min-height:62px;
  color:var(--green);
  font-size:46px;
  line-height:1;
  display:grid;
  place-items:center;
  margin-bottom:16px;
}

.about-feature h3{
  margin:0 0 12px;
  text-transform:uppercase;
  font-size:20px;
  font-weight:1000;
}

.about-feature::after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  background:var(--green);
  margin:18px auto 0;
  border-radius:99px;
}

/* IDENTITY */
.about-identity{padding-bottom:30px}

.about-identity-grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:26px;
  align-items:center;
  border:1px solid rgba(47,197,48,.38);
  border-radius:12px;
  overflow:hidden;
  background:linear-gradient(90deg, rgba(47,197,48,.16), rgba(255,255,255,.025));
}

.about-image-panel{
  min-height:230px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle, rgba(47,197,48,.36), transparent 62%),
    rgba(0,0,0,.24);
}

.about-image-panel img{
  width:230px;
  height:230px;
  object-fit:contain;
  filter:drop-shadow(0 18px 35px rgba(0,0,0,.45));
}

.about-text-panel{
  padding:34px 42px 34px 0;
}

.about-text-panel small{
  display:block;
  margin-bottom:8px;
  color:var(--green);
  text-transform:uppercase;
  font-weight:1000;
  letter-spacing:.4px;
}

.about-text-panel h2{
  max-width:760px;
  font-size:34px;
}

.about-text-panel p + p{margin-top:12px}

/* CTA */
.about-cta{padding:0 0 38px}

.about-cta-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  padding:26px 34px;
  border:1px solid rgba(47,197,48,.42);
  border-radius:10px;
  background:
    linear-gradient(90deg, rgba(5,7,6,.92), rgba(47,197,48,.22)),
    radial-gradient(circle at 6% 40%, rgba(255,211,26,.16), transparent 26%);
}

.about-cta h2{margin-bottom:8px}
.about-cta .btn{min-width:190px}

@media(max-width:1180px){
  .about-players{opacity:.52; width:72vw}
  .about-grid-main{grid-template-columns:1fr}
  .about-side-cards{grid-template-columns:1fr 1fr}
  .about-features-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:820px){
  .menu > li > a.active::after{display:none}
  .about-hero,.about-hero-content{min-height:470px}
  .about-players{right:-22%; width:95vw; opacity:.34}
  .about-intro{font-size:16px; max-width:100%}
  .about-side-cards{grid-template-columns:1fr}
  .about-card-horizontal{grid-template-columns:72px 1fr; padding:22px}
  .about-icon{width:64px;height:64px;font-size:32px}
  .about-features-grid{grid-template-columns:1fr 1fr}
  .about-identity-grid{grid-template-columns:1fr}
  .about-text-panel{padding:0 24px 28px}
  .about-cta-box{grid-template-columns:1fr}
}

@media(max-width:520px){
  .about-hero-content{padding:38px 0 50px}
  .breadcrumb{font-size:12px}
  .about-hero h1{letter-spacing:-1px}
  .about-tagline{font-size:24px}
  .about-features-grid{grid-template-columns:1fr}
  .about-feature{min-height:auto}
  .about-card-horizontal{grid-template-columns:1fr; text-align:left}
  .about-text-panel h2,.about-card h2,.about-content-card h2,.about-cta h2{font-size:24px}
  .about-cta-box{padding:24px 20px}
}

/* icon personnalisée */
.about-icon-image{
    flex-shrink:0;
    width:110px;
    height:110px;
}

.about-icon-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter: drop-shadow(0 0 20px rgba(47,197,48,.35));
}

.feature-icon-img{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon-img img{
    width:100%;
    height:100%;
    object-fit:contain;

    filter:
        drop-shadow(0 0 8px rgba(47,197,48,.35))
        drop-shadow(0 0 20px rgba(47,197,48,.25));

    transition:.3s ease;
}

.about-feature:hover .feature-icon-img img{
    transform:scale(1.08);
    filter:
        drop-shadow(0 0 12px rgba(47,197,48,.55))
        drop-shadow(0 0 30px rgba(47,197,48,.45));
}