/*=========================== 
Google Font Link
=============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/*=========================== 
CSS Reset
=============================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    color: #000;
    overflow-x: hidden;
}
section{
    padding: 80px 0;
}
h1{font-size: 60px;}
h2{font-size: 36px;}
h3{font-size: 25px;}
h4{font-size: 20px;}
h5{font-size: 18px;}
h6{font-size: 16px;}

h2,h3,h4,h5{
    color: black;
}

/*=========================== 
Reusable Classes
=============================*/

/* Colors */
:root{
    --deep-brown: #9B4922;
    --light-brown: #9B4922;
}
/* Logo */
.logo{
    text-decoration: none;
    color: white;
    font-size: 2rem;
}
.logo:hover{
    color: white;
}
.logo .img-box{
    width: 2.25rem;
}

/* Social Links */
.social-links ul{
    list-style: none;
}
.social-links ul li{
    border-radius: 5px;
    background-color: #E29578;
    padding: 20px;
    cursor: pointer;
    margin: 0 5px;
    position: relative;
}
.social-links ul li a .icon{
    text-decoration: none;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.social-links ul li:hover{
    background-color: var(--light-brown);
}

/* Overlay */
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Buttons */
.button-1 a{
    font-size: 18px;
    border: 2px solid var(--deep-brown);
    border-radius: 30px;
    color: white;
    background-color: transparent;
    font-weight: 500;
}
.button-1 a:hover{
    background-color: var(--deep-brown);
    color: white!important;
    border-color: var(--deep-brown)!important;
}
.button-2 a{
    font-size: 18px;
    border: 2px solid var(--deep-brown);
    border-radius: 30px;
    color: white;
    background-color: var(--deep-brown);
    font-weight: 500;
}
.button-2 a:hover{
    background-color: transparent;
    color: var(--deep-brown)!important;
    border-color: var(--deep-brown)!important;
}

.button-3 a{
    font-size: 18px;
    border: 2px solid #E29578;
    border-radius: 30px;
    color: white;
    background-color: #E29578;
    font-weight: 500;
}
.button-3 a:hover{
    background-color: transparent;
    color: #E29578 !important;
    border-color: #E29578 !important;
}


/* Section Title */
.section-title h2{
    font-weight: 700;
    padding-bottom: 40px;
}
.section-title p{
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}
.section-title p::after{
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--deep-brown);
    margin: 4px 10px;
}

/* Card */
.card{
    border-color: var(--deep-brown);
    border-radius: 30px;
}

/*=========================== 
Navbar
=============================*/
.navbar{
    background-color: #fff;
}
.navbar-nav .nav-item{
    margin: 5px 0.75rem;
}
.navbar-nav .nav-item .nav-link{
    font-size: 16px;
    text-decoration: none;
    color: #E29578;
    font-weight: 500;
}
.navbar-nav .nav-item .nav-link:hover{
    color: var(--light-brown);
}
.navbar .menu-icon{
    color: #E29578;
    font-size: 2.25rem;
}
.navbar-collapse.show .social-links{
    padding-bottom: 1rem;
}

/* Taille normale de la boîte du logo */
.navbar-brand .img-box {
    width: 100px;     /* taille structurelle — ne touche pas à la hauteur navbar */
    height: 70px;
    overflow: visible; /* pour éviter que le zoom coupe l’image */
}

/* Zoom du logo sans changer la navbar */
.navbar-brand .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2.2);  /* 🔥 augmente/diminue ici */
    transform-origin: center center;
}

/*=========================== 
Home
=============================*/
#home{
    height: 100vh;
    background-color: #FBE2C1;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
#home .home-content{
    position: relative;
    z-index: 2;
    padding-top: 50px;
}
#home .home-content h1{
    color: #E29578;
    font-weight: 700;
}
#home .home-content h4{
    color: #E29578;
    font-weight: 500;
    font-size: 24px;
}



