/* DÉBUT: GIN.CSS */

/* VARIABLES */

:root {
    --primary-color: #000;
    --secondary-color: #67913D;
    --white: #fff;
    --bs-body-font-family: "Rubik", system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

/* SELECTORS */

h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.7rem;
}

a:link
, a:visited {
    color: var(--white);
    text-decoration: none;
}
a:hover {
    color: var(--secondary-color);
}

/* ID */

#navigation-accueil {
    background-color: var(--primary-color);
}

#hamburger-menu-icon {
    width: 35px;
    height: 35px;
}

#navigation-accueil-liste {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

#sous-entete-accueil {
    background-image: url('/images/gin/futuristic-robot1053-536.jpg');
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#section-moteur-recherche-entreprise {
    background-color: rgba(255, 255, 255, .1);
}

#btn-rechercher-entreprise {
    width: 100%;
    background-color: var(--secondary-color);
    font-size: 1.15rem;
}
#btn-rechercher-entreprise:hover {
    background-color: var(--primary-color);
}

/* CLASSES */

.box {
    min-height: 50px;
    height: 100%;
}

.centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-mg-bottom {
    margin-bottom: 0;
}

.bold {
    font-weight: bold;
}

.font-primary-color {
    color: var(--primary-color);
}

.set-transition-bg {
    transition-property: background-color;
    transition-timing-function: ease-out;
    transition-duration: .3s;
}

.moteur-recherche-tag {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
}
.moteur-recherche-tag:hover {
    background-color: var(--primary-color);
}

.grille-element-box {
    transition-property: background-color, box-shadow, transform;
    transition-duration: .200s;
    transition-timing-function: ease-out;
    cursor: pointer;
    z-index: 0;
}
.grille-element-box:hover {
    background-color: var(--secondary-color);
    box-shadow:
        2px 2px 12px 2px lightslategrey
        , -2px -2px 12px 2px lightslategrey;
    color: var(--white);
    z-index: 1;
    transform: scaleX(1.15) scaleY(1.25);
}

.no-box-shadow:hover
, .no-box-shadow:focus {
    box-shadow: none !important;
}
.no-border:hover
, .no-border:focus {
    border: none !important;
}

.lien-resultat {
    color: #67913D !important;
    font-weight: bold !important;
    text-decoration-line: underline !important;
    text-decoration-color: #67913D !important;
}
.lien-resultat:hover {
    color: black !important;
    font-weight: bold !important;
    text-decoration-line: none !important;
}

.link_entreprise:hover{
    color: #67913D !important;
    text-decoration-line: underline !important;
    text-decoration-color: #67913D !important;
}

/* MEDIA QUERIES (Bootstrap breakpoints) */

@media (min-width: 576px) {
    /**/
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.1rem;
    }
    h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    #btn-rechercher-entreprise {
        width: unset;
        font-size: .9rem;
    }
}

@media (min-width: 1200px) {
    #btn-rechercher-entreprise {
        font-size: 1.1rem;
    }
}

@media (min-width: 1400px) {
    /**/
}

/* FIN: GIN.CSS */
