/* ==================================================
   BEAR'S TOULOUSE
   Identité visuelle - BEAR'S AFTER DARK
   ================================================== */


/* ==================================================
   EN-TÊTE - VERSION PC
   ================================================== */

.container-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;

    min-height: 160px;
    padding: 10px 30px;

    background: #080808;
}

/* Logo */
.container-header .navbar-brand {
    grid-column: 1;
    margin: 0;
    padding: 0;
}

.container-header .brand-logo img {
    width: auto;
    height: 135px;
    max-width: 170px;
    object-fit: contain;
}

/* Navigation */
.container-header .container-nav {
    grid-column: 2;
    align-self: center;
    justify-self: end;
    padding: 0;
}

.container-header .mod-menu {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 28px;
    margin: 0;
}

.container-header .mod-menu > li > a {
    color: #ffffff;
    text-decoration: none;

    font-weight: 600;
    letter-spacing: 0.5px;

    white-space: nowrap;
}

.container-header .mod-menu > li > a:hover,
.container-header .mod-menu > li.active > a {
    color: #f2a51a;
}


/* ==================================================
   HERO ACCUEIL - VERSION PC STABLE
   ================================================== */

.bears-hero {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    height: 520px;
    min-height: 520px;
}

/* Vidéo */
.bears-hero-video {
    position: absolute;
    inset: 0;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}

/* Bandeau noir */
.bears-hero-overlay {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 450px;

    display: flex;
    align-items: center;

    padding: 70px 8%;
    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.80);
}

/* Contenu */
.bears-hero-content {
    position: relative;
    z-index: 3;

    max-width: 760px;
}

/* ==================================================
   BOUTONS
   ================================================== */

.bears-btn {
    display: inline-block;

    padding: 14px 22px;

    border: 2px solid #f2a51a;

    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;

    transition: 0.2s ease;
}

.bears-btn-primary {
    background: #f2a51a;
    color: #080808 !important;
}

.bears-btn-primary:hover {
    background: #ffc34d;
    border-color: #ffc34d;
}

.bears-btn-secondary {
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff !important;
}

.bears-btn-secondary:hover {
    background: #f2a51a;
    color: #080808 !important;
}


/* ==================================================
   ARTICLE ACCUEIL
   ================================================== */

.com-content-article.item-page {
    margin: 0;
}


/* ==================================================
   BOUTON MENU MOBILE
   Caché sur PC
   ================================================== */

.bears-mobile-menu-toggle {
    display: none;
}


/* ==================================================
   VERSION MOBILE
   ================================================== */

@media (max-width: 800px) {

    /* ----------------------------------------------
       EN-TÊTE MOBILE
       ---------------------------------------------- */

    .container-header {
        position: relative;

        display: grid !important;
        grid-template-columns: 1fr auto;

        align-items: center;

        min-height: auto;
        padding: 14px 22px;

        background: #000;
    }

    .container-header .grid-child:first-child {
        grid-column: 1;
        grid-row: 1;

        width: auto;

        margin: 0;
        padding: 0;
    }

    .container-header .navbar-brand {
        margin: 0;
        padding: 0;
    }

    .container-header .navbar-brand img,
    .container-header .brand-logo img {
        width: 125px;
        max-width: 125px;
        height: auto;
    }

    .container-header .container-nav {
        grid-column: 2;
        grid-row: 1;

        position: static !important;

        display: block !important;

        width: auto !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* ----------------------------------------------
       BOUTON HAMBURGER
       ---------------------------------------------- */

    .bears-mobile-menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        margin: 0;
        padding: 0;

        background: transparent;

        border: 1px solid #f5a300;
        border-radius: 4px;

        color: #f5a300;

        font-size: 30px;
        line-height: 1;

        cursor: pointer;
    }


    /* ----------------------------------------------
       MENU MOBILE FERMÉ
       ---------------------------------------------- */

    .container-header .mod-menu {
        display: none !important;
    }


    /* ----------------------------------------------
       MENU MOBILE OUVERT
       ---------------------------------------------- */

    .container-header.bears-menu-open .mod-menu {
        position: absolute !important;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 9999;

        display: flex !important;
        flex-direction: column;

        width: 100% !important;

        margin: 0 !important;
        padding: 2px 24px 6px !important;

        box-sizing: border-box;

        background: #000;
    }

    .container-header .mod-menu > li {
        display: block;

        width: 100% !important;

        margin: 0;
        padding: 0;
    }

    .container-header .mod-menu > li > a {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 9px 8px !important;

        box-sizing: border-box;

        text-align: center;

        color: #ffffff;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);

        font-size: 0.92rem;
        line-height: 1.15;

        white-space: normal !important;
    }

    .container-header .mod-menu > li.active > a,
    .container-header .mod-menu > li > a:hover {
        color: #f5a300;
    }

    .container-header .mod-menu > li:last-child > a {
        border-bottom: none;
    }


    /* ----------------------------------------------
       HERO MOBILE
       ---------------------------------------------- */

    .bears-hero {
        min-height: 540px;

        margin: 16px;

        align-items: center;
    }

    .bears-hero-video {
        object-position: center;
    }

    .bears-hero-overlay {
        padding: 44px 24px;
    }

    .bears-hero-content {
        width: 100%;
        max-width: none;

        padding: 0;
    }

    .bears-hero-kicker {
        margin-bottom: 20px;

        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .bears-hero h1 {
        margin-bottom: 22px;

        font-size: 2.35rem;
        line-height: 1.05;
    }

    .bears-hero-days {
        margin-bottom: 26px;

        font-size: 0.95rem;
        line-height: 1.5;
    }

    .bears-hero-actions {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 14px;
    }

    .bears-hero-actions .bears-btn {
        width: 100%;

        padding: 16px 14px;

        box-sizing: border-box;

        text-align: center;
    }
}
@media (max-width: 800px) {

    /* Menu encore plus compact */
    .container-header .mod-menu > li > a {
        padding: 8px 8px !important;
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .container-header.bears-menu-open .mod-menu {
        padding: 0 24px 4px !important;
    }

    /* Quand le menu est ouvert,
       on pousse légèrement la page vers le bas */
    .container-header.bears-menu-open + * {
        margin-top: 12px;
    }
}
@media (max-width: 800px) {

    .bears-hero h1 {
        font-size: 2.1rem;
        line-height: 1.04;
    }

    .bears-hero-overlay {
        padding: 40px 24px;
    }

    .bears-hero-kicker {
        margin-bottom: 16px;
    }

    .bears-hero-days {
        margin-bottom: 22px;
    }
}
/* ==================================================
   FINITIONS MOBILE - BEAR'S TOULOUSE
   ================================================== */

@media (max-width: 800px) {

    /* Réduit l'espace entre l'en-tête et le hero */
    .bears-hero {
        margin: 10px 10px 16px;
    }

    /* Hero un peu plus large visuellement */
    .bears-hero-overlay {
        padding-left: 22px;
        padding-right: 22px;
    }

    /* Légère optimisation du titre */
    .bears-hero h1 {
        max-width: 100%;
    }

    /* Boutons bien équilibrés */
    .bears-hero-actions .bears-btn {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* ==================================================
   CETTE SEMAINE AU BEAR'S
   ================================================== */

.bears-week {
    padding: 60px 3%;
    background: #0b0d0e;
    color: #ffffff;
}

.bears-week-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.bears-week-kicker {
    margin: 0 0 8px;
    color: #f2a51a;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.bears-week-heading h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 2.6rem;
    line-height: 1.1;
    font-weight: 800;
}

.bears-week-heading > p:last-child {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
}


/* Grille des 4 soirées */
.bears-week-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    max-width: 1180px;
    margin: 0 auto;
}


/* Carte soirée */
.bears-event-card {
    position: relative;
    overflow: hidden;

    min-height: 280px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.01)
        ),
        #111416;

    border: 1px solid rgba(255,255,255,0.10);
    border-bottom: 3px solid #f2a51a;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.bears-event-card:hover {
    transform: translateY(-5px);
    border-color: #f2a51a;
    background: #15191b;
}


/* Jour */
.bears-event-day {
    padding: 15px 20px;

    background: #f2a51a;
    color: #080808;

    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* Contenu */
.bears-event-content {
    flex: 1;
    padding: 24px 22px;
}

.bears-event-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 1.4rem;
    line-height: 1.15;
    font-weight: 800;
}

.bears-event-time {
    margin: 0 0 18px;

    color: #f2a51a;

    font-size: 0.95rem;
    font-weight: 700;
}

.bears-event-content p:last-child {
    margin: 0;

    color: rgba(255,255,255,0.72);

    line-height: 1.55;
}


/* ==================================================
   VERSION TABLETTE
   ================================================== */

@media (max-width: 1000px) {

    .bears-week-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==================================================
   VERSION MOBILE
   ================================================== */

@media (max-width: 600px) {

    .bears-week {
        padding: 50px 20px;
    }

    .bears-week-heading {
        margin-bottom: 30px;
    }

    .bears-week-heading h2 {
        font-size: 2rem;
    }

    .bears-week-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bears-event-card {
        min-height: auto;
    }

    .bears-event-content {
        padding: 22px 20px;
    }
}
.bears-event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
/* ==================================================
   SOIRÉES - IMAGE À GAUCHE / TEXTE À DROITE
   ================================================== */

.bears-event-card-horizontal .bears-event-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 28px;
    padding: 22px;
}

.bears-event-card-horizontal .bears-event-photo {
    flex: 0 0 280px;
    max-width: 280px;
}

.bears-event-card-horizontal .bears-event-photo img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: 230px;
    object-fit: contain !important;
}

