/* ==========================================================================
   ORDECO - Design 2026
   Feuille de style du nouveau design (chargée après style.css, qu'elle surcharge)
   Gabarits : index.dwt / page.dwt (+ header.inc.dwt / footer.inc.dwt)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Roboto:wght@300;400;500;700&display=swap');

/* --------------------------------------------------------------------------
   1. VARIABLES / BASE
   -------------------------------------------------------------------------- */
:root {
    --teal:       #399a9b;
    --green:      #21965f;
    --green2:     #42a075;
    --dark:       #33444c;
    --dark2:      #465960;
    --text:       #343f43;
    --text-grey:  #4c5a61;
    --red:        #e9504a;
    --orange:     #f5a623;
    --footer-bg:  #f7f7f9;
    --line-grey:  #d8dee0;
}

body {
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    color: #343f43;
}

body a {
    color: #399a9b;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: 'Overpass', sans-serif;
    color: #33444c;
}

/* Suppression des barres décoratives héritées sous les h2 */
body h2:before,
body h2:after,
body h2.underline:before,
body h2.underline:after {
    content: none;
}

body h2 {
    margin-bottom: 25px;
}

/* --------------------------------------------------------------------------
   2. CHEVRONS SVG (fleche-menu.svg / fleche-bouton.svg via masque)
   -------------------------------------------------------------------------- */
