/*
Theme Name: EMEE 2025
Theme URI: 
Author: ASG DEV
Author URI: https://www.asg-dev.fr
Description: FSE theme for EMEE - revamped in 2025
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: asg-dev
*/

:root {
    color-scheme: light dark;
}

@media (width < 768px) {
    .hide-on-mobile {
        display: none;
    }
}


.featured-article-content{
    margin-top: -5rem!important;
    z-index: 10;
}

.sticky-menu{
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    margin: 0 auto !important;
    background-color: #8100ff !important;
    display: block !important;
}

/* Debug: Add a border to see if sticky is working - REMOVE THIS WHEN WORKING */
/* .sticky-menu {
    border: 2px solid red !important;
} */

/* Ensure parent containers don't interfere with sticky */
body, html {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Force sticky to work by ensuring proper stacking context */
.sticky-menu {
    transform: translateZ(0);
    will-change: transform;
}

/* Add some test content height to ensure scrolling works */
body {
    min-height: 200vh;
}