/* =======================================
   RESET & BASE
======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #000;
    font-family: 'Bodoni Moda', serif;
    font-weight: 300;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(90%, 1200px);
    margin: auto;
}

/* =======================================
   TYPO
======================================= */
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
}

h2, h3 {
    font-weight: 600; /* ou 600 si tu veux plus marqué */
}


/* =======================================
   HEADER (non modifié)
======================================= */
.header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.3rem 0;
    position: relative;
    gap: 12rem;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 4rem;
}

.nav a {
    color: #000;
    font-size: 1.3rem;
    transition: 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #0F1031;
}

.nav a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    left: 0;
    bottom: -4px;
    background-color: #0F1031;
    transition: width 0.3s;
}

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

.nav-logo img {
    height: 320px;          /* taille VISUELLE réelle de ton logo */
    width: auto;
    object-fit: contain;

    /* Fix Safari : empêche compression/étirement */
    max-height: none !important;
    transform: none !important;
    -webkit-transform: none !important;

    margin-top: 40px;   /* ↓ descend légèrement le logo */
}

.nav {
    height: 90px;           /* garde le même header visuellement */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12rem;
}
.nav-logo img {
    -webkit-transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
}



/* =======================================
   MENU MOBILE
======================================= */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.burger span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.burger.active span {
    background: #0F1031;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 80%, #e9ebff 100%);
    padding: 6rem 2rem;
    padding-top: 10rem !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: right 0.4s;
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 998;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-logo {
    width: 150px;
    margin: 2rem auto 1rem auto;
    margin-top: 0.1rem;
    display: none;
    animation: float 4s ease-in-out infinite;
}

/* Animation logo mobile */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.mobile-menu a {
    font-size: 1.6rem;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: 0.6px;
    text-align: center;
    position: relative;
    padding-bottom: 6px; /* espace pour le soulignement */
}

/* ---- Soulignement élégant ---- */
.mobile-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #01001E;
    border-radius: 10px;
    opacity: 0.5;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.mobile-menu a:hover::after {
    width: 70%;
    opacity: 0.8;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 3rem;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* =======================================
   HERO
======================================= */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.slide-track img {
    height: 60vh;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 10;
    color: #fff;
    text-shadow: 0 0 12px rgba(0,0,0,0.5);
}

/* =======================================
   CONVERSION
======================================= */
.conversion {
    text-align: center;
    padding: 4rem 0;
}

.conversion p {
    margin: 1rem 0 2rem;
}

/* Bouton DEMANDER UN DEVIS */
.btn-primary {
    background: #01001E;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 2px;
    border: 1px solid #01001E;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

/* Effet hover élégant : fond blanc + texte bleu */
.btn-primary:hover {
    background: #ffffff;
    color: #01001E;
    box-shadow: none;
}



/* =======================================
   A PROPOS (fond gris/bleu léger)
======================================= */
.about {
    background: #f6f8ff;
    padding: 5rem 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text p {
    margin: 1.2rem 0 2rem;
}

.btn-secondary {
    border: 1px solid #01001E;
    padding: 0.8rem 1.6rem;
    color: #01001E;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #01001E;
    color: #fff;
}

/* =======================================
   SERVICES PHOTO
======================================= */
.services-photo {
    text-align: center;
    padding: 5rem 0;
}

/* Espace entre description et les 3 blocs */
.services-photo p {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Image des blocs */
.service-img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 3px;
    transition: 0.3s;
}

.service-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-img:hover {
    box-shadow: 0 0 22px rgba(0,0,0,0.28);
    filter: brightness(1.04);
}

/* Titre stylisé sous chaque image */
.service-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 2px;
    background: #01001E;
    border-radius: 10px;
    opacity: 0.6;
}

/* Bouton "En savoir plus" */
.services-more {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.services-more-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    background: #ffffff;
    color: #01001E;
    border: 1px solid #01001E;
    transition: 0.3s ease;
}



/* =======================================
   FOOTER (NOUVEAU STYLE)
======================================= */
.footer {
    background: #01001E;
    color: white;
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: 4rem;
}

.footer-links,
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer a {
    color: white;
}

.footer a:hover {
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* =======================================
   COOKIES
======================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #01001E;
    color: #fff;
    padding: 1.2rem;
    text-align: center;
    display: none;
    z-index: 9999;
}

.cookie-buttons button {
    margin: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #01001E;
    border-radius: 4px;
}

/* ====================================================
   COOKIE BANNER — Style premium
==================================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 620px);
    background: #ffffff;
    color: #01001E;
    padding: 1.4rem 1.8rem;
    border-radius: 3px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 9999;
    display: none;

    animation: fadeUp 0.45s ease-out;
}

.cookie-banner p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1rem;
}

/* Boutons */
.cookie-buttons button {
    padding: 0.65rem 1.3rem;
    border-radius: 3px;
    border: 1px solid #01001E;
    background: #fff;
    cursor: pointer;
    transition: 0.25s;
    font-size: 0.95rem;
    margin: 0 0.3rem;
}

#cookie-accept-all {
    background: #01001E;
    color: #fff;
}

#cookie-accept-all:hover {
    background: #1a1a3a;
}

#cookie-decline-all:hover,
#cookie-customize:hover {
    background: #f2f2f7;
}

