:root{
  --primary:#32BCED;
  --ink:#0F172A;
  --muted:#64748B;
  --line:#E6EDF3;
}

body{
    font-family: "Red Hat Text", sans-serif;
    margin-top:9rem!important;
}

/* nav */

.logo{
    width: 8rem;
    height: auto;
    transition: transform 0.3s ease;
}
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #D6EEF9 100%) !important;
    box-shadow: 0 4px 20px rgba(50, 188, 237, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(50, 188, 237, 0.1);
    padding: 0.75rem 0;
    font-family: "Red Hat Text", sans-serif;
    
}


.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #2d3748 !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: rgb(50, 188, 237) !important;
    background: rgba(50, 188, 237, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 188, 237, 0.2);
}

.navbar-toggler {
    border: 2px solid rgba(50, 188, 237, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(50, 188, 237, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2850, 188, 237, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    padding-top: 0.5rem;
}

.navbar-text {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-left: 1px solid rgba(50, 188, 237, 0.2);
}

.navbar-text a {
    color: rgb(50, 188, 237);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    position: relative; /* Pour positionner le texte */
}

.navbar-text a:hover {
    color: #ffffff;
    background: rgb(50, 188, 237);
    transform: scale(1.1);
}

/* NOUVEAU : Texte au hover */
.navbar-text a::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgb(50, 188, 237);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(50, 188, 237, 0.4);
}

.navbar-text a[href*="contact"]::after,
.navbar-text a:nth-child(1):hover::after {
    content: 'Contact';
}

.navbar-text a[href*="tools"]::after,
.navbar-text a:nth-child(2):hover::after {
    content: 'Outils';
}

/* Animation d'apparition */
.navbar-text a:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    bottom: -40px;
}