.bears-event-card-horizontal .bears-event-content {
    flex: 1 1 auto;
    padding: 0 !important;
}

.bears-event-card-horizontal .bears-event-content h3 {
    margin-top: 0;
}
/* Smartphone */
@media (max-width: 800px) {

    .bears-event-card-horizontal .bears-event-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .bears-event-card-horizontal .bears-event-photo {
        flex: 0 0 auto;
        max-width: 280px;
        margin: 0 auto;
    }

    .bears-event-card-horizontal .bears-event-photo img {
        display: block;
        width: 100% !important;
        height: auto !important;
        max-height: 240px;
        object-fit: contain !important;
    }

} /* <-- fermeture du @media */


/* ==================================================
   PROGRAMME - MISE EN PAGE TYPE MAQUETTE
   ================================================== */

.bears-program-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;

    width: 100%;
    max-width: none;
    margin: 0;
}


.bears-program-column {
    min-width: 0;
}

.bears-program-title {
    margin-bottom: 14px;
}

.bears-program-title h2 {
    margin: 0;

    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.bears-program-title h2::after {
    content: "";
    display: block;

    width: 42px;
    height: 3px;

    margin-top: 8px;

    background: #f2a51a;
}


/* Modules dans les colonnes */
.bears-program-layout .bears-event-card {
    margin-bottom: 18px;
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 800px) {

    .bears-program-layout {
        grid-template-columns: 1fr;
    }

    .bears-program-right {
        margin-top: 10px;
    }

}
/* ==================================================
   PROCHAINEMENT - JEUDI + VENDREDI CÔTE À CÔTE
   ================================================== */

.bears-next-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

/* Cartes JEUDI / VENDREDI en format vertical */
.bears-next-grid .bears-event-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px;
    padding: 16px;
}

.bears-next-grid .bears-event-photo {
    flex: 0 0 auto !important;
    width: 100%;
    max-width: 100% !important;
}

.bears-next-grid .bears-event-photo img {
    width: 100% !important;
    height: 170px !important;
    object-fit: contain !important;
}

.bears-next-grid .bears-event-content {
    width: 100%;
    padding: 0 !important;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bears-next-grid > * {
    height: 100%;
}

.bears-next-grid > * .bears-event-card,
.bears-next-grid > * .bears-event-row {
    height: 100%;
}

/* Smartphone : retour l'un sous l'autre */
@media (max-width: 800px) {

    .bears-next-grid {
        grid-template-columns: 1fr;
    }

    .bears-next-grid > *,
    .bears-next-grid > * .bears-event-card,
    .bears-next-grid > * .bears-event-row {
        height: auto !important;
    }
}

/* ==================================================
   AFTER BEARS
   ================================================== */

.bears-after {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 42px;
    align-items: center;

    width: 100%;
    margin: 45px 0 0;
    padding: 32px;

    box-sizing: border-box;

    background: #111416;
    border-top: 3px solid #f2a51a;
    border-bottom: 3px solid #f2a51a;
}

.bears-after-image {
    display: flex;
    justify-content: center;
}

.bears-after-image img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
}

.bears-after-content {
    color: #ffffff;
}

.bears-after-kicker {
    margin: 0 0 6px;

    color: #f2a51a;

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bears-after-content h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 2.4rem;
    font-weight: 800;
}

.bears-after-hours {
    margin: 0 0 22px;

    color: #f2a51a;

    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.45;
}

.bears-after-content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.bears-after-address {
    margin-bottom: 0 !important;

    color: rgba(255,255,255,0.72);
    font-weight: 600;
}


/* Smartphone */
@media (max-width: 800px) {

    .bears-after {
        grid-template-columns: 1fr;
        gap: 24px;

        padding: 22px;
    }

    .bears-after-image img {
        max-width: 320px;
    }

    .bears-after-content h2 {
        font-size: 2rem;
    }

}
/* ==================================================
   WELCOME TO BEAR'S
   ================================================== */

.bears-welcome {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;

    width: 100%;
    margin-top: 45px;

    background: #111416;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bears-welcome-image {
    min-height: 380px;
    overflow: hidden;
}

.bears-welcome-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

.bears-welcome-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 48px;

    color: #ffffff;
}

.bears-welcome-kicker {
    margin: 0 0 8px;

    color: #f2a51a;

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bears-welcome-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 2.4rem;
    font-weight: 800;
}

.bears-welcome-content p {
    margin: 0 0 16px;

    line-height: 1.65;
    color: rgba(255,255,255,0.84);
}

.bears-welcome-content .bears-btn {
    align-self: flex-start;
    margin-top: 10px;
}


/* Smartphone */
@media (max-width: 800px) {

    .bears-welcome {
        grid-template-columns: 1fr;
    }

    .bears-welcome-image {
        min-height: 260px;
    }

    .bears-welcome-content {
        padding: 28px 22px;
    }

    .bears-welcome-content h2 {
        font-size: 2rem;
    }

}
/* ==================================================
   L'AMBIANCE EN IMAGES
   ================================================== */

