/*
 Theme Name: Specia Child
 Template: specia
 Description: Thème enfant pour Specia
 Version: 1.0
*/

/* Vos styles personnalisés ici */

/* --- Structure générale --- */
.mnri-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
}

/* --- Intro enfants --- */
.mnri-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.mnri-intro-img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
  border-radius: 14px;
}

/* --- Bulles --- */
.mnri-bubble-block {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.mnri-bubble {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* Couleurs des bulles */
.bubble-blue { background:#4DA3FF; color:#fff; }
.bubble-purple { background:#B47CFF; color:#fff; }
.bubble-orange { background:#FFA34D; color:#fff; }
.bubble-yellow { background:#FFDE59; }

/* --- Titre adultes --- */
.mnri-title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 28px;
}

/* --- Section adultes --- */
.mnri-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* --- Pourquoi consulter --- */
.mnri-why {
  margin-top: 60px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.mnri-why h3 {
  margin-bottom: 15px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .mnri-two-col {
    grid-template-columns: 1fr;
  }
}

