/* ---------------------------------------------------------
	PAGE HYPNOSE — MOIZARD CONSEIL
--------------------------------------------------------- */

/* ---------- PALETTE DE COULEURS ---------- */
:root {
	--mc-blue: #1c53a5;           /* Bleu officiel */
	--mc-orange: #f19321;         /* Orange officiel */
	--mc-orange-light: #fbcf8a;   /* Orange clair harmonisé */
	--mc-beige: #f8f6f2;          /* Beige très doux */
	--mc-sage: #eef4f2;           /* Sauge très douce */
	--mc-grey: #f3f4f6;           /* Gris très léger */
	--text-default: #333333;
	--border-light: rgba(0,0,0,0.08);	
}

/* ---------- BLOCS ROW ---------- */
.coaching-block {
    background-color: #fff;
    padding: 40px 20px;
	margin:0 5px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.coaching-block-pleine-hauteur {
    background-color: #fff;
    padding: 40px 20px;
	margin:0 24px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

/* ---------------------------------------------------------
	CADRE SITUATIONS
--------------------------------------------------------- */

.tools-flex {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.coaching-panel {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.tools-flex .coaching-panel:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .tools-flex { grid-template-columns: 1fr; }
	
    .coaching-panel {
        margin-bottom: 20px;
	}
}

.tool-intro {
    font-size: 16px;
    color: var(--mc-orange);
    margin: 6px 0 10px 0;
	text-align: center;
	font-weight: 600;
}

.tool-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-default);
    margin-top: 10px;
}

.coaching-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--mc-blue);
	margin-top: 8px;
}

.coaching-title i {
    margin-right: 10px;
    color: var(--mc-orange);
    font-size: 18px;
}

/* ---------------------------------------------------------
	CADRE GRIS
--------------------------------------------------------- */
.section-gris {
    background: #f7f7f7;
    padding: 20px 20px;
}

.section-gris h2 {
    color: #1a3689; /* bleu foncé comme tes autres titres */
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.section-gris h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    background: #1a3689; /* trait bleu foncé */
    margin: 10px auto 0 auto;
}

/* ---------------------------------------------------------
	CADRE BLEU
--------------------------------------------------------- */
.cadrebleu {
    background-color: #1255a3;
    color: #ffffff;
    padding: 20px 20px;
}

.cadrebleu h2 {
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.cadrebleu h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    background: #ffffff;
    margin: 10px auto 0 auto;
}

.cadrebleu img {
    border: 2px solid #ffffff;
    border-radius: 4px;
    background: transparent;
	margin-top: 20px;
}

.cadrebleu-texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Desktop : alignement vertical OK */
@media (min-width: 768px) {
    .cadrebleu .row,
    .section-gris .row {
        display: flex;
        align-items: center;
	}
}

/* Mobile : retour au comportement Bootstrap normal */
@media (max-width: 767px) {
    .cadrebleu .row,
    .section-gris .row {
        display: block;
	}
}

/* Espacements généraux */
.presentation section {
    margin-bottom: 30px;
}