.btn-white{
    background-color: #FFF;
    color: #000;
}

.padding{
    padding: 20px;
    border-radius: 20px;
}

.bg-remove{
    background-color: transparent;
}

.bg-image1{
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/logo-tchop-now-removebg-preview.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-image2{
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/gateau.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-image3{
    background-image: url('../images/mission.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card {
        position: relative;
        display: block;
        border-radius: 15px;
        overflow: hidden;
        height: 250px;
        transition: transform 0.3s ease;
    }

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Voile sombre */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
}