/*=========================== 
About
=============================*/
#about .heading h3{
    font-weight: 600;
}
#about .sub-heading {
    font-style: italic;
}
#about .check-list{
    list-style: none;
    margin: 20px 0;
}
#about .check-list li p{
    margin-bottom: 5px;
}
#about .check-list li p .icon{
    margin-right: 5px;
    font-size: 25px;
    color: var(--deep-brown);
    transform: translateY(5px);
}

/*=========================== 
Achievements
=============================*/
#achievements{
    background-image: url(../Images/notremission.JPG);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding-top: 10vh;
    padding-bottom: 20vh;
}

#achievements .about-content {
    position: relative;
    z-index: 2;
}

#achievements .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#achievements .title h2{
    color: white;
}
#achievements .title p{
    color: #f3f3f3;
}
.achievement-box{
    position: relative;
    z-index: 2;
    margin-top: 20px;
}
.achievement-box h2{
    color: var(--light-brown);
    font-size: 40px;
    font-weight: 600;
}
#achievements .heading h3{
    font-weight: 600;
    color: #fff;
}


@media (max-width: 768px) {

    #achievements {
        /* On zoome plus dans l'image et on se décale vers la zone orange */
        background-size: 220%;           /* augmente le zoom si besoin (200–260%) */
        background-position: left center;/* focus côté orange de l'image */
        padding-top: 8vh;
        padding-bottom: 8vh;
    }

    #achievements .about-content {
        /* on large le texte et on évite qu'il soit collé aux bords */
        max-width: 100%;
    }

    #achievements .sub-heading {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    #achievements {
        /* On enlève l'image qui pose problème */
        background-image: none;
        background-color: #e59573; /* ta couleur orange/saumon */

        /* On donne plus de hauteur au bloc */
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    #achievements .sub-heading {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}




/* Section "À qui s’adressent nos formations ?" */
/* Section audience */
#audience {
    background: #fff;
}

.audience-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.audience-text {
    max-width: 750px;
    font-size: 0.95rem;
    color: #000;
    line-height: 1.6;
}

/* Valeurs */
.value-box {
    text-align: center;
    padding: 0 1rem;
}

.value-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
    filter: invert(33%) sepia(25%) saturate(900%) hue-rotate(345deg) brightness(85%) contrast(90%); /* couleur brun JVL */
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 6px;
    color: #000; /* brun JVL */
}

.value-text {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.5;
}


/* Responsive */
@media (max-width: 768px) {
    .audience-title {
        font-size: 1.5rem;
    }

    .audience-text {
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .value-icon {
        width: 50px;
    }

    .value-title {
        font-size: 1rem;
    }
}






/*===========================
 Je Vous Love
===========================*/
#jevouslove {
    background-image: url(../Images/jevouslove.JPG); /* beige / peau clair comme ton screen */
    padding: 5rem 0 5rem;
    position: relative;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    background-size: cover;
    padding-top: 25vh;
    padding-bottom: 25vh;

}

/* Titre + texte du haut */
.jevouslove-header {
    margin-bottom: 3rem;
}

.jevouslove-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #b55a2b; /* adapte à ta couleur JVL */
    margin-bottom: 0.75rem;
}

.jevouslove-subtitle {
    font-size: 0.95rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

/* Cartes */
.love-card {
    background: transparent;
    border: none;
}

.love-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.love-body {
    background: #ffffff;
    border-radius: 0 0 18px 18px;
    padding: 1.5rem 1.6rem 1.7rem;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.love-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b55a2b; /* brun JVL */
    margin-bottom: 0.75rem;
}

.love-list {
    padding-left: 1.1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #444;
}

.love-list li {
    margin-bottom: 0.35rem;
}

.love-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #7a5035;
    margin-bottom: 0.75rem;
}

