/* ==========================
   GOOGLE FONT
   ========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ==========================
   BASE
   ========================== */
body {
    font-family: 'Montserrat', sans-serif;
}

/* ==========================
   FIX JOOMLA / CASSIOPEIA
   ========================== */
body,
.site-grid,
.container-component,
main {
    transform: none !important;
    overflow: visible !important;
}

/* ==========================
   BANNER
   ========================== */
.container-banner.full-width {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.container-banner.full-width img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* ==========================
   TITRES
   ========================== */
h1.page-title,
h2.page-title,
h3.page-title {
    color: #ADB1BA !important;
    font-size: 1.6rem !important;
}

.page-header h1,
.item-title,
.item-title a {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #ADB1BA !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #ADB1BA !important;
}

/* ==========================
   MENU
   ========================== */
.navbar-nav .nav-link {
    font-weight: 700 !important;
    color: #ADB1BA !important;
    font-size: 1.9rem !important;
}

.dropdown-menu .dropdown-item {
    color: #ADB1BA !important;
    font-weight: 600;
}

/* ==========================
   HEADER / FOOTER
   ========================== */
.header,
.container-header,
.navbar,
.footer {
    background: #3E97B8 !important;
}

/* ==========================
   ANIMATION CONTENU
   ========================== */
.container-component {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(8px);
}

body.loaded .container-component {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition: all 1.1s ease;
}

/* ==========================
   NAVIGATION
   ========================== */
.nav-previous,
.nav-next,
.article-navigation,
.pager,
.pagination {
    display: none !important;
}

/* ==========================
   INFOS ARTICLES
   ========================== */
.article-info,
.article-info-term,
.com-content-article__info,
.com-content-article__info-container,
.icons,
.list-inline-item,
.article-details {
    display: none !important;
}

/* ==========================
   SCROLL ANIMATION
   ========================== */
.scroll-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    width: 100%;

    font-weight: 900;
    font-size: clamp(40px, 7vw, 90px);

    text-shadow: 0 4px 12px rgba(0,0,0,0.75);

    animation: scrollUp 10s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* ==========================
   BANDEAU FIXE
   ========================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 999999;

    display: flex;
    justify-content: space-around;
    align-items: center;

    background: #3E97B8;

    padding: 12px 0;

    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

/* ==========================
   LIENS BANDEAU
   ========================== */
.mobile-bottom-bar a {
    color: #ffffff !important;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Montserrat', sans-serif;
    font-weight: 600;

    font-size: 14px;
}

/* ==========================
   ICÔNES BLANCHES
   ========================== */
.mobile-bottom-bar i {
    color: #ffffff !important;
    font-size: 20px;
}

/* ==========================
   TEXTE BANDEAU
   ========================== */
.mobile-bottom-bar span {
    color: #ffffff !important;
    font-size: 11px;
    margin-top: 2px;
}


/* ==========================
   DESKTOP
   ========================== */
@media (min-width: 1024px) {

    .mobile-bottom-bar {
        justify-content: flex-end;

        gap: 45px;

        padding-right: 30px;
        padding-top: 10px;
        padding-bottom: 6px;
    }

    .mobile-bottom-bar a {
        font-size: 13px;
    }

    .mobile-bottom-bar i {
        font-size: 20px;
    }

    .mobile-bottom-bar span {
        font-size: 11px;
        margin-top: 10px;
    }
}