/*
Theme Name:   Hello Biz Child
Theme URI:    https://votre-site.com
Description:  Thème enfant de Hello Biz
Author:       Minucci Tech
Author URI:   https://votre-site.com
Template:     hello-biz
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  hello-biz-child
*/


/* Importation des styles du thème parent */
@import url("../hello-biz/style.css");

/* Conteneur du fil d'ariane */
.breadcrumb-navigation {
    font-size: 14px;
}

/* Fil d'ariane */
.breadcrumb {
    padding: 12px 20px;
    background-color: #DFE0D9;
    border-radius: 5px;
    color: #253D53;
}

/* Liens du fil d'ariane */
.breadcrumb a {
    color: #253D53;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #DBC2AC;
    text-decoration: underline;
}

/* Page actuelle */
.breadcrumb .current {
    color: #253D53;
    font-weight: 500;
    opacity: 0.7;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    /* Fil d'ariane */
    .breadcrumb {
        font-size: 13px;
        padding: 10px 15px;
    }
}