/* grosbisous — pages « messages de bisou » (autonome, thème rose) 💋 */
* { box-sizing: border-box; }
body {
  margin: 0; color: #7a1f57; font-family: "Quicksand", system-ui, sans-serif; font-weight: 600;
  background: linear-gradient(160deg, #ffe1f2 0%, #ffd0ec 45%, #f3d6ff 100%);
  background-attachment: fixed; min-height: 100vh; line-height: 1.55;
}
a { color: #ff2e88; text-decoration: none; }
a:hover { text-decoration: underline; }

.mtop {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; max-width: 760px; margin: 0 auto;
}
.mbrand { font-family: "Pacifico", cursive; font-size: 1.5rem; color: #d63384; }
.mbrand:hover { text-decoration: none; filter: brightness(1.08); }
.mlang {
  border: 2px solid #ff7eb9; background: #fff; color: #ff2e88; font: inherit; font-weight: 700;
  border-radius: 999px; padding: 5px 14px; cursor: pointer;
}
.mlang:hover { background: #fff0f7; }

.mwrap { max-width: 760px; margin: 0 auto; padding: 6px 18px 24px; }
.mtitle { font-family: "Pacifico", cursive; font-weight: 400; color: #d63384; font-size: clamp(1.8rem, 6vw, 2.6rem); text-align: center; margin: 8px 0 10px; }
.mintro { text-align: center; font-size: 1.05rem; margin: 0 auto 22px; max-width: 620px; }
.mintro b { color: #c81e6f; }

.mlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.msg {
  background: #fff; border-radius: 18px; padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(214, 51, 132, .16); border: 2px solid rgba(255, 126, 185, .35);
}
.msg-txt { margin: 0 0 12px; font-size: 1.15rem; color: #5a2a52; font-weight: 700; }
.msg-act { display: flex; flex-wrap: wrap; gap: 10px; }
.msg-copy, .msg-send {
  font: inherit; font-weight: 700; border-radius: 999px; padding: 8px 16px; cursor: pointer; border: 0;
  transition: transform .1s ease, filter .15s ease;
}
.msg-copy { background: #fff0f7; color: #ff2e88; border: 2px solid #ff7eb9; }
.msg-send { background: linear-gradient(135deg, #ff2e88, #b15dff); color: #fff; box-shadow: 0 6px 16px rgba(214, 51, 132, .3); }
.msg-send:hover, .msg-copy:hover { text-decoration: none; filter: brightness(1.05); transform: translateY(-1px); }
.msg-copy:active, .msg-send:active { transform: translateY(1px); }

/* hub : grille de catégories */
.mcats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 8px 0 0; }
.mcat {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  background: #fff; border-radius: 18px; padding: 18px 12px; color: #7a1f57; font-weight: 700;
  box-shadow: 0 8px 20px rgba(214, 51, 132, .14); border: 2px solid rgba(255, 126, 185, .35);
  transition: transform .12s ease, box-shadow .15s ease;
}
.mcat:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(214, 51, 132, .24); }
.mcat__e { font-size: 2.2rem; line-height: 1; }

.mother { margin: 26px 0 0; text-align: center; }
.mother p { font-weight: 700; color: #a3175a; margin: 0 0 8px; }
.mother a { display: inline-block; background: rgba(255, 255, 255, .7); border-radius: 999px; padding: 6px 14px; margin: 4px; font-weight: 700; }

.mfoot { max-width: 760px; margin: 8px auto 0; padding: 8px 18px 40px; text-align: center; }
.mcta {
  display: inline-block; background: linear-gradient(135deg, #ffb300, #ff7eb9); color: #fff; font-weight: 800;
  border-radius: 999px; padding: 12px 24px; margin: 6px 0 16px; box-shadow: 0 8px 20px rgba(255, 179, 0, .35);
}
.mcta:hover { text-decoration: none; filter: brightness(1.05); }
.mfoot__note { font-size: .85rem; color: rgba(122, 31, 87, .7); margin: 14px 0 0; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
