@import url("header.css");

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #24364a;
    background-color: #faf4ef;
    font-family: Arial, sans-serif;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(30px, 8vw, 48px);
}

h2 {
    font-size: clamp(24px, 6vw, 36px);
}

p {
    line-height: 1.6;
}

a {
    color: inherit;
}

.pageMain {
    min-height: 70vh;
}

.section {
    padding: 60px 24px;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.titreCentre {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.titreCentre h1,
.titreCentre h2 {
    margin-bottom: 12px;
    overflow-wrap: break-word;
}

.texteOrange {
    color: #f3a56f;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    box-shadow: 0 8px 22px rgba(36, 54, 74, 0.12);
}

.btnOrange {
    color: white;
    background-color: #f3a56f;
}

.btnBleu {
    color: white;
    background-color: #24364a;
}

.btnClair {
    color: #24364a;
    background-color: white;
    border: 1px solid #ddd4cc;
}

.card {
    padding: 24px;
    background-color: white;
    border: 1px solid #eee5dc;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(36, 54, 74, 0.06);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    border-color: #efd7c4;
    box-shadow: 0 12px 28px rgba(36, 54, 74, 0.08);
}

.animationScroll {
    opacity: 0;
    transition: opacity 1.15s ease;
}

.animationVisible {
    opacity: 1;
}

.gridDeux {
    display: grid;
    gap: 30px;
}

.gridTrois {
    display: grid;
    gap: 24px;
}

.imageFausse {
    height: 170px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #24364a, #56708d);
    border-radius: 6px;
}

.note {
    color: #f3a56f;
    letter-spacing: 2px;
}

.heroAccueil {
    padding-top: 50px;
    padding-bottom: 40px;
}

.actionsHero {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.adnBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.adnBox canvas {
    width: 260px;
    max-width: 100%;
    height: 420px;
    touch-action: none;
    filter: drop-shadow(0 18px 25px rgba(36, 54, 74, 0.12));
}

.adnBox::after {
    margin-top: 4px;
    color: #9aa3ad;
    font-size: 12px;
    content: "Cliquez et glissez pour faire tourner";
}

.cardMiseEnAvant {
    border-color: #24364a;
}

.timelineOffres {
    max-width: 850px;
    margin: 0 auto;
}

.etapeOffre {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 22px;
    padding-bottom: 38px;
}

.etapeOffre::before {
    position: absolute;
    top: 34px;
    bottom: 0;
    left: 21px;
    width: 3px;
    background-color: #d8dce0;
    content: "";
}

.etapeOffre:last-child {
    padding-bottom: 0;
}

.etapeOffre:last-child::before {
    display: none;
}

.etapeOffre span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: white;
    font-weight: bold;
    background-color: #24364a;
    border-radius: 50%;
}

.etapeOffre h2 {
    margin-bottom: 10px;
    font-size: 26px;
}

.etapeOffre p {
    margin: 0;
    color: #526272;
    font-size: 16px;
}

.projetCard h3,
.avisCard h3 {
    margin-bottom: 8px;
}

.imageOrange {
    background: linear-gradient(135deg, #f3a56f, #865439);
}

.imageVerte {
    background: linear-gradient(135deg, #315c46, #9ebd9e);
}

.imageNuit {
    background: linear-gradient(135deg, #101722, #47566a);
}

.imageCafe {
    background: linear-gradient(135deg, #8a5638, #e5b17a);
}

.imageBleu {
    background: linear-gradient(135deg, #24364a, #7fa1bf);
}

.blocAction {
    margin-top: 50px;
    text-align: center;
}

.avisVide {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.formulaireContact {
    display: flex;
    flex-direction: column;
}

.formulaireContact label {
    margin-bottom: 6px;
    font-size: 14px;
}

.formulaireContact input,
.formulaireContact select,
.formulaireContact textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 10px;
    border: 1px solid #d9cdc2;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

.formulaireContact button {
    border: none;
    cursor: pointer;
}

.mapFausse {
    overflow: hidden;
    min-height: 220px;
    margin-top: 24px;
    background-color: #24364a;
    border-radius: 8px;
}

.mapFausse iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
}

.footerSite {
    padding: 70px 24px;
    color: #24364a;
    background-color: #faf4ef;
    border-top: 1px solid #e3d8ce;
}

.footerGrid {
    display: grid;
    gap: 36px;
    max-width: 1250px;
    margin: 0 auto;
}

.footerSite h3,
.footerSite h4 {
    margin-bottom: 22px;
}

.footerSite h3 {
    font-size: 32px;
}

.footerSite h4 {
    font-family: Arial, sans-serif;
    font-size: 22px;
}

.footerSite ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footerSite li {
    margin-bottom: 18px;
    font-size: 18px;
}

.footerSite a {
    color: #526272;
    text-decoration: none;
}

.footerSite p {
    margin-top: 0;
    color: #526272;
    font-size: 18px;
    line-height: 1.35;
}

.footerSite .copyright {
    color: #7f8a96;
}

.linkedinLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    color: #24364a;
    font-weight: bold;
    border: 2px solid #f3a56f;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .section {
        padding: 80px 40px;
    }

    .actionsHero {
        flex-direction: row;
        justify-content: center;
    }

    .gridDeux {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .gridTrois {
        grid-template-columns: repeat(3, 1fr);
    }

    .etapeOffre {
        grid-template-columns: 52px 1fr;
        gap: 26px;
    }

    .etapeOffre::before {
        left: 25px;
    }

    .etapeOffre span {
        width: 38px;
        height: 38px;
    }

    .etapeOffre h2 {
        font-size: 28px;
    }

    .etapeOffre p {
        font-size: 20px;
    }

    .footerGrid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footerSite li,
    .footerSite p {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animationScroll,
    .btn,
    .card {
        transition: none;
    }

    .animationScroll {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.sectionOffresTarifs .titreCentre {
    margin-bottom: 34px;
}

.offresTarifsGrid {
    display: grid;
    gap: 34px;
    max-width: 1080px;
    margin: 0 auto;
}

.offreTarifCard {
    padding: 32px;
    border-left: 3px solid #f3a56f;
    box-shadow: 0 12px 30px rgba(36, 54, 74, 0.07);
}

.offreTarifCard h3 {
    margin-bottom: 20px;
}

.offreTarifCard p {
    font-size: 14px;
}

.offreTarifListe {
    margin: 14px 0 24px;
    padding: 0;
    list-style: none;
}

.offreTarifListe li {
    margin-bottom: 8px;
    color: #24364a;
    font-size: 13px;
}

.offreTarifListe li::before {
    margin-right: 8px;
    color: #24364a;
    content: "✓";
}

.offreTarifPrix {
    margin: 22px 0 10px;
    color: #f3a56f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: bold;
}

.offreTarifDetail {
    color: #526272;
    font-size: 13px;
}

@media screen and (min-width: 768px) {
    .offresTarifsGrid {
        grid-template-columns: 1fr 1fr;
    }
}

.mentionRgpdFormulaire {
    margin: 14px 0 0;
    color: #526272;
    font-size: 12px;
    line-height: 1.5;
}

.mentionRgpdFormulaire a {
    color: #24364a;
    font-weight: bold;
}

