body {
    font-family: Arial, sans-serif;
}

.jumbotron {
    background-color: #f8f9fa;
    margin-bottom: 0;
}

footer {
    background-color: #f8f9fa;
}

.header {
    position: relative;
    /*background: url('https://dummyimage.com/1800x1600/F1F1F1/fff') no-repeat center center/cover;*/
    background: url('https://dummyimage.com/1800x1600/F1F1F1/fff') no-repeat center center/cover;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 56px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    z-index: 1;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.scroll-offset {
    scroll-margin-top: 100px !important;
}

.card-img-top {
    object-fit: cover;
    height: 200px;
}

.aside {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

.aside.open {
    right: 0;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
}

.mask.show {
    display: block;
}

body.no-scroll {
    overflow: hidden;
}

.liked {
    color: red;
}

.like-service {
    width: 40px;
    /* Largeur fixe */
    height: 40px;
    /* Hauteur fixe */
    display: inline-flex;
    /* Aligner le contenu */
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    /* Taille du cœur */
    padding: 0;
    /* Supprime le padding par défaut */
    border-radius: 5px;
    /* Uniformise avec les autres boutons */
}


/* FAB Button */
.fab-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1050;
}

.fab-button:hover {
    background: #0056b3;
}

.fab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    /* Caché par défaut */
    justify-content: center;
    align-items: center;
}

/* Effet quand des services sont sélectionnés */
.fab-button.active {
    width: 70px;
    height: 70px;
    background: #ff4500;
    /* Changement de couleur */
    font-size: 1.8rem;
    box-shadow: 0px 6px 12px rgba(255, 69, 0, 0.3);
}

/* Aside Contact */
#contact-aside {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

#contact-aside.open {
    right: 0;
}

#contact-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
}

#contact-mask.show {
    display: block;
}

.close-icon {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* 
h1{
    font-family: 'Roboto', sans-serif;
    color:#FF8800;
}
.btn-primary {
    color: #fff;
    background-color: #2F74B5;
    border-color: #2F74B5;
} 
.btn-primary.btn-danger {
    color: #fff;
    background-color: #b52f45;
    border-color:#b52f45;
} 
*/