.love-text-bottom {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    #jevouslove {
        padding: 3.5rem 0 4rem;
    }
    
    .love-img img {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .jevouslove-title {
        font-size: 1.5rem;
    }

    .jevouslove-subtitle {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .love-body {
        padding: 1.3rem 1.2rem 1.5rem;
    }
}


/* Version mobile pour la section Je Vous Love */
@media (max-width: 768px) {
    #jevouslove {
        padding-top: 13rem;      /* pousse tout le contenu vers le bas */
        padding-bottom: 10rem;
    }

    .jevouslove-header {
        padding: 0 1.5rem;      /* évite que le texte touche les bords */
        text-align: center;
    }

    .jevouslove-title {
        font-size: 1.6rem;      /* un peu plus petit qu’en desktop */
        margin-bottom: 1rem;
    }

    .jevouslove-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Conteneur des cartes = même hauteur */
.love-row {
    display: flex;
    align-items: stretch;
}

/* Cartes = prennent toute la hauteur disponible */
.love-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Le contenu du bas s'étire pour uniformiser */
.love-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Le texte du bas reste en bas de la carte */
.love-text-bottom {
    margin-top: auto;
}



/* Section Ateliers / Formations */
#atelier {
    background-color: #ffffff;
}

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

.atelier-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.atelier-list {
    padding-left: 1.1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #333;
}

.atelier-list li {
    margin-bottom: 0.4rem;
}




/* Responsive */
@media (max-width: 768px) {
    .atelier-title {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .atelier-btns .btn {
        display: inline-block;
        margin-bottom: 0.5rem;
    }
}


/*=========================== 
Services
=============================*/
.service-card{
    margin-bottom: 15px;
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
    height: 80%;
}
.service-card .icon-box .icon{
    color: var(--deep-brown);
    float: left;
    font-size: 50px;
    transform: translate(20px, 10px);
}
.service-card .card-title{
    font-weight: 600;
    transition: color 0.3s ease-in-out;
    color: var(--deep-brown);
}
.service-card .card-text{
    font-size: 15px;
}
.service-card:hover{
    transform: translateY(-3%);
    border-bottom-color: var(--deep-brown);
}



/* Témoignages */
#temoignage {
    background-color: #ffffff;
}

.testi-overline {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: none;
    color: #000;
}

.testi-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.testi-title span {
    font-weight: 800;
}

.testi-text {
    max-width: 700px;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
}

.testi-name {
    font-size: 1rem;
    font-weight: 600;
    color: #b2653a; /* brun JVL */
    margin-bottom: 0.5rem;
}

/* Flèches */
#testiCarousel .carousel-control-prev,
#testiCarousel .carousel-control-next {
    width: 5%;
    opacity: 1;
}

.testi-arrow {
    font-size: 1.5rem;
    color: #d0d0d0;
}

#testiCarousel .carousel-control-prev:hover .testi-arrow,
#testiCarousel .carousel-control-next:hover .testi-arrow {
    color: #b2653a;
}

/* Points */
#testiCarousel .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #d0d0d0;
}

#testiCarousel .carousel-indicators .active {
    background-color: #b2653a;
}

/* Responsive */
@media (max-width: 768px) {
    .testi-title {
        font-size: 1.5rem;
    }

    .testi-text {
        font-size: 0.9rem;
        max-width: 90%;
    }
}


/* Ajoute de l'espace entre le nom et les indicateurs */
.testi-name {
    margin-bottom: 1.5rem; /* augmente si besoin */
}

/* Baisse un peu les indicateurs */
#testiCarousel .carousel-indicators {
    margin-top: 1.2rem;  /* crée de l'espace vertical */
    position: relative;  /* empêche le chevauchement */
}