.chevron-right,
.chevron-down {
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.chevron-right {
    width: 7px;
    height: 16px;
    -webkit-mask-image: url('../images/ordeco2026/fleche-bouton.svg');
    mask-image: url('../images/ordeco2026/fleche-bouton.svg');
}

.chevron-down {
    width: 14px;
    height: 7px;
    -webkit-mask-image: url('../images/ordeco2026/fleche-menu.svg');
    mask-image: url('../images/ordeco2026/fleche-menu.svg');
}

/* --------------------------------------------------------------------------
   3. BOUTONS "PILULE" DU DESIGN 2026
   -------------------------------------------------------------------------- */
body .btn2 {
    display: inline-block;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #33444c;
    border-radius: 30px;
    padding: 13px 26px 11px;
    color: #33444c;
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

body .btn2:hover,
body .btn2:focus {
    text-decoration: none;
}

body .btn2:after {
    content: "";
    display: inline-block;
    vertical-align: -2px;
    width: 7px;
    height: 14px;
    margin-left: 14px;
    background-color: currentColor;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

/* pilule sur fond clair, bord sarcelle (LIRE LA SUITE, PLUS D'INFOS...) */
body .btn2-teal {
    border-color: #399a9b;
    color: #33444c;
}

body .btn2-teal:hover {
    background-color: #399a9b;
    color: #fff;
}

/* pilule blanche sur fond coloré */
body .btn2-white {
    border-color: #fff;
    color: #fff;
}

body .btn2-white:hover {
    background-color: #fff;
    color: #33444c;
}

/* pilule sombre (ADHÉRER) avec picto comète */
body .btn2-adherer {
    border-color: #33444c;
    color: #33444c;
    padding-left: 52px;
    background: url('../images/ordeco2026/picto-comete.svg') no-repeat 22px center;
    background-size: 22px auto;
}

body .btn2-adherer:after {
    content: none;
}

body .btn2-adherer:hover {
    border-color: #399a9b;
    color: #399a9b;
}

/* Anciennes classes de liens (contenus CMS) alignées sur le design 2026 */
body .link-blue,
body .link-cyan,
body .link-green {
    display: inline-block;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #399a9b;
    border-radius: 30px;
    padding: 13px 26px 11px;
    color: #33444c;
    transition: all 0.3s;
}

body .link-blue:after,
body .link-cyan:after,
body .link-green:after {
    content: "";
    display: inline-block;
    vertical-align: -2px;
    width: 7px;
    height: 14px;
    margin-left: 14px;
    border: none;
    padding: 0;
    position: static;
    background-color: currentColor;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

body .link-blue:hover,
body .link-cyan:hover,
body .link-green:hover {
    background-color: #399a9b;
    border-color: #399a9b;
    color: #fff;
    text-decoration: none;
}

body .link-blue:hover:after,
body .link-cyan:hover:after,
body .link-green:hover:after {
    background-color: #fff;
}

body .link-white {
    display: inline-block;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 13px 26px 11px;
    color: #fff;
    transition: all 0.3s;
}

body .link-white:after {
    content: "";
    display: inline-block;
    vertical-align: -2px;
    width: 7px;
    height: 14px;
    margin-left: 14px;
    background-color: currentColor;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

body .link-white:hover {
    background-color: #fff;
    color: #33444c;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   4. HEADER - barre blanche (logo / recherche / adhérer)
   -------------------------------------------------------------------------- */
body header .topbar {
    background-color: #fff;
    padding: 22px 0;
}

body header .topbar-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

body header .topbar-logo img {
    width: 175px;
    height: auto;
    display: block;
}

body header .topbar-search {
    flex: 1;
    display: flex;
    justify-content: center;
}

body header .topbar-search form {
    position: relative;
    width: 100%;
    max-width: 540px;
}

body header .topbar-search input {
    width: 100%;
    border: 1px solid #d3dadd;
    border-radius: 30px;
    background: #fff;
    padding: 13px 60px 13px 28px;
    font-family: 'Overpass', sans-serif;
    font-style: italic;
    font-size: 15px;
    color: #33444c;
    outline: none;
}

body header .topbar-search input::placeholder {
    color: #a3aeb3;
    font-style: italic;
}

body header .topbar-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: url('../images/ordeco2026/picto-loupe.svg') no-repeat center;
    background-size: 22px auto;
    width: 44px;
    height: 40px;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HEADER - bandeau image + menu principal
   -------------------------------------------------------------------------- */
body header .header-band {
    background: url('../images/ordeco2026/bandeau-homepage.jpg') no-repeat center;
    background-size: cover;
}

/* le menu chevauche pour moitié la barre blanche du dessus */
body header .nav-holder {
    position: relative;
}

body header .main-nav {
    background-image: linear-gradient(to bottom, #465960, #33444c);
    border-radius: 10px;
    position: relative;
    top: -29px;
    margin-bottom: -29px;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(20, 35, 40, 0.25);
}

body header .main-nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

body header .main-nav > ul > li {
    position: relative;
    flex: 1 1 auto;
    text-align: center;
}

body header .main-nav > ul > li > a {
    display: block;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    padding: 18px 8px 16px;
    line-height: 24px;
    text-decoration: none;
    transition: background-color 0.3s;
}

body header .main-nav > ul > li > a:before {
    content: "";
    display: inline-block;
    vertical-align: 2px;
    width: 13px;
    height: 6px;
    margin-right: 9px;
    background-color: #fff;
    opacity: 0.55;
    -webkit-mask: url('../images/ordeco2026/fleche-menu.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-menu.svg') no-repeat center / contain;
    transition: opacity 0.3s;
}

/* premier item : picto accueil */
body header .main-nav > ul > li:first-child {
    flex: 0 0 110px;
}

body header .main-nav > ul > li:first-child > a {
    font-size: 0;
    height: 58px;
    background: url('../images/ordeco2026/picto-home.svg') no-repeat center;
    background-size: 21px auto;
    border-radius: 10px 0 0 10px;
}

body header .main-nav > ul > li:first-child > a:before {
    content: none;
}

body header .main-nav > ul > li:last-child > a {
    border-radius: 0 10px 10px 0;
}

body header .main-nav > ul > li:hover > a,
body header .main-nav > ul > li > a.active {
    background-color: #399a9b;
}

body header .main-nav > ul > li:hover > a:before,
body header .main-nav > ul > li > a.active:before {
    opacity: 1;
}

body header .main-nav > ul > li:first-child:hover > a,
body header .main-nav > ul > li:first-child > a.active {
    background-color: #399a9b;
    background-image: url('../images/ordeco2026/picto-home.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 21px auto;
}

/* sous-menu */
body header .main-nav > ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    z-index: 999;
    min-width: 500px;
    margin: 0;
    padding: 22px 35px;
    list-style: none;
    text-align: left;
    background-color: #399a9b;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 12px 25px rgba(20, 35, 40, 0.3);
}

body header .main-nav > ul > li:hover > ul {
    display: block;
}

/* les derniers items ouvrent leur sous-menu aligné à droite */
body header .main-nav > ul > li:nth-last-child(-n+2) > ul {
    left: auto;
    right: 0;
    border-radius: 12px 0 12px 12px;
}

body header .main-nav > ul > li > ul li {
    margin: 0;
}

body header .main-nav > ul > li > ul li a {
    display: block;
    position: relative;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    padding: 12px 0 12px 20px;
    text-decoration: none;
    text-align: left;
    border: none;
}

body header .main-nav > ul > li > ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 6px;
    height: 13px;
    background-color: #fff;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

body header .main-nav > ul > li > ul li a:hover {
    color: #d3f2ec;
}

/* mots du bandeau */
body header .band-words {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px 35px;
}

body header .band-words .word {
    font-family: 'Overpass', sans-serif;
    font-weight: 300;
    font-size: 46px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.28);
}

/* --------------------------------------------------------------------------
   6. FIL D'ARIANE + TITRE DE PAGE (page.dwt)
   -------------------------------------------------------------------------- */
body .breadcrumb {
    position: static;
    background: transparent;
    margin: 8px 0 0;
    padding: 20px 15px 18px;
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

body .breadcrumb li {
    display: inline-block;
    margin-right: 22px;
}

body .breadcrumb li:before {
    content: "\203A";
    color: #33444c;
    margin-right: 6px;
    font-family: 'Overpass', sans-serif;
}

body .breadcrumb > li + li:before {
    content: "\203A";
    padding: 0;
}

body .breadcrumb a {
    font-family: 'Overpass', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #33444c;
    text-decoration: none;
}

body .breadcrumb li:last-child a {
    color: #399a9b;
}

body .breadcrumb:after {
    content: "";
    display: block;
    width: 155px;
    height: 1px;
    background-color: #8fb5b6;
    margin-top: 22px;
}

body h1.page-title {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #33444c;
    text-align: left;
    margin: 40px 0 35px;
}

body h1.page-title:before,
body h1.page-title:after {
    content: none;
}

/* corps de page */
body .corps {
    font-size: 16px;
    line-height: 1.7;
    color: #343f43;
    padding-bottom: 70px;
}

body .corps h2 {
    font-weight: 700;
    font-size: 24px;
    color: #399a9b;
    margin: 40px 0 20px;
}

body .corps h3 {
    font-weight: 700;
    font-size: 20px;
    color: #399a9b;
    margin: 30px 0 15px;
}

body .corps a {
    color: #399a9b;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   7. PAGE D'ACCUEIL - bloc prestataire + évènements
   -------------------------------------------------------------------------- */
body .home-intro {
    padding-top: 55px;
}

body .home-top-row {
    display: flex;
    gap: 45px;
    margin-bottom: 75px;
}

body .home-top-row:before,
body .home-top-row:after {
    content: none;
}

/* carte "Vous recherchez un prestataire ?" */
body .home-card {
    flex: 0 0 31.5%;
    max-width: 31.5%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(30, 55, 60, 0.18);
}

body .home-card-top {
    background-image: linear-gradient(125deg, #42a075 0%, #399a9b 100%);
    padding: 32px 28px 28px;
}

body .home-card-bottom {
    background-image: linear-gradient(150deg, #465960 0%, #33444c 100%);
    padding: 28px 28px 32px;
}

body .home-card h4 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 22px;
}

body .home-card h5 {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin: 20px 0 3px;
}

body .home-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 8px;
}

body .home-card .card-btn {
    text-align: right;
    margin: 14px 0 4px;
}

/* évènements */
body .events-bloc {
    flex: 1;
    min-width: 0;
}

body .events-bloc h2.events-title {
    font-weight: 800;
    font-size: 30px;
    color: #33444c;
    margin: 0 0 30px;
}

body .events-bloc .events-cols {
    display: flex;
    gap: 55px;
}

body .events-bloc .events-cols:before,
body .events-bloc .events-cols:after {
    content: none;
}

body .events-bloc .events-col {
    flex: 1;
    min-width: 0;
}

body .events-bloc .events-col h3 {
    font-weight: 700;
    font-size: 21px;
    margin: 0 0 20px;
    padding-bottom: 14px;
}

body .events-bloc .col-actions h3 {
    color: #399a9b;
    border-bottom: 1px solid #399a9b;
}

body .events-bloc .col-partenaires h3 {
    color: #21965f;
    border-bottom: 1px solid #21965f;
}

body .events-bloc .actu-actions,
body .events-bloc .actu-prestas {
    margin-bottom: 26px;
    padding: 0;
    border: none;
}

body .events-bloc .actu-actions .date,
body .events-bloc .actu-prestas .date {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #33444c;
    margin-bottom: 5px;
}

body .events-bloc .actu-actions a,
body .events-bloc .actu-prestas a {
    display: block;
    position: relative;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    padding-left: 16px;
    text-decoration: none;
}

body .events-bloc .actu-actions a:before,
body .events-bloc .actu-prestas a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 12px;
    background-color: currentColor;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

body .events-bloc .col-actions a {
    color: #399a9b;
}

body .events-bloc .col-partenaires a {
    color: #21965f;
}

body .events-bloc .actu-actions a:hover,
body .events-bloc .actu-prestas a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   8. PAGE D'ACCUEIL - section Bienvenue
   -------------------------------------------------------------------------- */
body .home-welcome {
    background: url('../images/ordeco2026/bandeau-bienvenue.jpg') no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 75px 0 70px;
}

body .home-welcome h1 {
    font-weight: 800;
    font-size: 42px;
    color: #33444c;
    margin: 0;
}

body .home-welcome h1 span {
    font-weight: 700;
    font-size: 28px;
}

body .home-welcome h2 {
    font-weight: 700;
    font-size: 28px;
    color: #33444c;
    margin: 5px 0 30px;
}

body .home-welcome .lead {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #399a9b;
    line-height: 1.65;
    margin-bottom: 25px;
}

body .home-welcome p {
    color: #4c5a61;
    font-size: 15px;
    line-height: 1.7;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

body .home-welcome .home-btn {
    display: inline-block;
    margin-top: 12px;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #399a9b;
    border-radius: 30px;
    padding: 13px 26px 11px;
    color: #33444c;
    text-decoration: none;
    transition: all 0.3s;
}

body .home-welcome .home-btn:after {
    content: "";
    display: inline-block;
    vertical-align: -2px;
    width: 7px;
    height: 14px;
    margin-left: 14px;
    background-color: currentColor;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

body .home-welcome .home-btn:hover {
    background-color: #399a9b;
    color: #fff;
}

/* ligne partenariat + bloc Cycl'Op */
body .home-welcome .cyclop-line {
    margin-top: 55px;
}

body .home-welcome .cyclop-line p {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #33444c;
    max-width: 980px;
}

body .home-welcome .cyclop-line p a {
    color: #399a9b;
    text-decoration: underline;
}

body .home-welcome .cyclop-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-top: 35px;
    text-decoration: none;
}

body .home-welcome .cyclop-banner:hover {
    text-decoration: none;
}

body .home-welcome .cyclop-banner .cyclop-logo {
    width: 190px;
    height: auto;
}

body .home-welcome .cyclop-banner .cyclop-arc {
    width: auto;
    height: 105px;
}

body .home-welcome .cyclop-banner .cyclop-txt {
    text-align: left;
}

body .home-welcome .cyclop-banner .cyclop-txt .l1 {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #f5a623;
    margin: 0;
}

body .home-welcome .cyclop-banner .cyclop-txt .l2 {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #e9504a;
    margin: 2px 0;
}

body .home-welcome .cyclop-banner .cyclop-txt .l2 span {
    font-size: 16px;
    color: #f5a623;
}

body .home-welcome .cyclop-banner .cyclop-txt .l3 {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 4px;
    color: #f5a623;
    margin: 4px 0 0;
}

/* --------------------------------------------------------------------------
   9. PAGE D'ACCUEIL - ressources / données régionales
   -------------------------------------------------------------------------- */
body .home-resources {
    margin: 0;
    padding: 70px 0 10px;
}

body .home-resources .bloc-donnees {
    background: transparent;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 90px;
}

body .home-resources .bloc-donnees > h2,
body .home-resources .bloc-donnees > h3,
body .home-resources .bloc-donnees > h4 {
    grid-column: 1 / -1;
}

body .home-resources .bloc-donnees .bloc {
    width: auto;
    float: none;
    clear: none;
    margin: 0 0 65px;
    padding: 0;
}

body .home-resources .bloc-donnees img {
    max-width: 100%;
    height: auto;
}

body .home-resources .bloc-donnees h2,
body .home-resources .bloc-donnees h3,
body .home-resources .bloc-donnees h4 {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
    color: #399a9b;
    margin: 30px 0 20px;
    padding: 0;
}

body .home-resources .bloc-donnees h2.rouge,
body .home-resources .bloc-donnees h3.rouge,
body .home-resources .bloc-donnees h4.rouge {
    color: #e9504a;
}

body .home-resources .bloc-donnees p {
    font-size: 15px;
    line-height: 1.7;
    color: #343f43;
}

body .home-resources .bloc-donnees hr {
    border: none;
    border-top: 1px solid #d8dee0;
    margin: 45px 0;
}

body .home-resources .bloc-donnees .txt-donnees {
    min-height: 0;
}

body .home-resources .bloc-donnees .bloc-first .img-donnees,
body .home-resources .bloc-donnees .bloc-last .img-donnees {
    float: none;
    margin: 0;
}

/* --------------------------------------------------------------------------
   10. NEWSLETTER
   -------------------------------------------------------------------------- */
body .bloc-newsletter {
    background: url('../images/ordeco2026/bandeau-newsletter.jpg') no-repeat center;
    background-size: cover;
    padding: 65px 0 70px;
    margin-top: 40px;
}

body .bloc-newsletter .newsletter-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

body .bloc-newsletter .news-txt {
    flex: 0 0 34%;
}

body .bloc-newsletter h3 {
    color: #fff;
    font-weight: 800;
    font-size: 36px;
    margin: 0 0 18px;
}

body .bloc-newsletter .news-txt p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

body .bloc-newsletter .news-txt p strong {
    font-weight: 700;
}

body .bloc-newsletter .news-form {
    flex: 1;
    min-width: 0;
}

body .bloc-newsletter .news-form form fieldset {
    display: flex;
    align-items: center;
    gap: 20px;
    height: auto;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

body .bloc-newsletter .news-form form fieldset input[type="email"] {
    flex: 1;
    width: auto;
    min-width: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    padding: 13px 28px;
    font-family: 'Overpass', sans-serif;
    font-style: italic;
    font-size: 15px;
    color: #fff;
    outline: none;
}

body .bloc-newsletter .news-form form fieldset input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

body .bloc-newsletter .news-form form fieldset input[type="submit"] {
    float: none;
    height: auto;
    background: url('../images/ordeco2026/picto-comete-blanc.svg') no-repeat 24px center;
    background-size: 22px auto;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 13px 28px 11px 56px;
    cursor: pointer;
    transition: all 0.3s;
}

body .bloc-newsletter .news-form form fieldset input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

body .bloc-newsletter .news-form .checkbox {
    margin-top: 18px;
}

body .bloc-newsletter .form-checkbox {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

body .bloc-newsletter .form-checkbox__input {
    position: absolute;
    opacity: 0;
}

body .bloc-newsletter .form-checkbox__icon,
body .bloc-newsletter .form-horizontal .form-checkbox .form-checkbox__icon {
    display: inline-block;
    vertical-align: -4px;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    position: relative;
}

body .bloc-newsletter .form-checkbox__input:checked + .form-checkbox__icon:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body .bloc-newsletter .form-checkbox__label {
    color: #fff;
    font-size: 14px;
    padding-top: 0;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
body footer {
    background-color: #f7f7f9;
    padding: 55px 0 65px;
    margin-top: 0;
}

body footer .footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

body footer .footer-logo img {
    width: 175px;
    height: auto;
}

body footer .footer-contact {
    padding-top: 8px;
}

body footer .footer-contact .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #495355;
    line-height: 1.5;
}

body footer .footer-contact .contact-line img {
    width: 17px;
    height: auto;
    margin-top: 2px;
}

body footer .footer-contact .contact-line.strong,
body footer .footer-contact .contact-line a {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    color: #33444c;
    text-decoration: none;
}

body footer .footer-nav {
    display: flex;
    gap: 45px;
    padding-top: 8px;
}

body footer .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
}

body footer .footer-nav ul ul {
    display: none;
}

body footer .footer-nav li {
    margin-bottom: 13px;
}

body footer .footer-nav a {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #495355;
    padding-left: 15px;
    text-decoration: none;
    display: inline-block;
}

body footer .footer-nav a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: 12px;
    background-color: #399a9b;
    -webkit-mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
    mask: url('../images/ordeco2026/fleche-bouton.svg') no-repeat center / contain;
}

body footer .footer-nav a:hover {
    color: #399a9b;
}

body footer .footer-right {
    margin-left: auto;
    padding-top: 8px;
}

body footer .footer-follow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

body footer .footer-follow .label {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    color: #33444c;
}

body footer .footer-follow img {
    width: 34px;
    height: 34px;
}

body footer .footer-partners {
    display: flex;
    align-items: center;
    gap: 20px;
}

body footer .footer-partners a {
    display: flex;
    align-items: center;
    gap: 20px;
}

body footer .footer-partners img {
    height: 64px;
    width: auto;
    flex-shrink: 0;
    max-height: none;
}

/* --------------------------------------------------------------------------
   12. MENU MOBILE (panneaux hérités recolorés)
   -------------------------------------------------------------------------- */
body header .menu-mobile-bar {
    display: none;
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    background: #33444c;
    background-image: linear-gradient(to bottom, #465960, #33444c);
    border-radius: 8px;
}

@media (max-width: 767px) {
    body header .menu-mobile-bar {
        display: block;
        margin-top: 15px;
    }

    body header .menu-mobile-bar .menu-icon {
        height: 52px;
    }

    body header .menu-mobile-bar .menu-icon i {
        font-size: 26px;
        line-height: 52px;
    }
}

body header .menu-mobile-bar .menu-icon i {
    color: #fff;
}

body header .menu-mobile-open,
body header .menu-mobile-open ul li ul {
    background-color: #33444c;
}

body header .menu-mobile-open .top-menu {
    background-color: #399a9b;
}

body header .menu-mobile-open ul li a {
    color: #fff;
}

body header .menu-search-open {
    background-color: #399a9b;
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    body header .main-nav > ul > li > a {
        font-size: 15px;
    }

    body header .main-nav > ul > li:first-child {
        flex: 0 0 80px;
    }

    body .home-card {
        flex: 0 0 36%;
        max-width: 36%;
    }
}

@media (max-width: 991px) {
    body header .topbar-logo img {
        width: 145px;
    }

    body header .main-nav > ul > li > a {
        font-size: 13px;
        padding: 19px 5px 17px;
        line-height: 22px;
    }

    body header .main-nav > ul > li > a:before {
        margin-right: 5px;
    }

    body header .main-nav > ul > li:first-child {
        flex: 0 0 60px;
    }

    body header .main-nav > ul > li > ul {
        min-width: 380px;
    }

    body header .band-words .word {
        font-size: 34px;
    }

    body .home-top-row {
        display: block;
    }

    body .home-card {
        max-width: 420px;
        margin-bottom: 45px;
    }

    body .bloc-newsletter .newsletter-inner {
        display: block;
    }

    body .bloc-newsletter .news-txt {
        margin-bottom: 30px;
    }

    body footer .footer-inner {
        flex-wrap: wrap;
        gap: 40px;
    }

    body footer .footer-right {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    body header .topbar {
        padding: 15px 0;
    }

    body header .topbar-inner {
        justify-content: center;
    }

    body header .topbar-search,
    body header .topbar-actions {
        display: none;
    }

    body header .main-nav {
        display: none;
    }

    body header .header-band {
        padding-top: 15px;
    }

    body header .band-words {
        padding: 20px 15px 25px;
    }

    body header .band-words .word {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    body header .band-words {
        padding: 18px 15px 22px;
    }

    body header .band-words .word {
        font-size: 17px;
    }

    body h1.page-title {
        font-size: 28px;
    }

    body .home-intro {
        padding-top: 30px;
    }

    body .home-card {
        flex: none;
        max-width: none;
    }

    body .events-bloc .events-cols {
        display: block;
    }

    body .events-bloc .events-col {
        margin-bottom: 35px;
    }

    body .home-welcome h1 {
        font-size: 32px;
    }

    body .home-welcome h1 span,
    body .home-welcome h2 {
        font-size: 22px;
    }

    body .home-welcome .cyclop-banner {
        flex-direction: column;
        gap: 25px;
    }

    body .home-welcome .cyclop-banner .cyclop-arc {
        display: none;
    }

    body .home-welcome .cyclop-banner .cyclop-txt {
        text-align: center;
    }

    body .home-resources .bloc-donnees {
        display: block;
    }

    body .home-resources .bloc-donnees .bloc {
        margin: 0 0 50px;
    }

    body .bloc-newsletter h3 {
        font-size: 30px;
    }

    body .bloc-newsletter .news-form form fieldset {
        display: block;
        height: auto;
    }

    body .bloc-newsletter .news-form form fieldset input[type="email"] {
        width: 100%;
        margin-bottom: 18px;
    }

    body footer .footer-inner {
        display: block;
        text-align: center;
    }

    body footer .footer-logo {
        margin-bottom: 30px;
    }

    body footer .footer-logo img {
        margin: 0 auto;
    }

    body footer .footer-contact .contact-line {
        justify-content: center;
        margin-bottom: 14px;
    }

    body footer .footer-nav {
        justify-content: center;
        text-align: left;
        margin: 30px 0;
    }

    body footer .footer-follow {
        justify-content: center;
    }

    body footer .footer-partners {
        flex-wrap: wrap;
        justify-content: center;
    }

    body footer .footer-partners img {
        height: 52px;
    }
}