/* Animation légère */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
@media (max-width: 600px) {
    .cookie-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem; /* espace entre les boutons */
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}


/* ====================================================
   MODAL — Style premium
==================================================== */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    background: #ffffff;
    padding: 2.2rem;
    border-radius: 6px;
    width: min(90%, 420px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.17);
    animation: pop 0.25s ease-out;
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-content h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #01001E;
}

.cookie-modal-content label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.6rem 0;
    font-size: 1rem;
}

.cookie-modal-content input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* Bouton enregistrer */
.cookie-modal-buttons button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem 0;
    background: #01001E;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.25s;
    font-size: 1.05rem;
}

.cookie-modal-buttons button:hover {
    background: #1a1a3a;
}


/* =======================================
   ANIMATIONS
======================================= */
.reveal-up, .reveal-left {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    transform: translateX(-40px);
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* =======================================
   PORTFOLIO – HERO
======================================= */

.portfolio-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative; /* nécessaire pour les décorations */
}

.portfolio-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.portfolio-hero p {
    font-size: 1.2rem;
    color: #444;
}

.hidden-title {
    position: absolute;
    left: -9999px;
}

.portfolio-frame {
    position: relative;
    overflow: visible;
    z-index: 2; /* passer au-dessus des décorations */
}

/* =======================================
   Décorations gauche / droite du HERO
======================================= */
.portfolio-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
}

.portfolio-deco img {
    height: 300px;  /* ajuste selon ta déco */
    width: auto;
}

/* Gauche */
.portfolio-deco.left {
    left: 10%;   
}

/* Droite */
.portfolio-deco.right {
    right: 10%;
}

/* Mobile → on masque les décorations */
@media (max-width: 800px) {
    .portfolio-deco {
        display: none;
    }
}

/* ===================== PORTFOLIO — GALERIES ===================== */

.portfolio-section {
  background-color: #ffffff;       /* ✔ fond blanc */
  padding: 60px 20px;
  text-align: center;
}

.portfolio-section h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #000;                     /* ✔ texte noir sur fond blanc */
}


/* ===================== GALERIE MOSAÏQUE OPTIMISÉE ===================== */

.portfolio-gallery {
    background: #ffffff;
    padding: 40px 0;
}

.gallery {
    column-count: 4;
    column-gap: 6px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

/* ---- Base image ---- */
.gallery img {
    width: 100%;
    height: auto;
    margin: 0 0 6px;
    display: block;
    break-inside: avoid;
    border-radius: 3px;

    object-fit: contain;
    background: #f8f8f8;

    /* Effet charge progressive */
    filter: blur(8px);
    transform: scale(1.02);
    opacity: 0;

    transition:
        opacity .4s ease,
        filter .5s ease,
        transform .5s ease,
        box-shadow .3s ease;
}

/* ---- Lorsque l'image est chargée ---- */
.gallery img.loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Hover premium */
.gallery img.loaded:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    position: relative;
    z-index: 5;
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
    .gallery { column-count: 3; }
}
@media (max-width: 700px) {
    .gallery { column-count: 2; }
}
@media (max-width: 480px) {
    .gallery { column-count: 1; }
}

