@charset "UTF-8";
@import url(main.css);
div.shadow-lg { box-shadow: none !important; }

h2 { color: #111111; }

h2 { display: inline-block; /* n’impacte pas ton layout */ }

h2 span { display: inline; position: relative; }

h2 span::after { content: ""; display: block; width: 60px; height: 3px; background: #304a6c; margin-top: 10px; border-radius: 2px; }

/* centrage visuel uniquement du trait */
h2 { text-align: initial; /* on ne touche plus au CMS */ }

/*--------------------------------------------------------- HERO HOME - BACKGROUND IMAGE IN HTML ---------------------------------------------------------*/
.bloc-7f3a { min-height: 100vh; padding: 0 20px; position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: center; will-change: transform; }

/* image de fond via HTML */
.bloc-7f3a__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }

/* overlay pour lisibilité */
.bloc-7f3a__overlay { position: absolute; inset: 0; background: rgba(49, 66, 74, 0.55); z-index: 1; }

/* contenu au-dessus */
.bloc-7f3a__container { max-width: calc(100% - 180px); margin: 0 auto; width: 100%; padding: 100px 0; display: flex; align-items: center; position: relative; z-index: 2; }

.bloc-7f3a__content { max-width: 900px; }

.bloc-7f3a__logo { margin-bottom: 25px; display: flex; align-items: center; }

.bloc-7f3a__logo img { width: 210px; height: auto; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25)); }

.bloc-7f3a__content h1 { margin: 0 0 20px 0; line-height: 1.1; color: #f8f8f8; }

.bloc-7f3a__content p { margin: 0 0 0 0; line-height: 1.6; opacity: 0.9; }

/* CTA */
.bloc-7f3a__cta { display: flex; gap: 15px; flex-wrap: wrap; color: #f8f8f8; margin-top: 30px; }

.bloc-7f3a__btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; text-decoration: none; border-radius: 50rem; transition: all 0.25s ease; }

/* bouton principal */
.bloc-7f3a__btn--primary { background: #304A6C; color: #ffffff; border: 1px solid #304A6C; }

.bloc-7f3a__btn--primary:hover { background: #fff; border-color: #304A6C; color: #304A6C; }

/* bouton secondaire */
.bloc-7f3a__btn--secondary { background: transparent; border: 1px solid #ffffff; color: #ffffff; }

.bloc-7f3a__btn--secondary:hover { background: #fff; color: #304A6C; border-color: #fff; }

/* responsive */
@media (max-width: 768px) { .bloc-7f3a { padding: 70px 20px; } .bloc-7f3a__container { max-width: calc(100% - 40px); } .bloc-7f3a__logo img { width: 150px; } }

/*--------------------------------------------------------- SERVICES ---------------------------------------------------------*/
.bloc-a7f3-services { padding: 40px 20px; }

.bloc-a7f3-container { max-width: 1600px; margin: 0 auto; }

.bloc-a7f3-header { text-align: center; max-width: 900px; margin: 0 auto 50px; }

.bloc-a7f3-header > * { margin: 0; line-height: 1.2; }

.bloc-a7f3-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; }

.bloc-a7f3-card { position: relative; min-height: 460px; display: flex; align-items: flex-end; border-radius: 18px; overflow: hidden; text-decoration: none; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: transform 0.25s ease, box-shadow 0.25s ease; will-change: transform; }

.bloc-a7f3-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12); }

.bloc-a7f3-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; transform: scale(1); }

.bloc-a7f3-card:hover img { transform: scale(1.02); }

.bloc-a7f3-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.25); /* léger par défaut */ transition: background 0.25s ease; z-index: 1; }

.bloc-a7f3-card:hover .bloc-a7f3-overlay { background: rgba(0, 0, 0, 0.6); /* plus sombre au hover */ }

.bloc-a7f3-content { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 30px; width: 100%; }

.bloc-a7f3-title { display: flex; align-items: center; justify-content: flex-start; gap: 16px; }

