/* styles.css */

/* Enlever le soulignement sur les liens des cards */
.card-link {
    text-decoration: none;
    color: inherit;
}

/* Changer l'apparence de la card au survol */
.card-link:hover .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Définir la hauteur du header coloré */
.card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Style des icônes en arrière-plan dans le header */
.icon-background {
    font-size: 80px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

/* Ajuster le contenu de la card */
.card-body {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Style du logo */
.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Style du footer */
footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

/* Ajout de marge en bas pour éviter la superposition du footer avec le contenu */
.container {
    margin-bottom: 100px;
}
