a.text-primary {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Sur PC (survol) et sur Mobile (pression du doigt) */
a.text-primary:hover,
a.text-primary:active {
    /*
    filter: brightness(1.3); !* Éclaircit de 30% sans changer la teinte *!
    */
    text-decoration: underline;
}

a.text-primary:hover {
    opacity: 0.8; /* Le bleu devient 20% plus clair car il laisse passer le fond */
    text-decoration: underline; /* Optionnel : le soulignement n'apparaît qu'au survol */
    color: var(--bs-primary) !important; /* On s'assure qu'il garde ton bleu UCM */
}

/* Optionnel : ajouter un petit effet de "pression" sur mobile */
a.text-primary:active {
    transform: scale(0.98); /* Rétrécit très légèrement au toucher */
}

.intro-description {
/*    font-size: clamp(1.4rem, 2vw, 1.4rem);
    !* Un peu plus grand que le texte standard *!
    color: var(--bs-dark); !* Utilise la variable Bootstrap si disponible *!
    margin-bottom: 0;*/
}

.logo-ucm {
    display: inline-block;
    width: 180px;  /* Ajuste la largeur */
    height: 60px;  /* Ajuste la hauteur */

    /* Le chemin vers ton logo */
    background-image: url("https://boutique.ucm.be/StarterWeb/public/images/logo/ucm-logo.svg");

    /* Réglages pour que l'image s'affiche correctement */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.mb-custom {
    margin-bottom: 6rem;
}
/* Le point de rupture MD de Bootstrap est 768px */
@media (max-width: 767.98px) {
    .mb-custom {
        margin-bottom: 3rem;
    }
}

.table {
    width: 100%;
    margin-bottom: 1.6rem;
    color: var(--bs-body-color);
    border-color: #D0D8F4;
}

.form-control {
    display: block;
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #d0d8f4;
    border-radius: 1rem;
}


/* --- OVERRIDE RESPONSIVE TITRES --- */

h1, .h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem) !important; /* Adapté à ton root 10px */
}

h2, .h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem) !important;
}

h3, .h3 {
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
}

h4, .h4 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
}

h5, .h5 {
    font-size: clamp(1.2rem, 2vw, 1.4rem) !important;
}

h6, .h6 {
    font-size: clamp(1.2rem, 2vw, 1.2rem) !important;
}

/* Dans ton CSS */
small.text-muted {
    color: #565e7a !important;
    font-weight: 400;
}
/*
.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-12 { flex: 0 0 auto; width: 100%; }
.col-6 { flex: 0 0 auto; width: 50%; }
*/


