/* Bouton diamant */
.diamond-button{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: var(--background1); 
    font-weight: bold;
    cursor: pointer;
    
    img{
        position: absolute;
        width: 108px;
        z-index: -1;
    }

    img:last-child{
        opacity: 0;
    }
}

.diamond-button:hover{
    color: var(--font1); 

    img:last-child{
        opacity: 1;
    }
}

.diamond-button2 {
    background: linear-gradient(var(--diamond-radient));
    filter: brightness(0.8) hue-rotate(20deg);
    padding: 10px 20px;
    border: solid 4px var(--diamond3);
    transition: 0.5s;
}

.diamond-button2:hover {
    filter: brightness(1) hue-rotate(0deg);
    border: solid 4px var(--diamond4);
    transition: 0.5s;
}

/* 📱 Mobile large (481px et plus) */
@media (min-width: 481px) {

}

/* 📲 Tablettes (768px et plus) */
@media (min-width: 768px) {

}

/* 💻 Ordinateurs portables (1025px et plus) */
@media (min-width: 1025px) {

}

/* 🖥 Grands écrans (1367px et plus) */
@media (min-width: 1367px) {

}

/* 🖥📺 Ultra-large (1920px et plus) — optionnel */
@media (min-width: 1920px) {


}