.bears-gallery-home {
    margin-top: 45px;
    padding: 35px 3% 40px;

    background: #0b0d0e;
}

.bears-gallery-heading {
    margin-bottom: 20px;
}

.bears-gallery-kicker {
    margin: 0 0 6px;

    color: #f2a51a;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bears-gallery-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 2rem;
    font-weight: 800;
}

.bears-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.bears-gallery-grid img {
    display: block;

    width: 100%;
    height: 170px;

    object-fit: cover;

    border: 1px solid rgba(255,255,255,0.12);
}


/* Tablette */
@media (max-width: 1000px) {

    .bears-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Smartphone */
@media (max-width: 600px) {

    .bears-gallery-home {
        padding: 30px 20px;
    }

    .bears-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bears-gallery-grid img {
        height: 140px;
    }

}
/* ==================================================
   INFOS PRATIQUES
   ================================================== */

.bears-infos {
    margin-top: 45px;
    padding: 40px 3%;

    background: #0b0d0e;
    color: #ffffff;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.bears-infos-heading {
    margin-bottom: 28px;
}

.bears-infos-kicker {
    margin: 0 0 6px;

    color: #f2a51a;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bears-infos-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 2rem;
    font-weight: 800;
}

.bears-infos-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 0.8fr;
    gap: 30px;

    align-items: stretch;
}


/* INFOS */

.bears-infos-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bears-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bears-info-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.bears-info-item h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 1.05rem;
}

.bears-info-item p {
    margin: 0 0 4px;

    color: rgba(255,255,255,0.76);

    line-height: 1.45;
}


/* CARTE */

.bears-infos-map {
    min-height: 280px;
}

.bears-infos-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;

    border: 0;
}


/* RÉSEAUX */

.bears-infos-social {
    padding: 24px;

    background: #111416;
    border: 1px solid rgba(255,255,255,0.08);
}

.bears-infos-social h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 1.35rem;
}

.bears-infos-social p {
    color: rgba(255,255,255,0.76);
    line-height: 1.5;
}

.bears-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 20px;
}

.bears-social-links a {
    display: inline-block;

    padding: 12px 14px;

    border: 1px solid #f2a51a;

    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.bears-social-links a:hover {
    background: #f2a51a;
    color: #080808;
}


/* ==================================================
   RESPONSIVE
   ================================================== */

@media (max-width: 1000px) {

    .bears-infos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bears-infos-social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {

    .bears-infos-grid {
        grid-template-columns: 1fr;
    }

    .bears-infos-social {
        grid-column: auto;
    }

}
/* ==================================================
   LARGEUR GÉNÉRALE DU SITE
   ================================================== */

.site-grid,
.container-component,
.grid-child,
.container-header .grid-child {
    max-width: 1920px !important;
    width: 100% !important;
}

/* Contenu principal */
main,
.container-component {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Sections personnalisées Bear's */
.bears-week,
.bears-after,
.bears-welcome,
.bears-gallery-home,
.bears-infos {
    width: 100%;
    max-width: none;
    padding-left: 2% !important;
    padding-right: 2% !important;
}
/* ==================================================
   SOIRÉE SPÉCIALE - PLEINE LARGEUR + VIOLET
   ================================================== */

.bears-program-special {
    width: 100% !important;
    max-width: none !important;
    margin: 24px 0 0 !important;
    box-sizing: border-box;
}

.bears-program-special .bears-event-card {
    width: 100% !important;
    max-width: none !important;

    border-bottom: 3px solid #6b2fa3 !important;
}

.bears-program-special .bears-event-card.bears-event-special > .bears-event-day {
    background: #6b2fa3 !important;
    color: #ffffff !important;
}
/* ==================================================
   FOOTER BEAR'S TOULOUSE
   ================================================== */

.bears-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;

    width: 100%;
    padding: 28px 3%;

    box-sizing: border-box;

    background: #080808;
    color: #ffffff;

    border-top: 1px solid rgba(255,255,255,0.12);
}


/* LOGO + ADRESSE */

.bears-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bears-footer-logo {
    width: 85px;
    height: auto;
    display: block;
}

.bears-footer-brand-text {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}

.bears-footer-brand-text strong {
    color: #ffffff;
}


/* LIENS */

.bears-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    text-align: center;
}

.bears-footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
}

.bears-footer-links a:hover {
    color: #f2a51a;
}

.bears-footer-links span {
    color: rgba(255,255,255,0.30);
}


/* COPYRIGHT */

.bears-footer-copy {
    text-align: right;

    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}


/* ==================================================
   FOOTER MOBILE
   ================================================== */

@media (max-width: 800px) {

    .bears-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bears-footer-brand {
        justify-content: center;
    }

    .bears-footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .bears-footer-links span {
        display: none;
    }

    .bears-footer-copy {
        text-align: center;
    }

}
/* ==================================================
   POPUP PUBLICITAIRE FINALE - BEAR'S
   ================================================== */

.bears-promo-popup {
    position: fixed;
    inset: 0;
    z-index: 10002;

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

    padding: 20px;
}

.bears-promo-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.82);
}

.bears-promo-box {
    position: relative;
    z-index: 2;

    width: min(860px, 94vw);
    max-height: 90vh;

    overflow: auto;

    background: #111416;
    color: #ffffff;

    border-top: 4px solid #f2a51a;
    border-bottom: 2px solid #f2a51a;

    box-shadow: 0 18px 55px rgba(0,0,0,0.65);
}

.bears-promo-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 5;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;

    background: rgba(0,0,0,0.55);
    color: #ffffff;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;
}

.bears-promo-close:hover {
    border-color: #f2a51a;
    color: #f2a51a;
}

.bears-promo-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    align-items: stretch;
}

.bears-promo-image {
    background: #080808;
}

.bears-promo-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 430px;

    object-fit: contain;
}

.bears-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 42px 40px;

    text-align: left;
}

.bears-promo-kicker {
    margin: 0 0 8px;

    color: #f2a51a;

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bears-promo-content h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 2.4rem;
    line-height: 1.05;
    font-weight: 800;
}

.bears-promo-date {
    margin-bottom: 22px !important;

    color: #f2a51a !important;

    font-weight: 800;
}

.bears-promo-content p {
    margin: 0 0 16px;

    color: rgba(255,255,255,0.82);

    line-height: 1.6;
}

.bears-promo-btn {
    align-self: flex-start;
    margin-top: 8px;
}


/* Smartphone */

@media (max-width: 700px) {

    .bears-promo-popup {
        padding: 12px;
    }

    .bears-promo-box {
        width: 100%;
        max-height: 92vh;
    }

    .bears-promo-grid {
        grid-template-columns: 1fr;
    }

    .bears-promo-image img {
        min-height: 0;
        max-height: 320px;
    }

    .bears-promo-content {
        padding: 26px 22px;
    }

    .bears-promo-content h2 {
        font-size: 1.9rem;
    }

    .bears-promo-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

}

/* ==================================================
   BANDEAU COOKIES BEAR'S
   ================================================== */

.bears-cookie-banner {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;

    z-index: 10000 !important;

    padding: 22px !important;

    background: #111416 !important;
    color: #ffffff !important;

    border: 1px solid rgba(255,255,255,0.15) !important;
    border-top: 3px solid #f2a51a !important;

    box-shadow: 0 10px 35px rgba(0,0,0,0.45) !important;
}

