/* Footer */
footer {
    background: #2C2F33;
    color: #fff; /* Correction : Utilisez "color" pour la couleur du texte */
    bottom: 0;
    left: 0;
    padding: 6px 0; /* Correction : "06px" remplacé par "6px" */
    text-align: center;
}

/* Float Animation */
.float {
    border: 1px solid black;
    box-shadow: 8px 7px 25px gray;
    border-radius: 5px;
    transition: 0.2s; /* Suppression des préfixes inutiles */
    animation: float 1s ease-in-out;
    width: 15%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #e2e2e2;
}

@keyframes float {
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

.float:hover {
    transform: translate3d(0, -6px, 0);
}

/* Flexbox Utilities */
.inline {
    display: flex;
    flex-direction: row;
    margin: auto;
}
a {
    color: #1abc9c;
    text-decoration: none !important;
    background-color: transparent;
}
/* Text Utilities */
.bold {
    margin-top: 10px;
    font-weight: bold;
    font-size: 22px;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: hsl(221 14% 9% / 1) !important;
    background-clip: border-box;
    border: .125rem solid rgba(0, 0, 0, .125);
    border-radius: .5rem;
}

.others {
    font-size: 17px;
}

.price {
    font-size: 17px;
    font-weight: bold;
    font-style: italic;
}

.center {
    text-align: center;
}

/* Image Styling */
.image-Steven {
    border-radius: 100%;
}

/* Presentation Section */
.display-section1 {
    display: flex;
    margin-top: 30px;
}

.infos-presentation {
    margin: 50px;
    font-family: 'Montserrat', sans-serif;
}

/* Banner Section */
.banner {
    background-image: url(); /* Ajoutez une URL d'image ici */
    padding: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Grid Layout */
.witems-4 .witems-item {
    float: left;
    width: 25%;
}

.witems {
    position: relative;
}

/* Card Styling */
.spaced-card {
    margin: 12px;
    perspective: 800px;
}

.head-card {
    display: block;
    background: #fff;
    padding: 22px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    transition: all 0.3s; /* Suppression des préfixes inutiles */
}

/* Section Title */
.section-title {
    position: static;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

/* Hero Section Background Image */
.fond-image {
    background-image: url(../img/fond-image.jpg); /* Assurez-vous que le chemin est correct */
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Box Styling */
.boxtwo {
    background-color: var(--bulma-scheme-main);
    color: var(--bulma-text);
    border-radius: var(--bulma-radius-large);
    box-shadow: var(--bulma-shadow);
    padding: 1.25rem;
}

/* Media Component */
.media {
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}