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

/* ===== Main Banner ===== */
.main-banner {
    position: relative;
    height: 100vh; /* occupe toute la hauteur de l’écran */
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.main-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('./assets/head.png') center center / cover no-repeat;
    z-index: 0;
}
.main-banner > * {
    position: relative;
    z-index: 1;
}
.main-banner h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.main-banner h1 span {
    color: #f8c6d1;
    font-style: italic;
}
.banner-buttons {
    margin-top: 20px;
}
.banner-buttons .btn {
    margin: 0 10px;
}

/* ===== Services Section ===== */
.services {
    padding: 40px 0;
    background-color: whitesmoke;
}
.services h2 {
    color: #ff2056;
}

/* ===== Carousel/Card Styles ===== */
.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-body {
    position: relative;
    min-height: 100px; /* hauteur minimale identique */
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    /* Bordures inférieures arrondies (12px) */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    /* Bordure arrondie pour reprendre le style Bootstrap (0 0 0.5rem 0.5rem) */
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: #dc3545 !important;
}
.card-body h5 {
    z-index: 1;
    font-weight: bold;
}

/* Effet “hover” sur les cartes pleine hauteur */
.card.h-100 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.card.h-100:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* ===== Contact & Footer ===== */
.contact {
    background-color: #212529;
    padding: 30px 0;
    text-align: center;
    color: #fff;
    padding-left: 2rem;
}
.contact a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
}

    .contact .social {
        /* On supprime tout padding interne supplémentaire */
        padding-left: 0;
    }
    .contact .social h3 {
        /* Réduire l’espace sous le titre */
        margin-bottom: 0.25rem;
        text-align: left;

    }
    .contact .social hr {
        /* largeur fixe pour s’aligner sur le texte du h3
           suppression de marges verticales excessives
           couleur et épaisseur personnalisées */
        width: 38%;
        margin: 0 0 0.75rem 0;
        border: 0;
        height: 3px;
        background-color: #ff2056;
    }
    .contact .social .social-items {
        /* Disposition en flex pour aligner les icônes côte à côte */
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 1rem;               /* espace entre chaque icône */
        padding-left: 0;         /* pas de décalage à gauche */
        margin-left: 0;
        justify-content: start;  /* alignement sous le h3 */
    }
    .contact .social .social-item {
        flex: 0 0 auto;          /* taille auto, ne pousse pas les autres */
        text-align: center;
    }
    .contact .social .social-item a {
        display: flex;
        align-items: center;
        color: inherit;
        text-decoration: none;
        font-size: 1rem;
        margin-left: 0; /* aucun décalage supplémentaire */
    }
    .contact .social .social-item i {
        font-size: 25px;         /* taille de l’icône */
        color: #fff;          /* couleur (modifiable) */
        margin-right: 0.3rem;
    }


    .contact .coord {
        /* On supprime tout padding interne supplémentaire */
        padding-left: 0;
    }
    .contact .coord h3 {
        /* Réduire l’espace sous le titre */
        margin-bottom: 0.25rem;
        text-align: left;
    }
    .contact .coord hr {
        /* - largeur fixe pour s’aligner sur le texte du h3
           - suppression de marges verticales excessives
           - couleur et épaisseur personnalisées */
        width: 30%;
        margin: 0 0 0.75rem 0;
        border: 0;
        height: 3px;
        background-color: #ff2056;
    }
    .contact .coord .coord-items {
        /* Pas de margin/padding sur le conteneur pour coller à la gauche */
        padding-left: 0;
        margin: 0;
    }
    .contact .coord .coord-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem; /* espacement entre chaque ligne */
    }
    .contact .coord .coord-item i {
        margin-right: 0.5rem; /* espace entre icône et texte */
    }

.footer {
    background-color: #212529;
    color: white;
    text-align: center;
    padding: 15px;
}

/* ===== Utility Classes ===== */
.object-fit-cover {
    max-height: 300px;
    object-fit: cover;
}
.infos-text {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}


/* ===== Icons ===== */
.fa-facebook,
.fa-facebook-messenger,
.fa-phone,
.fa-envelope,
.fa-location-dot {
    color: #fff;
    font-size: 25px;
}

/* ===== Separator (<hr>) ===== */
hr {
    width: 50%;             /* largeur égale à 50% de l’élément parent */
    margin: 30px auto;      /* 30px d’espace au-dessus et au-dessous, centré */
    border: 0;              /* supprime la bordure par défaut */
    height: 3px;            /* épaisseur de la ligne */
    background: linear-gradient(
            to right,
            #28a745 0%,
            #6c757d 50%,
            #28a745 100%
    );
    border-radius: 1px;     /* bords légèrement arrondis */
}

/* ===== Circle Badge (élément circulaire sur la card-body) ===== */
.circle-badge {
    position: absolute;
    z-index: 0;
    top: -60%;               /* remonte de 60% de la hauteur du parent */
    left: 50%;               /* centré horizontalement */
    transform: translateX(-50%);
    width: 9rem;             /* diamètre du cercle */
    height: 9rem;
    border-radius: 50%;
    background-color: #dc3545 !important;
    /* Optionnel : bordure et ombre si besoin
       border: 5px solid #ddd;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    */
    color: #fff;
    font-weight: bold;
    font-size: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-badge span {
    display: block;
    margin-top: -1.2rem;
    line-height: 1; /* réduit l’espace généré par le retour à la ligne */
}
.circle-badge .prix {
    font-size: 1.2em; /* taille du texte “110€” */
    font-weight: bold;
}
.circle-badge .ttc {
    display: block;       /* force le retour à la ligne */
    font-size: 0.7em;     /* “TTC” plus petit */
    color: #fff;
    margin-top: 2px;      /* petit espace sous “110€” */
}