.bears-cookie-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

.bears-cookie-text strong {
    color: #ffffff !important;
}

.bears-cookie-text p {
    margin: 6px 0 0 !important;
    color: rgba(255,255,255,0.78) !important;
}

.bears-cookie-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.bears-cookie-actions button {
    padding: 11px 16px !important;

    border: 1px solid #f2a51a !important;

    background: transparent !important;
    color: #ffffff !important;

    font-weight: 700 !important;
    cursor: pointer !important;
}

#bears-cookie-accept {
    background: #f2a51a !important;
    color: #080808 !important;
}


/* ==================================================
   PANNEAU PERSONNALISER
   ================================================== */

.bears-cookie-panel {
    position: fixed !important;
    inset: 0 !important;

    z-index: 10001 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    background: rgba(0,0,0,0.75) !important;
}

.bears-cookie-panel-box {
    position: relative !important;

    width: min(560px, 92vw) !important;
    padding: 30px !important;

    background: #111416 !important;
    color: #ffffff !important;

    border-top: 3px solid #f2a51a !important;
}

#bears-cookie-close {
    position: absolute !important;
    top: 12px !important;
    right: 14px !important;

    background: none !important;
    border: 0 !important;

    color: #ffffff !important;

    font-size: 28px !important;
    cursor: pointer !important;
}


/* Smartphone */
@media (max-width: 700px) {

    .bears-cookie-banner {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
    }

    .bears-cookie-content {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .bears-cookie-actions {
        flex-direction: column !important;
    }

    .bears-cookie-actions button {
        width: 100% !important;
    }
}
#bears-cookie-save {
    padding: 12px 18px !important;
    background: #f2a51a !important;
    color: #080808 !important;
    border: 1px solid #f2a51a !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

#bears-cookie-save:hover {
    background: #ffc34d !important;
    border-color: #ffc34d !important;
}
/* ==================================================
   CORRECTION AFFICHAGE / MASQUAGE POPUPS
   ================================================== */

.bears-cookie-banner[hidden],
.bears-cookie-panel[hidden],
.bears-promo-popup[hidden] {
    display: none !important;
}
/* ==================================================
   ALIGNEMENT BAS DES MODULES
   ================================================== */

.bears-program-layout {
    align-items: stretch;
}

.bears-program-left,
.bears-program-right {
    display: flex;
    flex-direction: column;
}

/* La colonne gauche occupe toute la hauteur */
.bears-program-left {
    height: 100%;
}

/* SAMEDI et DIMANCHE se répartissent la hauteur */
.bears-program-left > * {
    flex: 1 1 0;
}

/* DIMANCHE descend bien jusqu'en bas */
.bears-program-left .bears-event-card {
    height: 100%;
}
/* ==================================================
   ALIGNEMENT DES TITRES DE COLONNES
   ================================================== */

