/*
Theme Name: AUDA
Theme URI: https://auda-design.com/
Template: hello-elementor
Author: David P.
Author URI: https://auda-design.com/
Description: Thème de l'agence AUDA v2.0.1
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 2.0.1.1773845774
Updated: 2026-03-18 14:56:14

*/

/* ============================================                                                                           
     AUDA DESIGN — Boutons Elementor                                                                                        
     ============================================ */

:root {
  --aw-color-primary: rgb(21, 207, 146);
  --aw-color-secondary: rgb(17, 182, 128);
  --aw-color-dark: rgb(10, 16, 47);
}

::selection {
  background-color: var(--aw-color-primary);
  color: #ffffff;
}

/* =====================
     BASE COMMUNE + ANIMATION
     ===================== */
.auda-btn-primary .elementor-button,
.auda-btn-secondary .elementor-button,
.auda-btn-tertiary .elementor-button,
.auda-btn-dark .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: transparent;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.375;
  padding: 0.875rem 1.5rem;
  color: --aw-color-dark;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  /* Animation */
  position: relative;
  overflow: hidden;
  transition:
    background-color 200ms ease-in,
    border-color 200ms ease-in,
    color 200ms ease-in;
}

@media (min-width: 768px) {
  .auda-btn-primary .elementor-button,
  .auda-btn-secondary .elementor-button,
  .auda-btn-tertiary .elementor-button,
  .auda-btn-dark .elementor-button {
    padding: 0.875rem 2rem;
  }
}

/* Texte au-dessus des pseudo-éléments */
.auda-btn-primary .elementor-button-content-wrapper,
.auda-btn-secondary .elementor-button-content-wrapper,
.auda-btn-tertiary .elementor-button-content-wrapper,
.auda-btn-dark .elementor-button-content-wrapper {
  position: relative;
  z-index: 10;
  display: block;
}

/* Cercle qui s'expand depuis le bas */
.auda-btn-primary .elementor-button::before,
.auda-btn-secondary .elementor-button::before,
.auda-btn-tertiary .elementor-button::before,
.auda-btn-dark .elementor-button::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -110%;
  height: 0;
  width: 120%;
  border-radius: 50%;
  padding-bottom: 120%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

/* Overlay qui glisse depuis le haut */
.auda-btn-primary .elementor-button::after,
.auda-btn-secondary .elementor-button::after,
.auda-btn-tertiary .elementor-button::after,
.auda-btn-dark .elementor-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
}

/* Hover pseudo-éléments communs */
.auda-btn-primary .elementor-button:hover::before,
.auda-btn-secondary .elementor-button:hover::before,
.auda-btn-tertiary .elementor-button:hover::before,
.auda-btn-dark .elementor-button:hover::before {
  transform: translateZ(0) scale3d(1, 1, 1);
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
}

.auda-btn-primary .elementor-button:hover::after,
.auda-btn-secondary .elementor-button:hover::after,
.auda-btn-tertiary .elementor-button:hover::after,
.auda-btn-dark .elementor-button:hover::after {
  transform: translateZ(0);
  transition: transform 0.5s 0.4s linear;
}

/* Animation du texte */
.auda-btn-primary .elementor-button:hover .elementor-button-content-wrapper,
.auda-btn-secondary .elementor-button:hover .elementor-button-content-wrapper,
.auda-btn-tertiary .elementor-button:hover .elementor-button-content-wrapper,
.auda-btn-dark .elementor-button:hover .elementor-button-content-wrapper {
  animation:
    auda-fill-up-initial 0.2s forwards,
    auda-fill-up-end 0.3s forwards 0.3s;
}

/* =====================
     BTN PRIMARY
     ===================== */
.auda-btn-primary .elementor-button {
  background-color: var(--aw-color-primary);
  border: 1px solid var(--aw-color-primary);
  color: rgb(10, 16, 47);
}

.auda-btn-primary .elementor-button::before {
  background-color: var(--aw-color-secondary);
}

.auda-btn-primary .elementor-button:hover {
  background-color: var(--aw-color-secondary);
  border-color: var(--aw-color-secondary);
  color: #ffffff;
}

/* =====================
     BTN SECONDARY
     ===================== */