/* Safari iOS — fonctionne sur iPhone/iPad */
@supports (-webkit-touch-callout: none) {
    .gallery img,
    .gallery img:hover,
    .gallery img.loaded:hover {
        pointer-events: none !important;
        transform: none !important;
        box-shadow: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* Safari macOS (hack fiable mais léger) */
_::-webkit-full-page-media, _:future, :root .gallery img {
    filter: none !important;
    transform: none !important;
    box-shadow: none !important;
    transition: opacity .3s ease !important;
}




/* ===================== LIGHTBOX ===================== */
.lightbox-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
    font-size: 38px;
    color: white;
    cursor: pointer;
    padding: 10px 18px;
    background: rgba(0,0,0,0.35);
    border-radius: 2px;
    user-select: none;
    transition: 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
    background: rgba(0,0,0,0.35);
    padding: 6px 12px;
    border-radius: 2px;
    z-index: 999999;
}

.lightbox-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-wrapper img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
}

.basicLightbox__placeholder {
    backdrop-filter: blur(14px) brightness(0.4);
    -webkit-backdrop-filter: blur(14px) brightness(0.4);
}


/* =========================
   HERO PORTFOLIO ENCADRÉ — VERSION COMPACTE
========================= */

.portfolio-hero {
    padding: 3.5rem 1rem 3rem; /* ↓ Hero plus petit */
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 80%);
}

.portfolio-frame {
    border: 1px solid rgba(0,0,0,0.15);
    padding: 2.2rem 2.8rem; /* ↓ Moins d’espace interne */
    text-align: center;
    max-width: 650px;       /* ↓ Encadré plus compact */
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.03);
}

.portfolio-frame h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-bottom: 0.6rem;
}

.portfolio-frame p {
    font-size: 1rem;
    color: #555;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Mobile */
@media (max-width: 600px) {
    .portfolio-frame {
        padding: 1.8rem 1.3rem;
    }

    .portfolio-frame h1 {
        font-size: 2rem;
    }
}

/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 850px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .burger {
        display: flex;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-logo {
        display: block;
    }

    .mobile-menu {
        align-items: center;
    }
}
/* Bouton about : desktop / mobile */
.btn-about-mobile {
    display: none;
}

/* Mobile : on met le bouton sous l'image */
@media (max-width: 850px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    /* Bouton dans le texte : caché en mobile */
    .btn-about-desktop {
        display: none;
    }

    /* Bouton sous l'image : visible en mobile */
    .btn-about-mobile {
        display: inline-block;
        margin-top: 1.5rem;
    }
}
@media (max-width: 850px) {
    .about-container {
        gap: 1rem; /* ↓ Réduit l’espace texte → image */
    }
}
@media (max-width: 850px) {
    .services-photo p {
        margin-bottom: 2.5rem;
    }
}
@media (max-width: 850px) {
    .services-grid .service-img {
        width: 85%;   /* ↓ réduction proportionnelle */
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .services-grid .service-img {
        width: 90%;   /* encore un peu plus petit */
    }
}
/* FORCE le bon espacement du bouton services */
.services-more {
    margin-top: 0.5rem !important;
    margin-bottom: 0.3rem !important;
}

/* Réduit l'espace sous la section services */
.services-photo {
    padding-bottom: 1.5rem !important;
}

/* Remonte le footer */
.footer {
    margin-top: 0.8rem !important;
}
@media (max-width: 1024px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 1024px) {
    .gallery img {
        filter: none !important;
        transform: none !important;
    }
}
@media (max-width: 600px) {
    .gallery img {
        filter: none !important;
        transform: none !important;
    }
}

/* =======================================
   PAGE SERVICES – HERO
======================================= */

.services-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 80%);
    padding: 4.5rem 1rem 3.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.services-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-inner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.services-hero-inner p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* =======================================
   PAGE SERVICES – OFFRES PRINCIPALES
======================================= */

/* Centrage du bloc */
.services-offers {
    text-align: center;
}

/* Titre */
.services-offers h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    font-family: 'Bodoni Moda', serif;
    margin-bottom: 1.2rem;   /* ← espace entre le h2 et le texte */
}

/* Soulignage fin centré */
.services-offers h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 45%;
    height: 2px;
    background: #01001E;
    border-radius: 10px;
    opacity: 0.6;
}

.services-offers-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.services-offers-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

/* Card générale */
.service-card {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: 1.8rem 1.8rem;
}

/* IMAGE */
.service-card-image {
    flex: 1.1;
    overflow: hidden;
    border-radius: 3px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    text-align: center;
}