.bears-program-title {
    min-height: 58px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bears-program-title h2 {
    margin: 0;
    line-height: 1.15;
}
.bears-program-left,
.bears-program-right {
    align-self: stretch;
}
/* ==================================================
   PROGRAMME - ALIGNEMENT FINAL DU BAS
   ================================================== */

/* Les deux colonnes principales ont la même hauteur */
.bears-program-layout {
    align-items: stretch !important;
}

.bears-program-left,
.bears-program-right {
    height: 100% !important;
}

/* La zone JEUDI + VENDREDI remplit toute la hauteur disponible */
.bears-program-right .bears-next-grid {
    flex: 1 1 auto !important;
    height: 100% !important;
    align-items: stretch !important;
}

/* Les conteneurs Joomla de JEUDI et VENDREDI remplissent la grille */
.bears-next-grid > * {
    display: flex !important;
    height: 100% !important;
    min-height: 0 !important;
}

/* JEUDI et VENDREDI vont jusqu'en bas */
.bears-next-grid > * .bears-event-card {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

/* DIMANCHE va jusqu'au même niveau */
.bears-program-left > :last-child {
    display: flex !important;
}

.bears-program-left > :last-child .bears-event-card {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0 !important;
}
/* ==================================================
   SAMEDI + DIMANCHE - MÊME LARGEUR
   ================================================== */

.bears-program-left > * {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.bears-program-left .bears-event-card {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}
/* ==================================================
   DIMANCHE - MÊME LARGEUR QUE SAMEDI
   ================================================== */

#mod-custom113,
#mod-custom113 .bears-event-card {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Sécurité si Joomla ajoute un conteneur autour */
.bears-program-left #mod-custom113 {
    align-self: stretch !important;
    flex: 1 1 auto !important;
}
/* ==================================================
   ANIMATIONS DOUCES - BEAR'S TOULOUSE
   ================================================== */

/* Apparition légère des sections */
.bears-week,
.bears-after,
.bears-welcome,
.bears-gallery-home,
.bears-infos,
.bears-program-special {
    animation: bearsFadeUp 0.7s ease both;
}

@keyframes bearsFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Cartes soirées */
.bears-event-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.bears-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}


/* Images des soirées */
.bears-event-photo {
    overflow: hidden;
}

.bears-event-photo img {
    transition: transform 0.35s ease;
}

.bears-event-card:hover .bears-event-photo img {
    transform: scale(1.035);
}


/* Galerie */
.bears-gallery-grid img {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.bears-gallery-grid img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}


/* Boutons */
.bears-btn {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.bears-btn:hover {
    transform: translateY(-2px);
}
/* ==================================================
   APPARITION AU SCROLL
   ================================================== */

.bears-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.bears-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respecte les préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {

    .bears-reveal,
    .bears-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* ==================================================
   APPARITION EN CASCADE DES CARTES
   ================================================== */

.bears-event-card.bears-card-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.bears-event-card.bears-card-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Délais progressifs */
.bears-event-card.bears-card-reveal:nth-of-type(1) {
    transition-delay: 0.05s;
}

.bears-event-card.bears-card-reveal:nth-of-type(2) {
    transition-delay: 0.15s;
}

.bears-event-card.bears-card-reveal:nth-of-type(3) {
    transition-delay: 0.25s;
}

.bears-event-card.bears-card-reveal:nth-of-type(4) {
    transition-delay: 0.35s;
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {

    .bears-event-card.bears-card-reveal,
    .bears-event-card.bears-card-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.bears-gallery-grid img,
.bears-gallery-video {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
}

.bears-gallery-video {
    background: #000;
}

@media (max-width: 600px) {

    .bears-gallery-grid img,
    .bears-gallery-video {
        height: 140px;
    }
}
/* ==================================================
   POPUP PUBLICITÉ BEAR'S
   ================================================== */

.bears-ad-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    padding: 20px;

    background: rgba(0, 0, 0, 0.82);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.bears-ad-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.bears-ad-box {
    position: relative;

    width: 100%;
    max-width: 520px;

    padding: 40px 30px;

    text-align: center;

    background: #321343;
    color: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55);
}

.bears-ad-new {
    display: inline-block;

    margin-bottom: 15px;
    padding: 7px 16px;

    background: #d39018;
    color: #ffffff;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;

    border-radius: 20px;
}

.bears-ad-box h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 2rem;
}

.bears-ad-date {
    font-size: 1.25rem;
    font-weight: 700;
}

.bears-ad-close {
    position: absolute;

    top: 10px;
    right: 15px;

    border: 0;
    background: transparent;

    color: #ffffff;

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;
}
/* ==================================================
   BLOC NOUVEAU - ACCUEIL
   ================================================== */

.bears-new {
    max-width: 1100px;

    margin: 35px auto;
    padding: 28px 30px;

    background: linear-gradient(
        135deg,
        #321343,
        #511f62
    );

    color: #ffffff;

    border-radius: 14px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}

.bears-new-label {
    display: inline-block;

    margin-bottom: 12px;
    padding: 6px 16px;

    background: #d39018;

    border-radius: 20px;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.bears-new h2 {
    margin: 5px 0 10px;

    color: #ffffff;

    font-size: 1.8rem;
}

.bears-new-date {
    margin-bottom: 8px;

    font-size: 1.1rem;
    font-weight: 700;
}

.bears-new p {
    margin-bottom: 5px;
}


/* Smartphone */
@media (max-width: 700px) {

    .bears-new {
        margin: 25px 15px;
        padding: 24px 18px;
    }

    .bears-new h2 {
        font-size: 1.5rem;
    }

    .bears-ad-box {
        padding: 35px 20px 28px;
    }

}
/* ==================================================
   CARTE NOUVEAU
   ================================================== */

.bears-event-new .bears-event-day {
    background: #321343;
    color: #ffffff;
}

.bears-event-new {
    border: 2px solid #321343;
}
/* ==================================================
   NOUVEAU - PLEINE LARGEUR
   ================================================== */

.bears-event-new {
    width: 100% !important;
    max-width: none !important;

    border-bottom: 3px solid #6b2fa3 !important;
}

.bears-event-new > .bears-event-day {
    background: #6b2fa3 !important;
    color: #ffffff !important;
}

.bears-event-new .bears-event-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 28px;
    padding: 22px;
}

.bears-event-new .bears-event-photo {
    flex: 0 0 280px;
    max-width: 280px;
}

.bears-event-new .bears-event-photo img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: 230px;
    object-fit: contain !important;
}

.bears-event-new .bears-event-content {
    flex: 1 1 auto;
    padding: 0 !important;
}

@media (max-width: 800px) {

    .bears-event-new .bears-event-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .bears-event-new .bears-event-photo {
        flex: 0 0 auto;
        max-width: 280px;
        margin: 0 auto;
    }
}
/* ==================================================
   NOUVEAU - FOND VIOLET
   ================================================== */

.bears-event-new {
    background: linear-gradient(
        135deg,
        #2d1238,
        #451852
    ) !important;

    border: 1px solid #6b2fa3 !important;
    border-bottom: 3px solid #6b2fa3 !important;
}

.bears-event-new > .bears-event-day {
    background: #6b2fa3 !important;
    color: #ffffff !important;
}

.bears-event-new .bears-event-content p {
    color: rgba(255,255,255,0.88);
}
/* ==================================================
   INFOS PRATIQUES - CORRECTION ESPACE MOBILE
   ================================================== */

@media (max-width: 700px) {

    .bears-infos {
        padding-bottom: 24px !important;
    }

    .bears-infos-grid {
        gap: 22px !important;
    }

    .bears-infos-details {
        gap: 18px !important;
    }

    .bears-infos-social {
        margin-top: 0 !important;
    }

}
/* ==================================================
   INFOS PRATIQUES MOBILE
   SUPPRIMER LE GRAND ESPACE AVANT "SUIVEZ-NOUS"
   ================================================== */

@media (max-width: 700px) {

    .bears-infos-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .bears-infos-details {
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .bears-infos-map {
        height: auto !important;
        min-height: 0 !important;
    }

    .bears-infos-social {
        height: auto !important;
        min-height: 0 !important;
        margin-top: 0 !important;
    }
}
/* ==================================================
   INFOS PRATIQUES - DERNIÈRE FINITION MOBILE
   ================================================== */

@media (max-width: 700px) {

    .bears-infos-grid {
        gap: 16px !important;
    }

    .bears-infos-social {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 0 !important;
        padding: 22px 24px !important;
    }
}
/* ==================================================
   FOOTER - FINITION MOBILE
   ================================================== */

@media (max-width: 800px) {

    .bears-footer {
        gap: 20px !important;
        padding: 24px 18px !important;
    }

    .bears-footer-brand {
        flex-direction: column;
        gap: 10px !important;
    }

    .bears-footer-logo {
        width: 70px !important;
    }

    .bears-footer-brand-text {
        font-size: 0.88rem !important;
        line-height: 1.4;
    }

    .bears-footer-links {
        gap: 6px !important;
    }

    .bears-footer-links a,
    .bears-footer-copy {
        font-size: 0.88rem !important;
    }
}
/* ==================================================
   FOOTER MOBILE - SUPPRIMER LES | ENTRE LES LIENS
   ================================================== */

@media (max-width: 800px) {

    .bears-footer-links {
        font-size: 0 !important;
        gap: 8px !important;
    }

    .bears-footer-links a {
        display: block !important;
        font-size: 0.88rem !important;
        line-height: 1.35 !important;
    }
}
/* ==================================================
   BOUTON RETOUR EN HAUT
   ================================================== */

#bears-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

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

    border: 1px solid #f2a51a;
    border-radius: 50%;

    background: #111416;
    color: #f2a51a;

    font-size: 1.5rem;
    font-weight: 800;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    z-index: 9998;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

#bears-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

#bears-back-to-top:hover {
    background: #f2a51a;
    color: #080808;
    transform: translateY(-3px);
}

@media (max-width: 700px) {
    #bears-back-to-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }
}
/* ==================================================
   INFOS PRATIQUES - FINITION PAGE
   ================================================== */

.bears-infos-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bears-infos-map iframe {
    display: block;
}
/* ==================================================
   DÉCOUVRIR LE BAR - VIDÉO
   ================================================== */

.bears-welcome-video {
    overflow: hidden;
    min-height: 380px;
    background: #080808;
}

.bears-welcome-video video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

/* Smartphone */
@media (max-width: 800px) {

    .bears-welcome-video {
        min-height: 240px;
    }

    .bears-welcome-video video {
        min-height: 240px;
    }
}
/* ==================================================
   LE BAR - FINITION VIDÉO
   ================================================== */

.bears-welcome-video {
    min-height: 340px;
}

.bears-welcome-video video {
    min-height: 340px;
    max-height: 420px;
    object-fit: cover;
}

/* Smartphone */
@media (max-width: 800px) {

    .bears-welcome-video {
        min-height: 220px;
    }

    .bears-welcome-video video {
        min-height: 220px;
        max-height: 300px;
    }
}
/* ==================================================
   LE BAR - CENTRAGE VERTICAL DE LA VIDÉO
   ================================================== */

.bears-welcome-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bears-welcome-video video {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* ==================================================
   LE BAR - UN LIEU VIVANT ET CONVIVIAL
   ================================================== */

.bears-convivial {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 42px;
    align-items: center;

    width: 100%;
    margin-top: 45px;
    padding: 32px;

    box-sizing: border-box;

    background: #111416;
    border-bottom: 3px solid #f2a51a;
}

.bears-convivial-content {
    color: #ffffff;
}

.bears-convivial-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 2.4rem;
    font-weight: 800;
}

.bears-convivial-content p {
    margin-bottom: 16px;

    line-height: 1.65;
    color: rgba(255,255,255,0.84);
}

.bears-convivial-image {
    display: flex;
    justify-content: center;
}

.bears-convivial-image img {
    display: block;

    width: 100%;
    max-width: 280px;
    height: auto;

    object-fit: cover;
}


/* Smartphone */
@media (max-width: 800px) {

    .bears-convivial {
        grid-template-columns: 1fr;
        gap: 24px;

        padding: 22px;
    }

    .bears-convivial-content h2 {
        font-size: 2rem;
    }

    .bears-convivial-image {
        order: 2;
    }

    .bears-convivial-image img {
        max-width: 100%;
    }
}
/* ==================================================
   PLANNING MENSUEL BEAR'S - VERSION NO BOSS PROPRE
   ================================================== */


/* ==================================================
   CONTENEUR GÉNÉRAL
   ================================================== */

.bears-monthly-planning {
    width: calc(100vw - 60px) !important;
    max-width: 1750px !important;

    margin: 40px auto !important;
    padding: 0 20px 40px;

    position: relative;

    box-sizing: border-box;

    background: #071015;
    color: #ffffff;
}


/*
 * Compensation du conteneur Joomla sur grand écran.
 * On conserve le positionnement actuellement validé.
 */
@media (min-width: 1200px) {

    .bears-monthly-planning {
        transform: translateX(-200px) !important;
    }
}



/* ==================================================
   EN-TÊTE
   ================================================== */

.bears-planning-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        400px;

    gap: 28px;

    width: 100% !important;
    min-height: 190px;

    overflow: hidden;

    background: #080b0d;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}



/* ==================================================
   BLOC LOGO + À NE PAS MANQUER
   ================================================== */

.bears-planning-feature {
    display: flex;
    align-items: stretch;

    gap: 22px;

    width: 100%;
    padding: 18px 20px;

    box-sizing: border-box;

    background: #050505;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}



/* LOGO */

.bears-planning-feature-logo {
    flex: 0 0 200px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 10px;

    background: #000;
}


.bears-planning-feature-logo img {
    display: block;

    width: 280px;
    max-width: 100%;
    height: auto;
}



/* ==================================================
   À NE PAS MANQUER
   ================================================== */

.bears-planning-feature-highlight {
    flex: 1;

    display: flex;
    align-items: stretch;
    justify-content: space-between;

    min-height: 160px;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #090909 0%,
            #16071c 50%,
            #30053c 100%
        );

    border: 1px solid #b817d1;
    border-left: 4px solid #f4a51c;

    box-shadow:
        0 0 18px rgba(184,23,209,0.14);
}


.bears-planning-feature-text {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px 28px;
}


.bears-feature-kicker {
    margin: 0 0 6px;

    color: #f4a51c;

    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.bears-planning-feature-text h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 2rem;
    line-height: 1.05;
    font-weight: 900;

    text-transform: uppercase;
}


.bears-feature-date {
    margin: 0 0 13px;

    color: #f4a51c;

    font-size: 1rem;
    font-weight: 800;
}


.bears-feature-description {
    margin: 2px 0;

    color: #ffffff;

    font-size: 1rem;
    line-height: 1.4;
}



/* AFFICHE DU BLOC */

.bears-planning-feature-poster {
    flex: 0 0 190px;

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

    background: #000;
}


.bears-planning-feature-poster img {
    display: block;

    width: 100%;
    height: 100%;

    max-height: 210px;

    object-fit: contain;
}



/* BLOC CLIQUABLE */

.bears-feature-clickable {
    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.bears-feature-clickable:hover {
    box-shadow:
        0 0 22px rgba(184,23,209,0.35);
}



/* ==================================================
   TITRE DU MOIS
   ================================================== */

.bears-planning-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    min-height: 190px;

    padding: 26px 36px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at top right,
            rgba(105,0,85,0.35),
            transparent 45%
        ),
        #071015;
}


.bears-planning-kicker {
    margin: 0 0 8px;

    color: #f2a51a;

    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
}


.bears-planning-header-text h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 2.2rem !important;
    line-height: 1.05 !important;
    font-weight: 900;
}