.auda-btn-secondary .elementor-button {
  background-color: transparent;
  border: 2px solid #57534e;
  color: rgb(10, 16, 47);
}

.auda-btn-secondary .elementor-button::before {
  background-color: #ffffff;
}

.auda-btn-secondary .elementor-button:hover {
  color: var(--aw-color-primary);
  /*background-color: #ffffff;*/
  border-color: var(--aw-color-primary);
}

.auda-btn-secondary .elementor-button::after {
  background-color: #ffffff;
}

/* =====================
     BTN TERTIARY
     ===================== */
.auda-btn-tertiary .elementor-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: rgba(16, 16, 16, 0.66);
}

.auda-btn-tertiary .elementor-button::before {
  background-color: #f3f4f6;
}

.auda-btn-tertiary .elementor-button:hover {
  color: #111827;
  background-color: #f3f4f6;
}

/* =====================
   BTN DARK
   ===================== */
.auda-btn-dark .elementor-button {
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  color: var(--aw-color-dark);
}

.auda-btn-dark .elementor-button::before {
  background-color: var(--aw-color-dark);
}

.auda-btn-dark .elementor-button::after {
  background-color: var(--aw-color-dark);
}

.auda-btn-dark .elementor-button:hover {
  background-color: var(--aw-color-dark);
  color: #ffffff;
}

/* =====================
     BTN LINK
     ===================== */
.auda-btn-link .elementor-button {
  font-size: 17.5px;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: var(--aw-color-primary);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  overflow: visible;
}

/* Soulignement animé */
.auda-btn-link .elementor-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  height: 1px;
  width: 100%;
  background-color: var(--aw-color-primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.1, 0, 0.3, 1);
}

/* Désactive le ::before (pas de fill-up) */
.auda-btn-link .elementor-button::before {
  display: none;
}

.auda-btn-link .elementor-button:hover {
  background-color: transparent;
  color: var(--aw-color-secondary);
}

.auda-btn-link .elementor-button:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.1, 0, 0.3, 1);
}

/* Pas d'animation fill-up sur le texte */
.auda-btn-link .elementor-button:hover .elementor-button-content-wrapper {
  animation: none;
}

/* =====================
     KEYFRAMES
     ===================== */
@keyframes auda-fill-up-initial {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes auda-fill-up-end {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.text-mask-green {
  background-image: linear-gradient(
    to right,
    rgb(17, 182, 128),
    rgb(21, 207, 146)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* =====================
     CARROUSEL EXPERTISES LOGOS
     ===================== */
.carrousel-logos .elementor-image-box-img {
  flex-shrink: 0;
  margin: 0 !important;
  align-self: flex-start;
}

.carrousel-logos .elementor-image-box-img img {
  width: auto !important;
  height: 30px !important;
  max-width: none !important;
  display: block;
}

/* Fermé → 4 coins arrondis */
.e-n-accordion-item:not([open]) .e-n-accordion-item-title {
  --n-accordion-border-radius: 30px;
}

/* ===================================
   Nice li dot
   =================================== */
@media (max-width: 768px) {
  .niceliste ul {
    padding-left: 0 !important;
  }
}
.niceliste ul > li,
.wp-block-list li {
  position: relative;
  list-style: none;
  padding-left: 25px;
}

.niceliste ul > li::before,
.wp-block-list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--aw-color-primary);
  border-radius: 50%;
  z-index: 2;
  top: 13px;
  left: 5px;
}

.niceliste ul > li::after,
.wp-block-list li::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--aw-color-primary);
  border-radius: 50%;
  z-index: 1;
  top: 9px;
  left: 1px;
  opacity: 0.15;
}
.niceliste.niceliste-white ul {
  color: #959fa5 !important;
}
/* ===================================
   comparatif technologique. 
   =================================== */
.comparatif-techno {
  overflow-x: auto;
}

.comparatif-techno table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.comparatif-techno th,
.comparatif-techno td {
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.comparatif-techno thead th {
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
}

.comparatif-techno tbody td:first-child {
  font-weight: 600;
  color: #ffffff;
}

.comparatif-techno tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.04);
}