/*=========================== 
Testimonials
=============================*/
#testimonials{
    background-image: url(/Images/Review-Bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.review-box .img-wrapper{
    width: 6rem;
    margin-bottom: 20px;
}
.review-box .img-wrapper img{
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}
.review-box h4{
    color: white;
    font-weight: 500;
}
.review-box span{
    color: #ddd;
    font-weight: 400;
    font-size: 15px;
    margin: 0 0 30px 0;
}
.review-box p{
    margin: 0 auto 75px auto;
    color: #eee;
    width: 65%;
    font-weight: 300;
}
.review-box p .icon{
    transform: translateY(-2px);
}

/*=========================== 
Team
=============================*/
#team{
    padding-bottom: 0;
    background-color: #f9f9f9;
}
#team .team-card{
    margin-bottom: 10px;
}
#team .team-card .member-img{
    position: relative;
}
#team .team-card .member-img .social-links{
    position: absolute;
    right: 0;
    top: 30px;
    transition: all 0.3s ease;
    opacity: 0;
}
#team .team-card .member-img .social-links ul li{
    padding: 15px;
    margin-bottom: 15px;
}
#team .team-card:hover .social-links{
    right: 10px;
    opacity: 1;
}
#team .team-card h5{
    font-weight: 700;
}
#team .team-card p{
    font-size: 14px;
}

/*=========================== 
Contact
=============================*/
#contact {
    background-color: #f5f5f5; /* fond gris clair */
    padding: 4rem 0;
}

/* Titre */
.contact-overline {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.contact-title {
    font-size: 1.9rem;
    font-weight: 600;
}

/* Carte du formulaire */
.contact-card {
    background-color: #ffffff;
    border-radius: 22px;
    padding: 3rem 3.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

/* Champs */
.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: #b2653a;      /* ta couleur brune */
    outline: none;
    box-shadow: 0 0 0 0.1rem rgba(178, 101, 58, 0.15);
}

/* Button .button-2 déjà utilisé sur ton site */
#contact .button-2 .btn {
    border-radius: 999px;
    background-color: #b2653a;  /* brun JVL */
    color: #fff;
    border: none;
}

#contact .button-2 .btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 2.2rem 1.5rem;
        border-radius: 18px;
    }
}
/*=========================== 
Footer
=============================*/
#footer {
    background-color: #061218;
}

/* Fond principal */
.footer-top {
    padding: 60px 0 40px;
    background-color: #17333f; /* bleu-vert foncé */
}

/* Carte centrale */
.footer-card {
    background-color: #0c1f26;   /* bloc plus foncé */
    padding: 40px 100px 30px;
    border-radius: 4px;
    max-width: 420px;
    margin: 0 auto;
    color: #f5f5f5;
    border-top: 3px solid #2fd3c5; /* petite ligne turquoise en haut */
}

/* Logo */
/* conteneur du logo */
.footer-logo {
    width: 120px;          /* taille du conteneur */
    height: 80px;          /* ajuste si tu veux moins de hauteur */
    margin: 0 auto 10px;   /* centrage + petit espace sous le logo */
    overflow: visible;     /* essentiel pour éviter le crop */
    line-height: 0;        /* enlève l'espace blanc sous le SVG */
}

/* zoom du logo interne */
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2.4);    /* 🔥 AJUSTE ICI pour agrandir / réduire */
    transform-origin: center; /* centre le zoom */
    display: block;           /* enlève l’espace blanc par défaut */
    padding: 0;
    margin: 0;
}

/* Texte contact */
.footer-card p {
    font-size: 0.95rem;
}

/* Réseaux sociaux */
.footer-social ul {
    list-style: none;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: #2fd3c5;
    color: #0c1f26;
    font-size: 1.2rem;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 0.9;
}

/* Liens légaux */
.footer-links-legal {
    margin-top: 10px;
}

.footer-link {
    color: #f5f5f5;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Footer bas */
.footer-bottom {
    background-color: #08161c;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #f5f5f5;
}

.footer-bottom-link {
    color: #2fd3c5;
    text-decoration: none;
}

.footer-bottom-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .footer-card {
        padding: 30px 25px 25px;
        max-width: 90%;
    }
}


/* === 1. Sections qui apparaissent en douceur === */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === 2. Hero “Juste. Vrai. Libre.” qui arrive en douceur === */
.hero-enter {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-enter-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === 3. Pulsation douce du bouton (au hover) === */
.btn-soft-pulse {
    animation: btnSoftPulse 0.6s ease-out forwards;
}

@keyframes btnSoftPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
    100% { transform: scale(1); box-shadow: none; }
}

