/* br.css - Royale Bouffe (À propos section avec fond ivoirien) */

.apropos{
  padding:3rem 1rem;
  background:linear-gradient(180deg,#fff,var(--bg)), url('./assets/motif-ivoirien.png');
  background-size:200px auto;
  background-repeat:repeat;
  background-position:center;
  position:relative;
  z-index:1;
}
.apropos::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.9);
  z-index:-1;
}
.container-apropos{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  align-items:center;
}
.texte-apropos .titre{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
  position:relative;
  color:var(--primary);
}
.texte-apropos .titre span{
  color:var(--accent);
}
.texte-apropos p{
  font-size:1rem;
  line-height:1.6;
  margin-bottom:1rem;
  color:#444;
}
.texte-apropos strong{color:#000;font-weight:700}
.image-apropos{
  width:100%;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
  transition:transform .35s ease;
}
.image-apropos:hover{transform:scale(1.03)}

/* Responsive two-column layout */
@media(min-width:768px){
  .container-apropos{grid-template-columns:1fr 1fr}
  .texte-apropos{padding-right:1.5rem}
}

/* Decorative underline for the title */
.texte-apropos .titre::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:60px;
  height:4px;
  background:var(--primary);
  border-radius:4px;
}

/* Contact details style */
.texte-apropos p:last-child{
  background:rgba(198,40,40,0.04);
  padding:.8rem 1rem;
  border-left:4px solid var(--primary);
  border-radius:8px;
  font-size:.95rem;
  color:#222;
}
