/* --- Import de la police Satoshi --- */
@import url('https://fonts.cdnfonts.com/css/satoshi');
/* --- Barre de Navigation Fixe & PLUS OPAQUE --- */
.Header__navbar {
    background-color: rgba(20, 20, 20, 0.98) !important; 
    border-bottom: 2px solid #f36f21;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 10px 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.Header__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
}
/* --- Logo et Nom de l'entreprise --- */
.Header__logo {
    display: inline-block;
    vertical-align: middle;
}
.Header__logo img {
    height: 32px !important;
    width: auto;
    display: block;
}
.Header__name {
    display: inline-block;
    color: #ffffff !important;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px;
    margin-left: 1px;
    vertical-align: middle;
}
/* --- Menu de navigation --- */
.Header__menuTab {
    flex: 1;
    text-align: right;
}
.Header__menuList {
    display: inline-flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.Header__menuList li {
    display: inline-block;
}
.Header__menuList a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.Header__menuList a:hover {
    opacity: 1;
}
/* --- Logique de Traduction --- */

/* 1. On cache l'anglais par défaut */
.lang-en {
    display: none !important;
}

/* 2. Si le document est en anglais (détecté par Zoho), on switch */
html[lang*="en"] .lang-fr {
    display: none !important;
}

html[lang*="en"] .lang-en {
    display: block !important;
}

/* --- Section Hero avec espacement pour navbar fixe --- */
body {
    padding-top: 0px; 
}
.Header__searchSection {
    /* CORRECTION ICI : Ajout du background-image pour que le dégradé noir s'applique sur l'image existante */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) !important;
    background-blend-mode: darken;
    padding: 100px 20px 100px 20px !important;
    text-align: center;
    color: #ffffff;
}
.Header__searchSection .Header__container {
    display: block;
    max-width: 900px;
}
.Header__searchTitle {
    font-size: 40px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}
.Header__description {
    font-size: 18px !important;
    max-width: 750px;
    margin: 0 auto 40px auto !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    opacity: 0.95;
}
/* --- Responsive --- */
@media (max-width: 768px) {
    .Header__menuTab {
        display: none;
    }
    
    .Header__menuicon {
        display: block !important;
    }
    
    .Header__searchTitle {
        font-size: 35px !important;
    }
    
    .Header__description {
        font-size: 16px !important;
    }
}
/* TRADUCTION DE L'ONGLET COMMUNAUTÉ */

/* 1. On cible l'onglet quand la langue est l'anglais */
html[lang*="en"] #portal_tabCommunity a {
    font-size: 0 !important; /* Cache le texte français */
}

/* 2. On ajoute le texte anglais par-dessus */
html[lang*="en"] #portal_tabCommunity a::before {
    content: "Enhancement Requests" !important; 
    font-size: 12.5px !important; /* Remet la taille normale */
    color: #ffffff !important; /* Garde le texte blanc comme les autres */
    visibility: visible !important;
}
html[lang*="en"] a[data-id="community_module"] {content:"Enhancement Requests";}