/* === 4. Micro wiggle chaleureux sur les cartes === */
.card-wiggle {
    animation: cardWiggle 0.4s ease-out;
}

@keyframes cardWiggle {
    0%   { transform: translateY(0); }
    20%  { transform: translateY(-4px); }
    40%  { transform: translateY(0); }
    60%  { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

/* === 5. Cœurs flottants dans Je Vous Love === */
#jevouslove {
    position: relative; /* pour positionner les cœurs dedans */
    overflow: hidden;   /* qu’ils ne débordent pas trop */
}

.floating-heart {
    position: absolute;
    font-size: 1.1rem;
    color: #d97a4a;
    opacity: 0;
    animation: heartFloat 3s ease-out forwards;
    pointer-events: none;
}

@keyframes heartFloat {
    0%   { transform: translateY(0) scale(0.8); opacity: 0; }
    10%  { opacity: 1; }
    60%  { opacity: 1; }
    100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

/* === 6. Navbar ombrée au scroll === */
.navbar-scrolled {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background-color: #ffffffee; /* léger fond blanc pour plus de lisibilité */
    backdrop-filter: blur(4px);
}



/* ===== Section About style "bloc texte centré" ===== */
#about {
    background-color: #ffffff;
}



.about-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-intro,
.about-outro {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}



/* on garde les listes alignées à gauche pour la lisibilité */
.about-list li {
    margin-bottom: 0.4rem;
}



/*===========================
  Section Ateliers (fond vague)
===========================*/
#ateliers-wave {
    background-image: url(../Images/roseback.JPG); /* ton image de fond avec la vague */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 20vh;
    padding-bottom: 20vh;
    color: #fff;
}

/* Titre + intro */
.ateliers-wave-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
}

.ateliers-wave-subtitle {
    max-width: 700px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Cartes */
.ateliers-wave-card {
    background: transparent;
    border-radius: 16px;
    padding: 1.5rem 2rem 2.2rem;
    text-align: center;
    
}

.ateliers-wave-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.ateliers-wave-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.ateliers-wave-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
    #ateliers-wave {
        padding: 4rem 0 4.5rem;
    }

    .ateliers-wave-title {
        font-size: 1.6rem;
    }

    .ateliers-wave-subtitle {
        max-width: 90%;
        font-size: 0.9rem;
    }

    .ateliers-wave-card {
        padding: 1.5rem 1.4rem 2rem;
    }
}



/*===========================
  Fiches de révisions
===========================*/
#ebooks h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Carte globale (cliquable) */
.ebook-card {
    margin: 0 auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


/* Couverture */
.ebook-cover {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.ebook-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Texte sous la couverture */
.ebook-info {
    text-align: left;
}

.ebook-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.ebook-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0643b; /* ton orange / rouille JVL */
}

/* Responsive : un peu plus large sur mobile */
@media (max-width: 576px) {
    .ebook-card {
        max-width: 260px;
    }
}



/*===========================
  Page produit Ebook
===========================*/
#product {
    background-color: #ffffff;
}



#product .product-cover {
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: block;
}

/* Texte produit */
#product .product-content {
    font-size: 0.95rem;
}

#product .product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

#product .product-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e0643b; /* ta couleur prix / accent */
    margin-bottom: 1rem;
}

#product .product-label {
    margin-bottom: 0.3rem;
}

#product .product-text {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Bouton Commander – on réutilise ton style .button-2 */
#product .button-2 .btn {
    border-radius: 999px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
    
/* Responsive */
@media (max-width: 768px) {
    #product .product-title {
        font-size: 1.1rem;
        text-align: left;
    }
    
    #product .product-content {
        margin-top: 0.5rem;
    }
}


/* État avant apparition */
.js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Quand l’élément devient visible */
.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