.bears-planning-header-text p:last-child {
    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 1.15rem;
    line-height: 1.45;
}



/* ==================================================
   CALENDRIER + PANNEAU DE DROITE
   ================================================== */

.bears-planning-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        400px;

    gap: 28px;

    align-items: start;
}


.bears-planning-calendar-area {
    min-width: 0;
}



/* ==================================================
   GRILLE
   ================================================== */

.bears-planning-grid {
    display: grid;

    grid-template-columns:
        110px
        repeat(7, minmax(0, 1fr));

    gap: 8px;

    min-width: 0;

    margin-top: 10px;
}



/* ==================================================
   NOMS DES JOURS
   ================================================== */

.bears-day-name {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    min-height: 0;

    padding: 0 6px;

    text-align: center;

    color: #f2a51a;

    background: #10191d;

    border:
        1px solid rgba(255,255,255,0.28);

    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.7px;
}



/* ==================================================
   NUMÉRO DE SEMAINE
   ================================================== */

.bears-week-label {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 180px;

    padding: 12px;

    box-sizing: border-box;

    text-align: center;

    background: #f2a51a;
    color: #080808;

    border: 1px solid #f2a51a;
}


.bears-week-label strong {
    margin-bottom: 7px;

    font-size: 0.95rem;
    font-weight: 900;
}


.bears-week-label-empty {
    visibility: hidden;

    height: 42px !important;
    min-height: 0 !important;

    padding: 0 !important;
}



/* ==================================================
   CASE JOUR
   ================================================== */

.bears-calendar-day {
    position: relative;

    min-height: 180px;

    overflow: hidden;

    box-sizing: border-box;

    background: #0d161a;

    border:
        1px solid rgba(255,255,255,0.22);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.bears-calendar-day:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.35);
}



/* CASE VIDE */

.bears-empty {
    cursor: default;
}


.bears-empty:hover {
    transform: none;
    box-shadow: none;
}



/* ==================================================
   DATE
   ================================================== */

.bears-date {
    position: absolute;

    top: 6px;
    right: 9px;

    z-index: 4;

    color: #ffffff;

    font-size: 1.2rem;
    font-weight: 900;
}



/* ==================================================
   JOUR FERMÉ
   ================================================== */

.bears-closed {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #0d171b,
            #101b20
        );

    color: #72828c;
}


.bears-closed .bears-date {
    color: #72828c;
}


.bears-closed-icon {
    margin-bottom: 8px;

    color: #72828c;

    font-size: 3rem;
    line-height: 1;
}


.bears-closed-text {
    color: #72828c;

    font-size: 1rem;
    font-weight: 800;
}



/* ==================================================
   SOIRÉES
   ================================================== */

.bears-calendar-day.bears-event {
    border:
        1px solid rgba(255,255,255,0.22);
}


.bears-event img {
    display: block;

    width: 100%;
    height: 115px;

    object-fit: cover;
}


.bears-event-info {
    padding: 9px 8px 10px;

    text-align: center;

    background: rgba(0,0,0,0.48);
}


.bears-event-info h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 0.92rem;
    line-height: 1.1;
    font-weight: 900;
}


.bears-event-info p {
    margin: 0;

    color: rgba(255,255,255,0.86);

    font-size: 0.85rem;
    font-weight: 700;
}