/* CONTENU */
.service-card-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    justify-content: center;
    text-align: center; /* ← CENTRAGE GLOBAL */
}

.service-card-content h3 {
    font-size: 1.5rem;
    letter-spacing: 0.6px;
}

.service-card-content p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #444;
}

/* LISTE À PUCES */
.service-card-list {
    list-style: none;
    padding-left: 0;
    margin: 0.3rem 0 0.8rem;
}

.service-card-list li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.service-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #01001E;
    font-size: 1rem;
}

/* CTA (bouton) */
/* CTA (bouton) — version réduite */
.service-card-cta {
    display: inline-block;
    padding: 0.55rem 1.2rem;   /* ← plus petit */
    font-size: 0.9rem;         /* ← texte plus fin */
    max-width: 180px;          /* ← largeur max réduite */
    width: auto;
    margin: 1rem auto 0;
    border-radius: 2px;        /* ← style premium fin */
}

/* HOVER */
.service-card:hover .service-card-image img {
    transform: scale(1.04);
}

/* Alternance gauche / droite */
.service-card:nth-child(even) {
    flex-direction: row-reverse;
}
/* Liste sans puces */
.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0.8rem;
}

/* Chaque ligne */
.service-card-list li {
    padding-left: 0;      /* plus de décalage */
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Supprime totalement le "•" */
.service-card-list li::before {
    content: none;
}


/* =======================================
   PAGE SERVICES – DÉROULEMENT SÉANCE
======================================= */

.services-process {
    background: #f6f8ff;
    padding: 4rem 0 4rem;
}

.services-process-inner {
    max-width: 900px;
    margin: 0 auto;
}

.services-process-inner h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-steps {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 3rem;
}

.process-steps li h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.process-steps li p {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #495057;
}

/* =======================================
   PAGE SERVICES – INFOS PRATIQUES
======================================= */

.services-infos {
    padding: 3.5rem 0 3.5rem;
}

.services-infos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.info-block {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 1.6rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* =======================================
   PAGE SERVICES – CTA FINAL
======================================= */

.services-cta {
    background: radial-gradient(circle at top, #f6f8ff 0, #ffffff 55%);
    padding: 4rem 0 4.2rem;
    text-align: center;
}

.services-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.services-cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.services-cta-inner p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.8rem;
}

/* =======================================
   RESPONSIVE – SERVICES
======================================= */

@media (max-width: 1000px) {
    .services-offers {
        padding-top: 3.5rem;
    }
    .service-card {
        padding: 1.6rem 1.4rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .service-card {
        flex-direction: column;
    }
    .service-card:nth-child(even) {
        flex-direction: column;
    }
    .service-card-image {
        max-height: 260px;
    }
    .services-infos-grid {
        grid-template-columns: 1fr;
    }
    .services-hero-inner h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 3.5rem 1rem 3rem;
    }
    .services-hero-inner p {
        font-size: 0.95rem;
    }
    .services-offers-intro,
    .services-cta-inner p {
        font-size: 0.95rem;
    }
    .service-card {
        padding: 1.4rem 1.2rem;
        gap: 1.4rem;
    }
    .services-process {
        padding: 3.2rem 0 3.2rem;
    }
}
/* =======================================
   HERO SERVICES — VERSION ENCADRÉE
======================================= */

.services-hero {
    padding: 4rem 1rem 3rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 80%);
    display: flex;
    justify-content: center;
}

.services-hero-frame {
    border: 1px solid rgba(0,0,0,0.15);
    background: #fff;
    padding: 2.5rem 3rem;
    max-width: 650px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.03);
    z-index: 2;
}

.services-hero-frame h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 1.1px;
    margin-bottom: 0.6rem;
}

.services-hero-frame p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* =======================================
   Décorations gauche/droite
======================================= */

.services-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
}

.services-deco img {
    height: 280px;
    width: auto;
}

/* gauche */
.services-deco.left {
    left: 10%;
}

/* droite */
.services-deco.right {
    right: 10%;
}

/* supprimer en mobile */
@media (max-width: 800px) {
    .services-deco {
        display: none;
    }
}

/* Responsive encadré */
@media (max-width: 600px) {
    .services-hero-frame {
        padding: 1.8rem 1.3rem;
    }
    
    .services-hero-frame h1 {
        font-size: 2.1rem;
    }
}
/* =======================================
   DÉROULEMENT — Grille RECTANGLES élégants
======================================= */

