* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Merienda', Brush Script;
    background-color: #BAD4D6;
}

body {
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}
/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
}

.contact-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.contact-item a:hover {
    opacity: 0.8;
}
/* LOGO PLUS GROS */
.logo img {
    height: 150px;
}

/* MENU */
nav {
    display: flex;
    gap: 60px;
}

nav a {
    text-decoration: none;
    color: #4A0106;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

/* TRAIT AU HOVER */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #4A0106;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* BOUTON CONTACT */
.btn-contact {
    background-color: #FFE594;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #4A0106;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #FBB663;
}



/* =========================
   ACCUEIL : HERO + ARCHE
========================= */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    align-items: center;
    gap: 48px;
    padding: 32px 80px 64px;
}

.hero-text {
    max-width: 720px;
}

.hero-text h1 {
    color: #4A0106;
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 60ch;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    color: #4A0106;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #FFE594;
}

.btn-secondary {
    margin-top: 24px;
    background-color: #BAD4D6;
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: #FBB663;
    transform: translateY(-1px);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

/* ARCHE */
.arch-wrapper {
    background-color: #BAD4D6;
    padding-top: 72px;
}

.arch {
    background-color: #FFE594;
    border-top-left-radius: 50% 120px;
    border-top-right-radius: 50% 120px;
    padding: 96px 80px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.arch h2 {
    color: #4A0106;
    font-size: 40px;
    margin-top: 70px;
    margin-bottom: 32px;
    line-height: 1.15;
}

.arch h2:first-of-type {
    margin-top: 0;
}

/* =========================
   CAROUSEL
========================= */

.carousel-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.carousel {
    width: 650px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-track img {
    display: block;
    width: 146px;
    height: auto;
    flex: 0 0 146px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}

.arrow {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    color: #4A0106;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.arrow:hover {
    transform: scale(1.05);
}

.arrow:active {
    transform: scale(0.96);
}

/* =========================
   ACCES / HORAIRES
========================= */

.info-top {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(280px, 420px);
    justify-content: center;
    align-items: start;
    gap: 48px;
    margin-top: 18px;
}

.map {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
}

.map img {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 220px;
    border-top-right-radius: 220px;
}

.map p {
    margin-top: 16px;
    text-align: center;
    white-space: normal; /* était nowrap */
    color: #4A0106;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.horaires {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    line-height: 1.75;
    font-size: 17px;
    width: 100%;
    max-width: 420px;
}

.horaires p {
    margin-bottom: 8px;
}


/* =========================
   CONTACT
========================= */

.contact-infos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 72px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.contact-item img {
    width: 42px;
    height: 42px;
    display: block;
}

.contact-item span {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 40px 56px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .hero-image img {
        max-width: 360px;
    }

    .arch {
        padding: 88px 40px 72px;
    }

    .arch h2 {
        font-size: 38px;
        margin-bottom: 34px;
    }

    .carousel-container {
        max-width: 700px;
    }

    .carousel {
        width: 482px;
    }

    .info-top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .horaires {
        max-width: 520px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-infos {
        gap: 38px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 20px 22px 42px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-image img {
        max-width: 270px;
    }

    .arch-wrapper {
        padding-top: 44px;
    }

    .arch {
        border-top-left-radius: 50% 64px;
        border-top-right-radius: 50% 64px;
        padding: 58px 18px 56px;
    }

    .arch h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .carousel-container {
        gap: 0;
        max-width: 100%;
    }

    .carousel {
        width: 290px;
        max-width: 290px;
        margin: 0 auto;
        overflow: hidden;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-track img {
        width: 140px;
        flex: 0 0 140px;
        height: auto;
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .arrow.left {
        left: -2px;
    }

    .arrow.right {
        right: -2px;
    }

    .arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

    .btn-secondary {
        margin-top: 18px;
    }

    .info-top {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 10px;
    }

    .map {
        max-width: 300px;
    }

    .map p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.25;
    }

    .horaires {
        max-width: 100%;
        text-align: center;
        font-size: 15px;
        line-height: 1.65;
    }

    .horaires p {
        margin-bottom: 7px;
    }

   



    .contact-infos {
        gap: 28px;
        margin-top: 6px;
    }

    .contact-item {
        min-width: 110px;
    }

    .contact-item img {
        width: 34px;
        height: 34px;
    }

    .contact-item span {
        font-size: 14px;
    }
}




/* =========================
   PAGE CONTACT
========================= */

.contact-page {
    position: relative;
    min-height: 100vh;
    background-color: #BAD4D6;
    padding: 30px 20px 100px;
    overflow: hidden;
}

.contact-section {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1,
.contact-section h2 {
    color: #4A0106;
    font-size: 40px;
    font-weight: 700;
}

.contact-section h1 {
    margin-bottom: 40px;
}

.contact-section h2 {
    margin-top: 40px;
    margin-bottom: 12px;
}

/* INFOS CONTACT */
.contact-infos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.contact-item img {
    width: 42px;
    height: 42px;
    display: block;
}

.contact-item span {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* ACCES */
.contact-access-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    width: 100%;
    margin-bottom: 80px;
}
.contact-map-block,

.contact-map-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.contact-map-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contact-map-block p {
    margin-top: -6px;
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.15;
}


/* HORAIRES */
.contact-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-hours p {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.contact-hours strong {
    font-weight: 700;
}

/* FLEURS */
.contact-flower-top-right,
.contact-flower-left-middle,
.contact-flower-bottom-right,
.contact-flower-bottom-left {
    position: absolute;
    display: block;
    z-index: 1;
}

.contact-flower-top-right {
    top: 0;
    right: -120px;
    width: 280px;
}

.contact-flower-left-middle {
    top: 280px;
    left: -110px;
    width: 250px;
    transform: rotate(-8deg);
}

.contact-flower-bottom-right {
    bottom: 270px;
    right: -120px;
    width: 260px;
}

.contact-flower-bottom-left {
    bottom: 20px;
    left: -110px;
    width: 250px;
    transform: rotate(-8deg);
}

/* TABLETTE */
@media (max-width: 900px) {
    .contact-section h1,
    .contact-section h2 {
        font-size: 42px;
    }

    .contact-infos {
        gap: 45px;
    }

    .contact-access-grid {
        gap: 20px;
    }

    .contact-map-image {
        max-width: 500px;
    }


    .contact-flower-top-right {
        width: 200px;
        right: -70px;
    }

    .contact-flower-left-middle {
        width: 180px;
        left: -75px;
    }

    .contact-flower-bottom-right {
        width: 190px;
        right: -75px;
    }

    .contact-flower-bottom-left {
        width: 180px;
        left: -75px;
    }
}

/* MOBILE */
@media (max-width: 700px) {
    .contact-page {
        padding: 20px 18px 70px;
    }

    .contact-section h1,
    .contact-section h2 {
        font-size: 38px;
    }

    .contact-section h1 {
        margin-bottom: 28px;
    }

    .contact-section h2 {
        margin-top: 34px;
        margin-bottom: 8px;
    }

    .contact-infos {
        gap: 28px;
        margin-bottom: 34px;
    }

    .contact-item img {
        width: 34px;
        height: 34px;
    }

    .contact-item span {
        font-size: 14px;
    }

    .contact-access-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 50px;
    }

    .contact-map-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
    }

    .contact-map-image {
        width: 500px;
        max-width: 500px;
        min-width: 500px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .contact-map-block p {
        margin-top: -10px;
        font-size: 15px;
        line-height: 1.1;
    }



    .contact-hours p {
        font-size: 15px;
    }

    .contact-flower-top-right,
    .contact-flower-left-middle,
    .contact-flower-bottom-right,
    .contact-flower-bottom-left {
        display: none;
    }
}



a {
    text-decoration: none; /* enlève le souligné */
    color: inherit;        /* garde la couleur normale */
}


/* FOOTER */
.site-footer {
    margin-top: 0;
}

.footer-mosaique img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.footer-content {
    background-color: #F8B562;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 38px 80px 28px;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 210px;
    height: auto;
    display: block;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a,
.footer-legal {
    text-decoration: none;
    color: #4A0106;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-nav a:hover,
.footer-legal:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.footer-socials {
    display: flex;
    gap: 22px;
}

.footer-socials img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.footer-bottom {
    background-color: #F8B562;
    padding: 0 80px 20px;
}

.footer-bottom p {
    border-top: 2px solid #4A0106;
    text-align: center;
    padding-top: 14px;
    color: #4A0106;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

/* LAPTOP CLASSIQUE */
@media (max-width: 1100px) {
    .footer-content {
        padding: 32px 48px 24px;
        gap: 24px;
    }

    .footer-bottom {
        padding: 0 48px 18px;
    }

    .footer-nav {
        gap: 24px;
    }

    .footer-nav a,
    .footer-legal {
        font-size: 16px;
    }
}

/* TABLETTE */
@media (max-width: 900px) {
    .footer-mosaique img {
        height: 100px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 32px 36px 24px;
        gap: 28px;
    }

    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 170px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
    }

    .footer-nav a,
    .footer-legal {
        font-size: 16px;
    }

    .footer-right {
        align-items: center;
        gap: 18px;
        width: 100%;
    }

    .footer-bottom {
        padding: 0 36px 18px;
    }
}
/* MOBILE */
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;        /* ← changer flex-start en center */
        justify-content: center;    /* ← idem */
        padding: 34px 28px 22px;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;        /* ← changer flex-start en center */
        gap: 22px;
        width: 100%;
    }

    .footer-right {
        align-items: center;        /* ← changer flex-start en center */
        gap: 22px;
        width: 100%;
    }
}





/* EMPÊCHE LE DÉBORDEMENT HORIZONTAL */
html, body {
    overflow-x: hidden;
    width: 100%;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* CAROUSEL — c'est lui qui cause le débordement */
.carousel-track {
    max-width: none; /* le track peut déborder DANS son conteneur */
}

.carousel {
    overflow: hidden;
    min-width: 0;
}

/* IMAGES — aucune image ne déborde */
img {
    max-width: 100%;
    height: auto;
}

/* FOOTER MOSAÏQUE */
.footer-mosaique {
    width: 100%;
    overflow: hidden;
}

.footer-mosaique img {
    width: 100%;
    min-width: 0;
    height: clamp(70px, 10vw, 130px);
    object-fit: cover;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #BAD4D6;
    font-family: 'Merienda', cursive;
}

.legal-page {
    min-height: 100vh;
}

/* TITRE */
.legal-page h1 {
    text-align: center;
    color: #4A0106;
    font-size: 40px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 70px;
}

/* GRAND BLOC VERT */
.legal-arch {
    background-color: #73946F;
    min-height: 1300px;
    padding: 120px 0 90px;
    border-top-left-radius: 50% 170px;
    border-top-right-radius: 50% 170px;
    overflow: hidden;
}

/* CONTENEUR TEXTE : prend presque toute la largeur */
.legal-content {
    width: calc(100% - 300px);
    margin-left: 150px;
    margin-right: 150px;
    max-width: none;
}
@media (max-width: 700px) {
    .legal-content {
        width: calc(100% - 48px);
        margin-left: 24px;
        margin-right: 24px;
    }

    .legal-arch {
        border-top-left-radius: 50% 60px;
        border-top-right-radius: 50% 60px;
        padding: 70px 0 60px;
    }

    .legal-block h2 {
        font-size: 17px;
    }

    .legal-block p {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* BLOCS */
.legal-block {
    margin-bottom: 62px;
}

/* TITRES DE SECTION */
.legal-block h2 {
    color: #FFF8E8;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 26px;
}

/* PARAGRAPHES : surtout pas de limite */
.legal-block p {
    font-family: 'Montserrat', sans-serif;
    color: #FFF8E8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    width: 100%;
    max-width: none;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.legal-arch {
    background-color: #73946F;
    min-height: 1300px;
    padding: 120px 0 90px;
    border-top-left-radius: 50% 170px;
    border-top-right-radius: 50% 170px;
    position: relative;
    overflow: hidden;
}

.flower-right {
    position: absolute;
    right: -70px;
    top: 360px;
    width: 260px;
    height: auto;
    display: block;
    z-index: 1;
}
@media (max-width: 900px) {
    .flower-right {
        right: -35px;
        top: 430px;
        width: 180px;
    }
}



/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    position: relative;
    z-index: 1000;
}

/* LOGO */
.logo img {
    height: 150px;
}

/* MENU DESKTOP */
.nav-links {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #4A0106;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #4A0106;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* BOUTON CONTACT */
.btn-contact {
    background-color: #FFE594;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #4A0106;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #FBB663;
}

.btn-contact::after {
    display: none;
}

/* BURGER PAR DÉFAUT */
.burger {
    display: none;
    background: none;
    border: none;
}

/* VERSION MOBILE */
@media (max-width: 900px) {
    .navbar {
        padding: 20px 24px;
        align-items: flex-start;
    }

    .logo img {
        height: 100px;
    }

    /* BOUTON BURGER FIXÉ EN HAUT À DROITE */
    .burger {
        display: block;
        position: fixed;
        top: 30px;
        right: 24px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 3000;
        padding: 0;
    }

    /* BARRES */
    .burger span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 34px;
        height: 4px;
        background-color: #1E1E1E;
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .burger span:nth-child(1) {
        transform: translate(-50%, -11px);
    }

    .burger span:nth-child(2) {
        transform: translate(-50%, 0);
    }

    .burger span:nth-child(3) {
        transform: translate(-50%, 11px);
    }

    /* QUAND OUVERT => CROIX AU MÊME ENDROIT */
    .burger.open span:nth-child(1) {
        transform: translate(-50%, 0) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: translate(-50%, 0) rotate(-45deg);
    }

    /* MENU MOBILE */
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background-color: #BAD4D6;
        z-index: 2000;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 36px;
        padding-top: 120px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
    }

    .btn-contact {
        margin-top: 10px;
    }
}



/* =========================
   PAGE A PROPOS
========================= */

.about-page {
    min-height: 100vh;
    background-color: #BAD4D6;
    padding: 20px 0 80px;
    overflow: hidden;
}

.about-page h1 {
    text-align: center;
    color: #4A0106;
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 35px;
}

.about-section {
    position: relative;
    min-height: 950px;
    padding: 20px 80px 80px;
    overflow: hidden;
}

/* TEXTE */
.about-text {
    max-width: 560px;
    margin-top: 40px;
    margin-left: 15px;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    color: #4A0106;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 28px;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    line-height: 1.45;
    max-width: 560px;
    margin-bottom: 28px;
}

/* FLEURS DECO */
.flower-top-right,
.flower-bottom-left {
    position: absolute;
    display: block;
    z-index: 1;
    opacity: 0.95;
}

.flower-top-right {
    top: 120px;
    right: -115px;
    width: 330px;
    transform: rotate(8deg);
}

.flower-bottom-left {
    bottom: 25px;
    left: -100px;
    width: 290px;
    transform: rotate(-18deg);
}

/* IMAGE PRINCIPALE */
.about-main-image {
    position: absolute;
    right: 300px;
    top: 360px;
    width: 470px;
    height: auto;
    display: block;
    z-index: 2;
}

/* TABLETTE */
@media (max-width: 1100px) {
    .about-section {
        min-height: 1180px;
        padding: 20px 40px 80px;
    }

    .about-text {
        max-width: 100%;
        margin-left: 0;
    }

    .about-main-image {
        position: relative;
        top: auto;
        right: auto;
        width: 420px;
        margin: 80px auto 0;
    }

    .flower-top-right {
        width: 250px;
        right: -85px;
    }

    .flower-bottom-left {
        width: 230px;
        left: -75px;
    }
}

/* MOBILE */
@media (max-width: 700px) {
    .about-page h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .about-section {
        min-height: auto;
        padding: 10px 24px 60px;
    }

    .about-text {
        margin-top: 10px;
    }

    .about-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
    }

    .about-main-image {
        position: relative;
        top: auto;
        right: auto;
        width: 320px;
        margin: 90px auto 0;
    }

    .flower-top-right {
        width: 170px;
        top: 180px;
        right: -60px;
    }

    .flower-bottom-left {
        width: 165px;
        left: -60px;
        bottom: 20px;
    }
}
@media (max-width: 700px) {
    .flower-top-right,
    .flower-bottom-left {
        display: none;
    }
}



/* =========================
   PAGE FLEURS / PLANTES
========================= */

.cut-flowers-page {
    background-color: #BAD4D6;
    padding-top: 20px;
}

/* GRAND BLOC VERT */
.cut-flowers-hero {
    background-color: #73946F;
    margin-top: 40px;
    padding: 60px 40px 80px;
    border-top-left-radius: 50% 180px;
    border-top-right-radius: 50% 180px;
    position: relative;
    overflow: hidden;
}

.season-note {
    display: inline-block;
    background-color: #F2A85D;
    color: #4A0106;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 90px;
}
@media (max-width: 700px) {
    .season-note {
        margin-top: 20px;
        margin-bottom: 60px;
    }
}

/* BLOCS */
.cut-item {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cut-text {
    width: 42%;
}

.cut-text h2 {
    color: #FFF8E8;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cut-text p {
    font-family: 'Montserrat', sans-serif;
    color: #FFF8E8;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
}

.cut-image {
    width: 340px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

/* ALTERNANCE */
.cut-item-1 .cut-image,
.cut-item-3 .cut-image {
    margin-right: 30px;
}

.cut-item-2 .cut-image,
.cut-item-4 .cut-image {
    margin-left: 20px;
}

.cut-item-2,
.cut-item-4 {
    justify-content: flex-start;
    gap: 80px;
}


.cut-item-2 .cut-text,
.cut-item-4 .cut-text {
    margin-left: 150px;
}

/* SERVICES BAS */

.services-mini {
    width: fit-content;
    max-width: 90%;
    margin: 70px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-mini {
    width: 100%;
    display: grid;
    grid-template-columns: 28px auto;
    align-items: center;
    column-gap: 14px;
}


.service-mini img {
    width: 24px;
    height: 24px;
    display: block;
    justify-self: start;
}


.service-mini span {
    font-family: 'Montserrat', sans-serif;
    color: #FFF8E8;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cut-flowers-hero {
        padding: 50px 24px 60px;
        border-top-left-radius: 50% 120px;
        border-top-right-radius: 50% 120px;
    }


    .cut-item,
    .cut-item-2,
    .cut-item-3,
    .cut-item-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-bottom: 55px;
    }


    .cut-item .cut-text {
        order: 1;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .cut-item .cut-image {
        order: 2;
        width: 220px;
        margin: 0 !important;
    }

    .cut-text h2 {
        font-size: 28px;
    }

    .cut-text p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .services-mini {
        width: fit-content;
        max-width: 92%;
        margin: 50px auto 0;
    }

    .service-mini {
        width: 100%;
    }
}



/* =========================
   PAGE OCCASIONS
========================= */

.occasions-page {
    min-height: 100vh;
    background-color: #BAD4D6;
    padding: 20px 0 80px;
    overflow: hidden;
}

.occasions-page h1 {
    text-align: center;
    color: #4A0106;
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 40px;
}

.occasions-section {
    position: relative;
    min-height: 980px;
    padding: 20px 80px 80px;
    overflow: hidden;
}

/* TEXTE */
.occasions-text {
    max-width: 610px;
    margin-top: 40px;
    margin-left: 15px;
    position: relative;
    z-index: 2;
}

.occasions-text p {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    line-height: 1.45;
    max-width: 610px;
    margin-bottom: 22px;
}

/* SERVICES */
.occasion-services {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.occasion-service {
    display: grid;
    grid-template-columns: 28px auto;
    align-items: center;
    column-gap: 14px;
    width: fit-content;
}

.occasion-service img {
    width: 24px;
    height: 24px;
    display: block;
}

.occasion-service span {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

/* FLEURS DECO JAUNES */
.flower-top-right-yellow,
.flower-bottom-left-yellow {
    position: absolute;
    display: block;
    z-index: 1;
}

/* Fleur du haut */
.flower-top-right-yellow {
    top: 18px;
    right: -105px;
    width: 320px;
}

/* Fleur du bas gauche */
.flower-bottom-left-yellow {
    bottom: 60px;
    left: -125px;
    width: 300px;
    transform: rotate(-8deg);
}

/* IMAGE PRINCIPALE */
.occasions-main-image {
    position: absolute;
    right: 120px;
    top: 470px;
    width: 450px;
    height: auto;
    display: block;
    z-index: 2;
}

/* TABLETTE */
@media (max-width: 1100px) {
    .occasions-section {
        min-height: 1180px;
        padding: 20px 40px 80px;
    }

    .occasions-text {
        max-width: 100%;
        margin-left: 0;
    }

    .occasions-main-image {
        position: relative;
        top: auto;
        right: auto;
        width: 390px;
        margin: 80px auto 0;
    }

    .flower-top-right-yellow {
        width: 240px;
        right: -70px;
        top: 25px;
    }

    .flower-bottom-left-yellow {
        width: 220px;
        left: -75px;
        bottom: 50px;
    }
}

/* MOBILE */@media (max-width: 700px) {
    .occasions-page h1 {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .occasions-section {
        min-height: auto;
        padding: 10px 24px 60px;
    }

    .occasions-text {
        margin-top: 10px;
        margin-left: 0;
    }

    .occasions-text p {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .occasion-services {
        margin-top: 35px;
        gap: 16px;
    }

    .occasion-service {
        width: fit-content;
    }

    .occasion-service span {
        font-size: 14px;
    }

    .occasions-main-image {
        position: relative;
        top: auto;
        right: auto;
        width: 300px;
        margin: 70px auto 0;
    }

    .flower-top-right-yellow,
    .flower-bottom-left-yellow {
        display: none;
    }
}



/* =========================
   PAGE CONTACT
========================= */

.contact-page {
    position: relative;
    min-height: 100vh;
    background-color: #BAD4D6;
    padding: 30px 20px 100px;
    overflow: hidden;
}

.contact-section {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1,
.contact-section h2 {
    color: #4A0106;
    font-size: 40px;
    font-weight: 700;
}

.contact-section h1 {
    margin-bottom: 40px;
}

.contact-section h2 {
    margin-top: 40px;
    margin-bottom: 18px;
}

/* INFOS HAUT */
.contact-infos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.contact-item img {
    width: 42px;
    height: 42px;
    display: block;
}

.contact-item span {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* ACCES */
.contact-access-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-map-block,


.contact-map-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-map-image {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contact-map-block p {
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}





/* HORAIRES */
.contact-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-hours p {
    font-family: 'Montserrat', sans-serif;
    color: #4A0106;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.contact-hours strong {
    font-weight: 700;
}

/* FLEURS */
.contact-flower-top-right,
.contact-flower-left-middle,
.contact-flower-bottom-right,
.contact-flower-bottom-left {
    position: absolute;
    display: block;
    z-index: 1;
}

.contact-flower-top-right {
    top: 0;
    right: -120px;
    width: 280px;
}

.contact-flower-left-middle {
    top: 280px;
    left: -110px;
    width: 250px;
    transform: rotate(-8deg);
}

.contact-flower-bottom-right {
    bottom: 270px;
    right: -120px;
    width: 260px;
}

.contact-flower-bottom-left {
    bottom: 20px;
    left: -110px;
    width: 250px;
    transform: rotate(-8deg);
}

/* TABLETTE */
@media (max-width: 900px) {
    .contact-section h1,
    .contact-section h2 {
        font-size: 42px;
    }

    .contact-infos {
        gap: 45px;
    }

    .contact-map-image {
        max-width: 390px;
    }

    

    .contact-flower-top-right {
        width: 200px;
        right: -70px;
    }

    .contact-flower-left-middle {
        width: 180px;
        left: -75px;
    }

    .contact-flower-bottom-right {
        width: 190px;
        right: -75px;
    }

    .contact-flower-bottom-left {
        width: 180px;
        left: -75px;
    }
}

/* MOBILE */
@media (max-width: 700px) {
    .contact-page {
        padding: 20px 18px 70px;
    }

    .contact-section h1,
    .contact-section h2 {
        font-size: 38px;
    }

    .contact-section h1 {
        margin-bottom: 28px;
    }

    .contact-section h2 {
        margin-top: 34px;
        margin-bottom: 14px;
    }

    .contact-infos {
        gap: 28px;
        margin-bottom: 34px;
    }

    .contact-item img {
        width: 34px;
        height: 34px;
    }

    .contact-item span {
        font-size: 14px;
    }

    .contact-access-grid {
        gap: 22px;
        margin-bottom: 50px;
    }

 .contact-map-image {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

    .contact-map-block p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.25;
    }


    .contact-hours p {
        font-size: 15px;
    }

    .contact-flower-top-right,
    .contact-flower-left-middle,
    .contact-flower-bottom-right,
    .contact-flower-bottom-left {
        display: none;
    }
}