/* Bandeau supérieur uniforme */

.bears-event-orange::before,
.bears-event-red::before,
.bears-event-purple::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 28px;

    z-index: 2;

    background: #d8b95a;
}



/* ==================================================
   JOUR SÉLECTIONNÉ
   ================================================== */

.bears-calendar-day.is-selected {
    position: relative;
    z-index: 5;

    border: 2px solid #4da3ff !important;

    outline: none !important;

    box-shadow:
        inset 0 0 0 3px #4da3ff,
        0 0 12px rgba(77,163,255,0.45) !important;
}



/* ==================================================
   JOUR ACTUEL
   ================================================== */

.bears-calendar-day.bears-today {
    position: relative;
    z-index: 3;

    border: 3px solid #4da3ff !important;

    box-shadow:
        inset 0 0 0 1px #4da3ff,
        0 0 10px rgba(77,163,255,0.35) !important;
}



/* ==================================================
   PANNEAU DE DÉTAIL
   ================================================== */

.bears-day-detail {
    position: sticky;

    top: 20px;

    min-height: 390px;

    padding: 0;

    overflow: hidden;

    box-sizing: border-box;

    background: #0c1418;

    border:
        1px solid rgba(255,255,255,0.18);

    border-bottom:
        3px solid #f4a51c;
}



/* IMAGE */

.bears-day-detail-image {
    width: 100%;

    background: #050505;
}


.bears-day-detail-image img {
    display: block;

    width: 100%;
    height: 300px;
    max-height: 300px;

    object-fit: contain;

    background: #050505;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}



/* TEXTE */

.bears-day-detail-content {
    padding: 22px 24px 26px;
}


.bears-day-detail-kicker {
    margin: 0 0 8px;

    color: #f4a51c !important;

    font-size: 0.86rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.bears-day-detail h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 1.75rem;
    line-height: 1.1;
    font-weight: 900;

    text-transform: uppercase;
}


.bears-day-detail-time {
    margin: 0 0 18px;

    color: #f4a51c !important;

    font-weight: 800;
}


.bears-day-detail-description {
    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 0.98rem;
    line-height: 1.55;
}



/* ==================================================
   PANNEAU INITIAL
   ================================================== */

.bears-day-detail-placeholder {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-height: 330px;

    padding: 30px 28px;

    box-sizing: border-box;
}


.bears-day-detail-placeholder h3 {
    margin-bottom: 14px;
}


.bears-day-detail-placeholder p:last-child {
    margin-bottom: 0;

    color: rgba(255,255,255,0.78);
}



/* ==================================================
   TABLETTE
   ================================================== */

@media (max-width: 1100px) {

    .bears-planning-grid {
        grid-template-columns:
            90px
            repeat(7, minmax(120px, 1fr));

        overflow-x: auto;

        padding-bottom: 10px;
    }

    .bears-calendar-day {
        min-height: 170px;
    }
}


@media (max-width: 1000px) {

    .bears-planning-feature {
        gap: 14px;
    }

    .bears-planning-feature-logo {
        flex-basis: 180px;
    }

    .bears-planning-feature-logo img {
        width: 165px;
    }

    .bears-planning-feature-text h2 {
        font-size: 1.6rem;
    }

    .bears-planning-feature-poster {
        flex-basis: 160px;
    }
}



/* ==================================================
   PANNEAU SOUS LE CALENDRIER SUR PETIT ÉCRAN
   ================================================== */

@media (max-width: 900px) {

    .bears-planning-main {
        grid-template-columns: 1fr;
    }

    .bears-day-detail {
        position: static;

        min-height: 0;
    }

    .bears-day-detail-image img {
        height: auto;
        max-height: 360px;
    }
}



/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 700px) {

    .bears-monthly-planning {
        width: calc(100% - 20px) !important;

        margin: 20px auto !important;

        padding-left: 10px;
        padding-right: 10px;

        transform: none !important;
    }


    .bears-planning-header {
        grid-template-columns: 1fr;

        gap: 0;

        min-height: 0;
    }


    .bears-planning-feature {
        flex-direction: column;

        gap: 12px;

        padding: 12px;
    }


    .bears-planning-feature-logo {
        flex: none;

        width: 100%;

        padding: 12px 0;
    }


    .bears-planning-feature-logo img {
        width: 250px;
    }


    .bears-planning-feature-highlight {
        flex-direction: column;

        min-height: 0;
    }


    .bears-planning-feature-text {
        padding: 20px;

        text-align: center;
    }


    .bears-planning-feature-text h2 {
        font-size: 1.55rem;
    }


    .bears-feature-date {
        font-size: 0.95rem;
    }


    .bears-planning-feature-poster {
        flex: none;

        width: 100%;

        padding: 12px;
    }


    .bears-planning-feature-poster img {
        width: auto;
        max-width: 230px;

        height: auto;
        max-height: none;
    }


    .bears-planning-header-text {
        min-height: 0;

        padding: 24px 22px;
    }


    .bears-planning-header-text h2 {
        font-size: 2rem !important;
    }


    .bears-planning-grid {
        grid-template-columns:
            78px
            repeat(7, 145px);

        overflow-x: auto;
    }


    .bears-day-name {
        font-size: 0.78rem;
    }


    .bears-calendar-day,
    .bears-week-label {
        min-height: 165px;
    }


    .bears-day-detail h3 {
        font-size: 1.45rem;
    }


    .bears-day-detail-content {
        padding: 18px;
    }


    .bears-day-detail-placeholder {
        min-height: 220px;
    }
}

/* ==================================================
   NO BOSS - CORRECTIONS FINALES PROPRES
   ================================================== */

