/********** Template CSS **********/
:root {
    --primary: #0591b8;
    --secondary: #b4e4f165;
    --light: #F0FBFC;
    --dark: #181d38;
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37423b;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #5fcf80;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --contrast-color: #ffffff;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}



.card {
    margin-bottom: 20px;
}

.card-title {
    font-weight: bold;
}

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

.search-bar {
    margin: 30px 0;
    width: 40%;
}

@media (max-width: 768px) {
    .search-bar {
        width: 100%;
        /* 100% sur les écrans mobiles */
    }
}

.btn-discover {
    background-color: var(--primary);
    color: var(--background-color);
}

.btn-card {
    display: flex;
    justify-content: end;
    margin-top: 10px;
}