.comparatif-techno tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Étoiles ── */
.stars {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

.stars::before {
  letter-spacing: 2px;
}

.stars.s1::before {
  content: "★☆☆☆☆";
  color: rgb(17, 182, 128);
}
.stars.s2::before {
  content: "★★☆☆☆";
  color: #e8a838;
}
.stars.s3::before {
  content: "★★★☆☆";
  color: #e8a838;
}
.stars.s4::before {
  content: "★★★★☆";
  color: #e8a838;
}
.stars.s5::before {
  content: "★★★★★";
  color: #e8a838;
}

/* ── Responsive : empilement en cartes ── */
@media (max-width: 768px) {
  .comparatif-techno {
    padding: 12px;
    overflow-x: visible;
  }

  .comparatif-techno table,
  .comparatif-techno thead,
  .comparatif-techno tbody,
  .comparatif-techno tr,
  .comparatif-techno th,
  .comparatif-techno td {
    display: block;
  }

  .comparatif-techno thead {
    display: none;
  }

  .comparatif-techno tbody tr {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .comparatif-techno tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .comparatif-techno tbody td {
    padding: 6px 0;
    text-align: left;
    white-space: normal;
  }

  .comparatif-techno tbody td:first-child {
    font-size: 1.05rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .comparatif-techno tbody td:not(:first-child)::before {
    content: attr(data-label);
    display: inline-block;
    width: 130px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
}

/* ===================================
   Variante fond clair
   =================================== */
.comparatif-techno.light table {
  color: #1e1e2f;
}
.comparatif-techno.light thead th {
  color: #0f1029;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.comparatif-techno.light tbody td:first-child {
  color: #0f1029;
}
.comparatif-techno.light tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.03);
}
.comparatif-techno.light tbody tr:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* ── Responsive light ── */
@media (max-width: 768px) {
  .comparatif-techno.light tbody tr {
    background: rgba(0, 0, 0, 0.03);
  }
  .comparatif-techno.light tbody tr:hover {
    background: rgba(0, 0, 0, 0.06);
  }
  .comparatif-techno.light tbody td:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .comparatif-techno.light tbody td:not(:first-child)::before {
    color: rgba(0, 0, 0, 0.45);
  }
}

/* ============================================
   HOVER SOLID SHADOW
   ============================================ */
.hover-solid-shadow {
  position: relative !important;
  transition: transform 0.3s ease !important;
}

.hover-solid-shadow::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 0.75rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-solid-shadow.shadow-green:after {
  background: var(--aw-color-secondary);
}

.hover-solid-shadow:hover {
  transform: translateY(-4px);
}

.hover-solid-shadow:hover::after {
  opacity: 1;
}

/* ============================================
   Simple content ovverides
   ============================================ */
#article-design h1 {
  font-size: 60px !important;
  line-height: 60px !important;
}

#article-design h2 {
  font-size: 45px !important;
  margin-top: 1.5555556em !important;
  margin-bottom: 0.8888889em !important;
  line-height: 50px !important;
}

#article-design h3 {
  font-size: 37px !important;
  margin-top: 1.5555556em !important;
  margin-bottom: 0.8888889em !important;
  line-height: 45px !important;
}

#article-design p {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #article-design h1 {
    font-size: 36px !important;
    line-height: 40px !important;
  }

  #article-design h2 {
    font-size: 24px !important;
    margin-top: 48px !important;
    margin-bottom: 24px !important;
    line-height: 32px !important;
  }

  #article-design h3 {
    font-size: 20px !important;
    margin-top: 48px !important;
    margin-bottom: 24px !important;
    line-height: 32px !important;
  }

  #article-design p {
    margin-bottom: 20px;
  }
}

.cropper-expert,
.cropper-expert div {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.terms-design {
}

/* ============================================
   LISTE TYPE PROJET — Labels pills
   ============================================ */
.liste-typeprojet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.liste-typeprojet a {
  font-size: 13px !important;
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 9999px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 200ms ease,
    color 200ms ease;
  color: var(--aw-color-primary);
  background-color: #fff;
  border: 1.5px solid var(--aw-color-primary);
}

.liste-typeprojet a:hover {
  background-color: var(--aw-color-primary);
  color: var(--aw-color-dark);
}
