@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2025 2A Digital

 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.

*/
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('typography.css');
@import url('color.css');
@import url('../font/font.css');

/*  ==========================================
*   ================= GENERAL ================
*/
* {
    font-family: var(--ff-source);
    /* font-weight: 400; */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

main {
    color: var(--dark);
}

/*  =========================================
*   ================== NAV ==================
*/

.nav .nav-link,
.nav .nav-link.active {
    font-size: 13.5px !important;
}

.nav .nav-link {
    color: var(--dark);
    font-weight: 600 !important;
    font-size: 15px !important;
}

.nav .nav-link.active {
    border-bottom: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

#nav .nav-button {
    position: relative;
}

#nav .nav-button::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    width: 90%;
    height: 1px;
    background-color: var(--primary);
    transition: transform 250ms;
}

#nav .nav-button:hover {
    color: var(--primary) !important;
}

#nav .nav-button:not(.active):hover::after {
    color: var(--primary) !important;
    transform: translateX(-50%) scaleX(1);
}

#lang .dropdown:hover>.dropdown-menu {
    display: block;
}

#lang .dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

/*  =========================================
*   ================== END NAV ==================
*/

/*  ==========================================
*   ================= FOOTER ================
*/
footer {
    /* background-color: var(--dark); */
    background: url('../images/site/banniere-light.jpg'), #000;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: top right -100px !important; */
    background-position: top right !important;
}

footer .footer-link {
    background-color: #000;
    /* background: linear-gradient(0deg, #121212 0%, #1a1a1a 100%); */
}

:root {
    --primary: #F4C243;
    --primary-light: #FFF8CE;
    --primary-dark: #C89103;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;
    --green: #61BB14;

    --ff-title: "Futura", sans-serif;
    --ff-source: "Lora", sans-serif;
}