/* Couleur verte personnalisée */
.is-custom-green {
    background-color: #00d1b2;
    color: white;
}

.is-custom-green:hover {
    background-color: #00c4a7;
}

/* Footer styles */
.footer {
    background-color: #f5f5f5;
    padding: 1.5rem;
}

/* Styles pour la page d'accueil */
.hero.is-fullheight {
    min-height: calc(100vh - 52px - 52px); /* Ajustez en fonction de la hauteur de votre navbar et footer */
}

/* Styles pour la navbar */
.navbar {
    background-color: #f5f5f5;
}

.navbar-item {
    color: #4a4a4a;
}

.navbar-item:hover {
    background-color: #e8e8e8;
}

/* Styles pour les cartes de projet */
.project-card {
    background-color: white;
    color: #4a4a4a;
}

.project-card .card-footer-item:first-child {
    background-color: #00d1b2;
    color: white;
}

.project-card .card-footer-item:last-child {
    background-color: #f14668;
    color: white;
}