/* Supprime uniquement le cadre Joomla autour du module No Boss */
.main-bottom.card {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.main-bottom.card > .card-body {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

/* Réduit l'espace interne ajouté par No Boss */
#nobosscalendar_144 {
    padding-top: 5px !important;
}

/* Le <main> de la page Soirées est vide : on ne lui réserve aucun espace */
body.itemid-103 main:empty {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==================================================
   PAGE SOIRÉES - VERSION ORDINATEUR VALIDÉE
   ================================================== */

@media (min-width: 801px) {
    /* Rapproche le planning du menu sans modifier sa mise en page */
    body.itemid-103 .main-bottom.card {
        margin-top: -140px !important;
    }
}

/* ==================================================
   PAGE SOIRÉES - VERSION MOBILE
   ================================================== */

@media (max-width: 800px) {

    /* Le module reste sous l'en-tête mobile sans remonter sous le menu */
    body.itemid-103 .main-bottom.card {
        margin-top: -45px !important;
        width: 100% !important;
    }

    body.itemid-103 .main-bottom.card > .card-body {
        padding: 0 !important;
    }

    #nobosscalendar_144 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* En-tête personnalisé du planning */
    .bears-planning-header {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        margin: 0 auto !important;
    }

    .bears-planning-feature {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 12px !important;
        box-sizing: border-box !important;
    }

    /* Logo du planning */
    .bears-planning-feature-logo {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 12px 0 !important;
    }

    .bears-planning-feature-logo img {
        width: 220px !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Bloc À NE PAS MANQUER */
    .bears-planning-feature-highlight {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .bears-planning-feature-text {
        padding: 20px 18px !important;
        text-align: center !important;
    }

    .bears-planning-feature-text h2 {
        font-size: 1.65rem !important;
        line-height: 1.05 !important;
    }

    .bears-feature-date {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    .bears-planning-feature-poster {
        flex: none !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 10px 12px 18px !important;
        box-sizing: border-box !important;
    }

    .bears-planning-feature-poster img {
        width: auto !important;
        max-width: 220px !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Le bloc titre / mois reste lisible sur smartphone */
    .bears-planning-header-text {
        min-height: 0 !important;
        padding: 24px 22px !important;
        box-sizing: border-box !important;
    }

    .bears-planning-header-text h2 {
        font-size: 2rem !important;
    }

    /* No Boss : défilement horizontal du calendrier sur mobile */
    .nobosscalendar {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch;
    }

    .nobosscalendar .calendar-section,
    .nobosscalendar table {
        min-width: 850px !important;
    }
}
/* ==================================================
   PLANNING - LOGO PLUS GRAND UNIQUEMENT SUR PC
   ================================================== */

@media (min-width: 801px) {

    .bears-planning-feature-logo {
        flex: 0 0 380px !important;
        width: 380px !important;

        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;

        padding: 0 !important;
    }

    .bears-planning-feature-logo img {
        width: 100% !important;
        height: 100% !important;

        max-width: 380px !important;
        max-height: none !important;

        object-fit: contain !important;
    }
}
/* ==================================================
   PAGE CONTACT - BEAR'S TOULOUSE
   ================================================== */

/* Conteneur principal */
.bears-contact-page .com-contact {
    max-width: 760px;
    margin: 40px auto 70px;
    padding: 34px 36px;
    background: #11161b;
    border: 1px solid rgba(244, 166, 35, 0.18);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

/* Titre du formulaire */
.bears-contact-page .contact-form h2,
.bears-contact-page .contact-form h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

/* Sous-titre */
.bears-contact-page .contact-form legend {
    margin-bottom: 8px;
    color: #f4a623;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Texte "Champ requis" */
.bears-contact-page .contact-form .star,
.bears-contact-page .contact-form .red {
    color: #f4a623;
}

/* Espacement entre les champs */
.bears-contact-page .contact-form .control-group,
.bears-contact-page .contact-form .mb-3 {
    margin-bottom: 20px;
}

/* Libellés */
.bears-contact-page .contact-form label {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-weight: 500;
}

/* Champs */
.bears-contact-page .contact-form input[type="text"],
.bears-contact-page .contact-form input[type="email"],
.bears-contact-page .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    background: #ffffff;
    color: #111111;
    border: 2px solid transparent;
    border-radius: 7px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hauteur du message */
.bears-contact-page .contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

/* Focus */
.bears-contact-page .contact-form input[type="text"]:focus,
.bears-contact-page .contact-form input[type="email"]:focus,
.bears-contact-page .contact-form textarea:focus {
    outline: none;
    border-color: #f4a623;
    box-shadow: 0 0 0 3px rgba(244, 166, 35, 0.15);
}

/* Bouton envoyer */
.bears-contact-page .contact-form button,
.bears-contact-page .contact-form .btn-primary,
.bears-contact-page .contact-form input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background: #f4a623;
    color: #111111;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Survol du bouton */
.bears-contact-page .contact-form button:hover,
.bears-contact-page .contact-form .btn-primary:hover,
.bears-contact-page .contact-form input[type="submit"]:hover {
    background: #ffb632;
    transform: translateY(-1px);
}

/* Suppression d'espaces inutiles en haut */
.bears-contact-page .contact {
    padding-top: 0;
}

.bears-contact-page .contact-form {
    margin-top: 0;
}

/* =========================
   VERSION MOBILE
   ========================= */
@media (max-width: 800px) {

    .bears-contact-page .com-contact {
        margin: 20px 14px 45px;
        padding: 24px 18px;
        border-radius: 10px;
    }

    .bears-contact-page .contact-form h2,
    .bears-contact-page .contact-form h3 {
        font-size: 1.55rem;
    }

    .bears-contact-page .contact-form legend {
        font-size: 1.1rem;
    }

    .bears-contact-page .contact-form textarea {
        min-height: 180px;
    }

    .bears-contact-page .contact-form button,
    .bears-contact-page .contact-form .btn-primary,
    .bears-contact-page .contact-form input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}
/* ==================================================
   FINITIONS DEFINITIVES - PAGE CONTACT
   ================================================== */

.bears-contact-page .com-contact {
    margin-top: 18px !important;
    border: 1px solid rgba(244, 166, 35, 0.28) !important;
}

.bears-contact-page textarea {
    min-height: 160px !important;
    height: 160px !important;
    resize: vertical;
}

.bears-contact-page .btn,
.bears-contact-page button {
    padding: 10px 20px !important;
    border-radius: 7px !important;
}
/* ==================================================
   MESSAGE DE CONFIRMATION CONTACT
   ================================================== */

.bears-contact-page .alert-success {
    background: #163d24 !important;
    border: 1px solid #2e7d32 !important;
    color: #ffffff !important;
}

.bears-contact-page .alert-success,
.bears-contact-page .alert-success p,
.bears-contact-page .alert-success div,
.bears-contact-page .alert-success span {
    color: #ffffff !important;
}

.bears-contact-page .alert-success .btn-close,
.bears-contact-page .alert-success .close {
    color: #ffffff !important;
    opacity: 1 !important;
}
/* ==================================================
   MESSAGES JOOMLA - CONFIRMATION / ERREUR
   ================================================== */

.alert-success,
joomla-alert[type="success"] {
    background: #173d24 !important;
    border-color: #2e7d32 !important;
    color: #ffffff !important;
}

.alert-success *,
joomla-alert[type="success"] * {
    color: #ffffff !important;
}

.alert-success .alert-message,
.alert-success .message,
joomla-alert[type="success"] .alert-message,
joomla-alert[type="success"] .message {
    color: #ffffff !important;
    opacity: 1 !important;
}

.alert-success .btn-close,
.alert-success .close,
joomla-alert[type="success"] .btn-close,
joomla-alert[type="success"] .close {
    color: #ffffff !important;
    opacity: 1 !important;
}
/* ==================================================
   MESSAGES JOOMLA - ERREUR
   ================================================== */

.alert-danger,
.alert-error,
joomla-alert[type="danger"],
joomla-alert[type="error"] {
    background: #7a1717 !important;
    border-color: #b71c1c !important;
    color: #ffffff !important;
}

.alert-danger *,
.alert-error *,
joomla-alert[type="danger"] *,
joomla-alert[type="error"] * {
    color: #ffffff !important;
}

.alert-danger .alert-message,
.alert-danger .message,
.alert-error .alert-message,
.alert-error .message,
joomla-alert[type="danger"] .alert-message,
joomla-alert[type="danger"] .message,
joomla-alert[type="error"] .alert-message,
joomla-alert[type="error"] .message {
    color: #ffffff !important;
    opacity: 1 !important;
}

.alert-danger .btn-close,
.alert-danger .close,
.alert-error .btn-close,
.alert-error .close,
joomla-alert[type="danger"] .btn-close,
joomla-alert[type="danger"] .close,
joomla-alert[type="error"] .btn-close,
joomla-alert[type="error"] .close {
    color: #ffffff !important;
    opacity: 1 !important;
}