.session-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    justify-items: center;
    max-width: 950px;
    margin: 2.5rem auto 0;
}

/* ========= RECTANGLES ÉLÉGANTS ========= */
.flow-box {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 2rem 1.6rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);

    width: 100%;
    max-width: 580px;    /* rectangle plus large */
    min-height: 230px;   /* ↓ hauteur contrôlée */

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;

    transition: transform .25s ease, box-shadow .25s ease;
}

.flow-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

/* Numéro rond */
.flow-number {
    width: 46px;
    height: 46px;
    border: 2px solid #01001E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bodoni Moda', serif;
    font-size: 1.15rem;
    margin: 0 auto 0.6rem;
}

/* Titres */
.flow-box h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.25rem;
}

/* Texte */
.flow-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 0 0.6rem;
}

/* Responsive */
@media (max-width: 700px) {
    .session-flow-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .flow-box {
        max-width: 100%;
        min-height: auto;
        padding: 1.7rem 1.2rem;
    }
}
/* =======================================
   TITRE SECTION — Déroulement d'une séance
======================================= */

.title-section-seance {
    text-align: center;
    margin: 3rem auto 2rem;   /* espace autour */
}

.title-section-seance h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;          /* taille élégante */
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

/* Soulignage fin et centré */
.title-section-seance h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 45%;
    height: 2px;
    background: #01001E;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.5;
}

/* Mobile */
@media (max-width: 600px) {
    .title-section-seance h3 {
        font-size: 1.6rem;
    }
}
/* =======================================
   CONTACT — CARTE DE VISITE
======================================= */

.contact-card {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
}

.contact-card-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card-inner h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.contact-card-inner h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 45%;
    height: 2px;
    background: #01001E;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.6;
}

.contact-email {
    margin-top: 1.2rem;
    font-size: 1.05rem;
}

.contact-email a {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-subtext {
    margin-top: 0.6rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
}

/* =======================================
   CONTACT — FORMULAIRE
======================================= */

.contact-form-section {
    padding: 2rem 0 4rem;
}

.contact-form-section h2 {
    text-align: center;
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 45%;
    height: 2px;
    background: #01001E;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.6;
}

.contact-form {
    max-width: 780px;
    margin: 0 auto;
}

/* Lignes du formulaire */

.form-row {
    margin-bottom: 1.1rem;
}

.form-row.double {
    display: flex;
    gap: 1.5rem;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Labels + champs */

.form-field label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.18);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

/* Focus */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #01001E;
    box-shadow: 0 0 0 1px rgba(1,0,30,0.12);
    background: #fcfcff;
}

/* Checkbox RGPD */

.checkbox-row {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #444;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Bouton envoyer */

.contact-form .btn-primary {
    min-width: 160px;
}

/* Messages de feedback */

.form-message {
    display: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.form-message.success {
    color: #137333;
}

.form-message.error {
    color: #b00020;
}

/* =======================================
   CONTACT — RESPONSIVE
======================================= */

@media (max-width: 800px) {

    .contact-card {
        padding: 3rem 0 2.2rem;
    }

    .form-row.double {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 600px) {

    .contact-card-inner h2,
    .contact-form-section h2 {
        font-size: 1.7rem;
    }

    .contact-subtext {
        font-size: 0.94rem;
    }

    .contact-form {
        padding: 0 0.2rem;
    }
}
.privacy-link {
    color: #01001E;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.privacy-link:hover {
    opacity: 0.7;
}
/* Bouton envoyer (contact) */
.contact-form .btn-primary {
    margin-top: 1rem;             /* ↓ descendre le bouton */
    font-family: 'Bodoni Moda', serif; /* police premium */
}
.contact-form-section {
    padding: 2rem 0 4rem;
    background: #f6f8ff75; }/* fond bleu léger */

    /* =======================================
   POLITIQUE DE CONFIDENTIALITÉ – GLOBAL
======================================= */

.privacy {
    padding: 3rem 0 4rem;
    color: #000;
    line-height: 1.75;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

/* Soulignage élégant */
.privacy-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 2px;
    background: #01001E;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.65;
}

.privacy-section h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.3rem;
    margin: 1.2rem 0 0.5rem;
}

/* Texte */
.privacy-section p {
    color: #444;
    margin-bottom: 1rem;
}

.privacy-section ul {
    padding-left: 1.2rem;
    margin: 0.8rem 0 1.4rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* =======================================
   LIENS
======================================= */
.privacy-section a {
    color: #01001E;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.privacy-section a:hover {
    opacity: 0.7;
}

/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 700px) {
    .privacy {
        padding: 2rem 1rem 3rem;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section h3 {
        font-size: 1.15rem;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.95rem;
    }
}
/* =======================================
   MENTIONS LÉGALES – GLOBAL
======================================= */

.legal {
    padding: 3rem 0 4rem;
    color: #000;
    line-height: 1.75;
}

.legal-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 8px;
}

/* Soulignage premium du H1 */
.legal-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 55%;
    height: 2px;
    background: #01001E;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.6;
}

/* =======================================
   SECTIONS
======================================= */

.legal-section {
    margin-bottom: 2.8rem;
}

.legal-section h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
}

/* Soulignage fin sous les H2 */
.legal-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 45%;
    height: 2px;
    background: #01001E;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.55;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #444;
    font-size: 0.98rem;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.96rem;
}

