/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Child Theme
Version: 1.4.2.1764853304
Updated: 2025-12-04 13:01:44
*/

/* --- EN-TÊTE COLLANT (STICKY) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #000000;
}

/* --- LOGO À APPARITION PROGRESSIVE --- */

/* 1. Par défaut, le logo est INVISIBLE (on force avec !important) */
.site-header .site-branding {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease-in-out;
}

/* 2. Quand le header a la classe "scrolled", le logo devient VISIBLE */
.site-header.scrolled .site-branding {
    opacity: 1 !important;
    visibility: visible !important;
}

/* --- MASQUER TEXTE RÉSEAUX SOCIAUX SUR MOBILE --- */
@media (max-width: 767px) {
    .akr-social-text .wp-block-social-link-label,
    .akr-social-text .kt-svg-icon-list-text { 
        /* On cible les deux noms possibles (WordPress natif ou Kadence) */
        display: none !important;
    }
}