/* ==============================================
// assets/css/style.css 
// Version 2.4 - LoisirsGratuits.ch
// ============================================== */

/* Palette LG (ajout) */
:root {
    --lg-primary: #48d148;        /* vert clair LG */
    --lg-primary-dark: #24992d;   /* vert foncé LG */
}

/* LOGO NAVBAR */
.logo-flottant {
    height: 50px;
    width: auto;
    position: static;
}

@media (min-width: 1200px) {
    .navbar {
        position: relative;
        padding-left: 140px;
    }
    .logo-flottant {
        position: absolute;
        top: -15px;
        left: 0;
        width: 127px;
        height: 129px;
        z-index: 1100;
    }
}

/* MENU */
.dropdown-item {
    padding-left: 30px;
    border-left: 5px solid transparent;
    transition: all .2s ease-in-out;
}
.dropdown-item:hover {
    background-color: #d1e7dd;
    color: #0f5132;
    font-weight: bold;
    border-left-color: #198754;
}

/* ==============================================
   BANNIÈRE
============================================== */

.banner-area {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    min-height: 240px; /* mobile */
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .banner-area { min-height: 300px; }
}
@media (min-width: 1200px) {
    .banner-area { min-height: 340px; }
}

/* Overlay discret (10%) */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
}

/* Texte */
.banner-content {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.banner-text {
    background: rgba(0, 102, 0, 0.50); /* vert transparent */
    padding: 1rem 2rem;
    border-radius: .25rem;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .banner-text {
        padding: .8rem 1.2rem;
        font-size: .95rem;
    }
}

/* GLOBAL */
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