/* =======================================
   LIENS
======================================= */
.legal-section a {
    color: #01001E;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.legal-section a:hover {
    opacity: 0.75;
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width: 800px) {
    .legal-title {
        font-size: 2.4rem;
    }

    .legal-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .legal {
        padding: 2rem 1rem 3rem;
    }

    .legal-title {
        font-size: 2.1rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.92rem;
    }
}
.nav a.active {
    color: #0F1031;
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
}

.img-contenu {
    width: 0%;   /* ajuste : 70%, 50%, 40%, etc. */
    height: auto;
    display: block;
    margin: 0 auto;
}
.service-card-image img[src="images/contenu.JPG"] {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.service-img img {
    object-fit: cover;
    object-position: center 15%; /* remonte l'image */
}

.service-card-image img.img-portrait-reduite {
    width: 65% !important;    /* réduit la largeur de l’image */
    height: auto !important;  /* pour ne pas l’écraser verticalement */
    display: block;
    margin: 0 auto;           /* pour la centrer */
    object-fit: contain;      /* évite le recadrage agressif */
}
/* Boutons des cartes services — version plus grande et élégante */

/* Boutons des cartes services — version flexible propre */
.service-card-cta {
    display: inline-block;
    white-space: nowrap;          /* empêche la ligne de se couper */
    padding: 0.9rem 2.4rem;       /* bouton plus long */
    font-size: 1.1rem;            /* texte plus grand */
    font-family: 'Bodoni Moda', serif;
    border-radius: 3px;
    max-width: none !important;   /* supprime la limite */
}

/* Bouton "En savoir plus" dans la section Services Photo */
.services-more-btn {
    background: #ffffff;        /* blanc au repos */
    color: #01001E;             /* bleu du site */
    border: 1px solid #01001E;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

/* HOVER : devient bleu avec texte blanc */
.services-more-btn:hover {
    background: #01001E;        /* bleu du site */
    color: #ffffff;             /* texte blanc */
}

/* Empêche TOUT agrandissement non voulu dans About */
.about-photo img {
    max-width: 1020px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


/* ============================================================
   SAFARI ULTRA-SAFE MODE (iOS + iPadOS + Safari Mac)
   1 seule colonne + pas d'animations + pas de masonry
============================================================ */

@supports (-webkit-touch-callout: none) {

    /* ----- Conteneur : une seule colonne propre ----- */
    .gallery {
        column-count: unset !important;    /* désactive masonry */
        column-gap: 0 !important;

        display: grid !important;
        grid-template-columns: 1fr !important;   /* 1 seule colonne */
        gap: 8px !important;
    }

    /* ----- Images : aucun effet, aucun transform ----- */
    .gallery img,
    .gallery img.loaded,
    .gallery img:hover {
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none !important;
        transition: none !important;
    }

    /* ----- Empêcher le GPU de surcharger → zéro crash ----- */
    .gallery img {
        content-visibility: auto !important;
        contain: content !important;
        contain-intrinsic-size: 900px auto !important;
        will-change: auto !important;
    }

    /* ----- Lightbox simplifiée pour éviter crash GPU ----- */
    .basicLightbox__placeholder {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(0,0,0,0.75) !important;
    }
}


