/*
Theme Name: Synergy Soft
Theme URI: https://www.synergysoft.fr
Description: Theme Synergy Soft (Thème enfant de twentytwentyfive)
Author: Synergy Soft
Author URI: https://www.synergysoft.fr
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/*********************
 * SS - 01/2024
Suppression des contours autour des liens.
 *********************/

button:focus, 
button:active, 
a:focus, 
a:active {
  outline: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}


/*********************
 * SS - 12/2025
Rendre le bas de la rangé 
 *********************/

.row-fade {
  position: relative;
  overflow: hidden;
}

/* Version simple : effet de dégradé (sans flou) */
.row-fade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height:70px; /* hauteur du dégradé */
  pointer-events: none;
  /* Dégradé transparent -> couleur de fond de la rangée */
  background: linear-gradient(
    to bottom,
    rgba(252, 249, 244, 0) 0%,
    rgba(252, 249, 244, 0.25) 30%,
    rgba(252, 249, 244, 0.60) 60%,
    rgba(252, 249, 244, 1) 100%
  );
}


/*********************
 * SS - 12/2025
Afficher que les drapeaux dans le menu pour switcher de langue
 *********************/


/* Supprimer les puces de la liste */
.pll-switcher--nav,
.pll-switcher--nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Affichage horizontal des langues */
.pll-switcher--nav {
    display: flex;
    align-items: center;
    gap: 10px; /* espace entre les drapeaux */
}

/* Cacher le nom des langues */
.pll-switcher--nav li a span {
    display: none;
}

/* Ajuster l'affichage des drapeaux */
.pll-switcher--nav li a img {
    display: block;
    width: 16px;
    height: auto;
}