/* Responsive : sur mobile, ajustements */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        margin-top: 1rem;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar-text {
        border-left: none;
        border-top: 1px solid rgba(50, 188, 237, 0.2);
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

/* Animation d'apparition fluide */
.navbar-nav .nav-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* footer */
.footer-custom {
    font-size: 1.1rem;
}

/* Boutons newsletter */
.btn-newsletter {
    background: rgb(50,188,237) !important;
    border: none !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(50,188,237,0.25);
}

.btn-newsletter:hover {
    background: rgba(50,188,237,0.9) !important;
    box-shadow: 0 4px 14px rgba(50,188,237,0.35);
    color: #ffffff !important;
}

.btn-newsletter-secondary {
    background: rgba(50,188,237,0.08) !important;
    color: rgb(50,188,237) !important;
    border: 1px solid rgba(50,188,237,0.3) !important;
    box-shadow: none;
}

.btn-newsletter-secondary:hover {
    background: rgba(50,188,237,0.16) !important;
    box-shadow: 0 3px 10px rgba(50,188,237,0.25);
    color: rgb(50,188,237) !important;
}

/* Boutons réseaux sociaux */
.btn-social {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(50,188,237,0.3) !important;
    color: rgb(50,188,237) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease;
    font-size: 1.2rem;
}

.btn-social:hover {
    background: rgb(50,188,237) !important;
    border-color: rgb(50,188,237) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(50,188,237,0.35);
}

.btn-social:hover i {
    color: #ffffff !important;
}

/* Liens simples */
.footer-custom a:not(.btn):hover {
    color: rgb(50,188,237) !important;
}

/* Résumé (summary) style mobile */
.footer-summary {
    cursor: pointer;
    padding: 0.6rem 0;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.footer-summary::marker {
    content: "";
}

.footer-summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(50,188,237);
    font-weight: 700;
}

details[open] .footer-summary::after {
    content: "−";
}

/* Mobile */
@media (max-width: 991.98px) {
    .footer-custom {
        text-align: left;
    }

    .footer-mobile {
        margin-top: 1rem;
    }
}

/* Très petits écrans */
@media (max-width: 575.98px) {
    .footer-custom {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

/* accueil  */
 .hero-accueil {
    background: #E9F8FF;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-title {
    font-family: 'Red Hat Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.25;
    color: rgb(50, 188, 237);
    text-align: center;
}

.hero-text {
    font-family: 'Red Hat Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    color: #333333;
    text-align: center;
}

.hero-question {
    font-family: 'Red Hat Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: rgb(50, 188, 237);
    text-align: center;
}


.hero-cta {
    background: rgb(50,188,237);
    border: none;
    padding-inline: 2.2rem;
    box-shadow: 0 6px 18px rgba(50,188,237,0.35);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background: rgba(50,188,237,0.9);
    box-shadow: 0 10px 28px rgba(50,188,237,0.45);
    transform: translateY(-2px);
} 

 @media (max-width: 991.98px) {
    .hero-title {
        text-align: center;
        font-size: 1.8rem;
        margin-top: 1rem;
    }

    .hero-text,
    .hero-question {
        text-align: center;
    }

    .hero-cta {
        display: block;
        margin: 1rem auto 0;
    }

    .hero-accueil {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}
.accueil-landing{
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.bouton-around{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.bouton-around .btn {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    background-color: #E9F8FF;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid black;
}
.bouton-around .btn:hover {
    background-color: rgb(50, 188, 237);
} 

.Main__Container-sc-2e6ccb7b-0{
    padding: 2rem;
}


:root{
    --primary:#32BCED;
    --ink:#0F172A;
    --muted:#5B6B7C;
    --bg:#E9F8FF;
  }
  
 /* SECTION PIXAPA – STYLE ÉPURÉ */
/* SECTION PIXAPA – IMAGE À GAUCHE, TITRE EN AVANT, COULEUR #32BCED */

#pixapa.about-block {
    padding: 4rem 1.5rem;
    background: #E9F8FF;
    color: #1f2933;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  
  /* CONTAINER */
  
  .about-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* HEADER */
  
  .about-header {
    margin-bottom: 2.75rem;
    text-align: left;
  }
  
  .about-title {
    position: relative;
    display: inline-block;
    font-size: 2.3rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    color: #0f172a;
  }
  
  .about-title .brand {
    color: #32bced;
    font-weight: 700;
  }
  
  .about-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 3px;
    border-radius: 999px;
    background: #32bced;
  }
  
  .about-kicker {
    margin: 0;
    font-size: 1.05rem;
    color: #52606d;
  }
  
  /* GRID : image à gauche, texte à droite */
  
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: center;
  }
  
  /* IMAGE (colonne gauche, largeur limitée) */
  
  .about-media {
    margin: 0;
    max-width: 420px;          /* limite la taille max */
    justify-self: center;      /* centre dans sa colonne */
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  }
  
  .about-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* TEXTE (colonne droite) */
  
  .about-content {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #1f2933;
  }
  
  .about-content p {
    margin: 0 0 1rem;
  }
  
  .about-content strong {
    font-weight: 600;
  }
  
  /* LISTE */
  
  .about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
  }
  
  .about-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    color: #364152;
  }
  
  .about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background-color: #32bced;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .about-media {
      max-width: 360px;
      margin: 0 auto;
    }
  
    .about-title {
      font-size: 1.9rem;
    }
  }
  
  @media (max-width: 600px) {
    #pixapa.about-block {
      padding: 3rem 1.25rem;
    }
  
    .about-title {
      font-size: 1.6rem;
    }
  
    .about-kicker {
      font-size: 0.95rem;
    }
  }

  /* FULL BLEED */
  
  .full-bleed{
    width:100vw;
    position:relative;
    left:50%; right:50%;
    margin-left:-50vw;
    margin-right:-50vw;
  }
  
  /* SECTION */
  
  .pixapa-categories-fw{
    background:linear-gradient(180deg,#FFFFFF 0%,#F7FBFF 60%,#FFFFFF 100%);
    padding:clamp(32px,6vw,64px) 0;
  }
  
  /* Titre de section mis en valeur */
  
  .cat-section-title{
    max-width:1100px;
    margin:0 auto clamp(20px,3vw,32px);
    padding:0 clamp(16px,3vw);
    font-size:clamp(22px,3vw,30px);
    color:var(--ink);
    font-weight:800;
    letter-spacing:.02em;
    position:relative;
  }
  
  .cat-section-title::after{
    content:"";
    display:block;
    width:72px;
    height:4px;
    margin-top:10px;
    border-radius:999px;
    background:var(--primary);
  }
  
  /* GRID */
  
  .cat-grid-fw{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    grid-auto-rows:1fr;
    gap:clamp(14px,2vw,24px);
    padding:0 clamp(16px,4vw,32px);
  }
  
  @media(min-width:768px){
    .cat-grid-fw{ grid-template-columns:repeat(3,1fr); }
  }
  
  /* CARTES SERVICES */
  
  .cat-card-fw{
    display:flex;
    flex-direction:column;
    height:100%;
    border:1px solid var(--line);
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  
  .cat-card-fw:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 44px rgba(15,23,42,.10);
    border-color:#D6EEF9;
  }
  
  .cat-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:10px;
    padding:clamp(20px,3vw,28px);
   
  }
  
  /* TITRES, TEXTE, ICÔNES */
  
  .cat-title-fw{
    margin:0;
    font-size:clamp(18px,2vw,22px);
    color:var(--ink);
    font-weight:700;
  }
  
  .cat-text-fw{
    margin:4px 0 0;
    color:var(--muted);
    line-height:1.6;
    font-size:clamp(14px,1.6vw,16px);
    max-width:48ch;
  }
  
  .cat-icon-fw{
    display:grid;
    place-items:center;
    margin:8px 0;
  }
  
  .cat-icon-fw svg{
    width:clamp(56px,6vw,80px);
    height:auto;
  }
  
  .cat-icon-fw svg *{
    fill:var(--primary)!important;
    stroke:var(--primary)!important;
  }
  
  /* LISTE DE POINTS (mise en valeur des bénéfices) */
  
  .cat-points-fw{
    list-style:none;
    padding:0;
    margin:8px 0 0;
    text-align:left;
    width:100%;
    max-width:280px;
    color:var(--muted);
    font-size:0.95rem;
  }
  
  .cat-points-fw li{
    position:relative;
    padding-left:1.3rem;
    margin-bottom:4px;
  }
  
  .cat-points-fw li::before{
    content:"";
    position:absolute;
    left:0;
    top:0.55em;
    width:0.42rem;
    height:0.42rem;
    border-radius:999px;
    background:var(--primary);
  }
  
  /* ACCESSIBILITÉ */
  
  .cat-card-fw:focus-within{
    outline:none;
    box-shadow:0 0 0 4px rgba(50,188,237,.25);
  }
    

  /* blog */
  
  
  /* TITRE */
  
  .blog-title{
    text-align:center;
    font-size:2.5rem;
    margin:50px 0 30px;
    color:var(--ink);
  }
  
  /* GRID */
  
  .blog-grid{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
  }
  
  /* CARD */
  
  .blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(50,188,237,0.15);
  }
  
  /* IMAGE */
  
  .blog-image-wrapper{
    display:block;
    height:200px;
    overflow:hidden;
  }
  
  .blog-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover img{
    transform: scale(1.05);
  }
  
  /* CONTENT */
  
  .blog-content{
    padding:20px;
  }
  
  /* META */
  
  .blog-meta{
    display:flex;
    justify-content:space-between;
    font-size:0.8rem;
    margin-bottom:10px;
  }
  
  .blog-theme{
    color:var(--primary);
    font-weight:600;
  }
  
  .blog-date{
    color:var(--muted);
  }
  
  /* TITLE */
  
  .blog-card-title{
    font-size:1.2rem;
    margin:10px 0;
  }
  
  .blog-card-title a{
    text-decoration:none;
    color:var(--ink);
  }
  
  .blog-card-title a:hover{
    color:var(--primary);
  }
  
  /* EXCERPT */
  
  .blog-excerpt{
    font-size:0.95rem;
    color:#444;
    line-height:1.5;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 600px){
    .blog-title{
      font-size:2rem;
    }
  }
  /* Couleur cohérente avec ton site */
.text-primary {
  color: rgb(50, 188, 237) !important;
}

.btn-outline-primary {
  border-color: rgb(50, 188, 237);
  color: rgb(50, 188, 237);
}

.btn-outline-primary:hover {
  background: rgb(50, 188, 237);
  color: #fff;
}

/* Image crop propre */
.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Effet hover léger */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(50, 188, 237, 0.15);
}

.article-show {
  background-color: #f9f9f9;
  padding: 3rem 0;
}

.article-show img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.article-show h1 {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 700;
  color: rgb(50, 188, 237);
}

.article-show .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.article-show .article-content {
  font-family: 'Red Hat Text', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 1200px) {
  .approche{
    margin-left: 1rem;
  }
}