/* ==================================================
   SECTIONS – Tunisie Menu Factory
   (grilles, sections, cartes, photos)
   ================================================== */

/* Sections génériques */
.tmf-section{
  margin: 42px 0;
}

.tmf-wrap{
  max-width: 1180px;
  margin: 0 auto;
}

/* Titres sections */
.tmf-h2{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 900;
}

.tmf-sub{
  margin: 0 0 26px;
  color: rgba(15,23,42,.65);
  font-weight: 600;
}

/* Grilles */
.tmf-grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.tmf-grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.tmf-grid-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}

/* Cartes */
.tmf-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(15,23,42,.08);
}

/* Photos */
.tmf-photo{
  border-radius: 18px;
  overflow: hidden;
  background: #f1f3f5;
}

.tmf-photo img{
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 900px){
  .tmf-grid-2,
  .tmf-grid-3,
  .tmf-grid-4{
    grid-template-columns: 1fr;
  }
}
