/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Thème enfant GeneratePress
Author: nEka
Version: 1.0
Template: generatepress
*/

@import url('../generatepress/style.css');


/* ============================= */
/* LOGO                          */
/* ============================= */

.site-logo img {
    max-width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .site-logo img {
        max-width: 50px;
    }
}


/* ============================= */
/* MENU SECONDAIRE – DROITE PARTOUT */
/* ============================= */

/* On aligne le conteneur du menu */
#menu-menu-secondaire {
    display: inline-block;     /* ⚠️ important */
    list-style: none;
    padding: 10px 20px;
    margin: 0;
}

/* Le parent (inconnu) aligne à droite */
#menu-menu-secondaire,
#menu-menu-secondaire.menu {
    text-align: right;
    width: 100%;
}

/* Items */
#menu-menu-secondaire li {
    display: inline-block;
    margin-left: 15px;
    list-style: none;
}

#menu-menu-secondaire li:first-child {
    margin-left: 0;
}

#menu-menu-secondaire li a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--generatepress-secondary-color, inherit);
    transition: color 0.3s ease;
}

#menu-menu-secondaire li a:hover {
    color: var(--generatepress-primary-color, #333);
}


/* ============================= */
/* MOBILE                        */
/* ============================= */

@media (max-width: 768px) {
    #menu-menu-secondaire {
        padding: 10px 15px;
    }
}