.bloc-a7f3-title > *:not(.bloc-a7f3-arrow) { margin: 0; font-size: 24px; line-height: 1.3; color: #f8f8f8; }

.bloc-a7f3-arrow { width: 42px; height: 42px; min-width: 42px; min-height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(48, 74, 108, 0.55); border-radius: 50%; background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(6px); box-sizing: border-box; }

.bloc-a7f3-arrow svg { width: 20px; height: 20px; stroke: #304a6c; }

.bloc-a7f3-card:hover .bloc-a7f3-arrow { transform: translateX(3px) rotate(45deg); background: #304a6c; }

.bloc-a7f3-card:hover .bloc-a7f3-arrow svg { stroke: #fff; }

.bloc-a7f3-description > * { margin-top: 12px; font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); opacity: 0; transform: translateY(8px); transition: all 0.25s ease; }

.bloc-a7f3-card:hover .bloc-a7f3-description > * { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) { .bloc-a7f3-grid { grid-template-columns: repeat(2, 1fr); } .bloc-a7f3-card { min-height: 420px; } }

@media (max-width: 768px) { .bloc-a7f3-services { padding: 20px 15px; } .bloc-a7f3-header { margin-bottom: 35px; } .bloc-a7f3-grid { grid-template-columns: 1fr; gap: 20px; } .bloc-a7f3-card { min-height: 360px; border-radius: 16px; } .bloc-a7f3-content { padding: 24px; } .bloc-a7f3-description > * { opacity: 1; transform: none; line-height: 1.6; } .bloc-a7f3-card:hover img { transform: none; } }

@media (max-width: 480px) { .bloc-a7f3-services { padding: 15px 20px; } .bloc-a7f3-card { min-height: 320px; } .bloc-a7f3-content { padding: 20px; } .bloc-a7f3-title { gap: 12px; } .bloc-a7f3-arrow { width: 38px; height: 38px; } .bloc-a7f3-arrow svg { width: 18px; height: 18px; } }

/*---------------------------------------------------------BLOC PICTOCARD----------------------------------------------------------------*/
.picto_card { padding: 30px 30px; margin: 10px auto; }

.picto_card .row { margin-top: 0 !important; margin-bottom: 0 !important; }

.picto_card .svg-picto-card { max-width: 500px; margin: 0 auto; }

.picto_card .svg-picto-card .text-shadow { max-width: 350px; margin-left: auto; margin-right: auto; }

/* Inverser image / texte uniquement pour le bloc #reverse */
@media (min-width: 992px) { #reverse .row.flex-lg-row-reverse { flex-direction: row !important; } }

.row.mt-5.flex-lg-row, .row.mt-5.flex-lg-row-reverse { margin-top: 1rem !important; }

/*---------------------------------------------------------Avant - Après------------------------------*/
/*------Couleur des lignes---*/
.slider-before-after-images:before, .slider-before-after-images:after { background: #304a6c !important; }

/*------Couleur du rond---*/
.slider-before-after-images { border: 3px solid #304a6c !important; background: #304a6c !important; }

/*------Couleur des flêches---*/
.bi-chevron-left::before, .bi-chevron-right::before { color: white; }

/*---------------------------------------------------------titre h1 page contact------------------------------*/
.bloc-contact-breizh { padding: 70px 20px 0px 20px; }

.bloc-contact-breizh__container { max-width: 1200px; margin: 0 auto; text-align: center; }

.bloc-contact-breizh h1 { margin: 0; }

/*---------------------------------------------------------CTA HERO------------------------------*/
/* cible uniquement le content à l’intérieur du hero CTA banner */
div.cta_banner > div.content { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 20px; text-align: center; }

/*---------------------------------------------------------FOOTER------------------------------*/
footer > div.row.justify-content-center.justify-content-lg-around.text-center.text-lg-start > div:nth-child(3) > div:nth-child(2) { display: none !important; }

/*# sourceMappingURL=custom.css.map */