﻿
.bg-gold {
    background-color: #a97210 !important;
    color: #fff !important;
    font-weight: 500 !important;
}
    .bg-gold:hover {
        color: #a97210 !important;
        background-color: #000000 !important;
    }
.btn-outline-gold{
        color: #a97210 !important;
    border-color: #a97210 !important;
}
.text-gold{
    color: #a97210 !important;
}
.button -gold:hover {
    background-color: #a97210 !important;
    color: #fff !important;
    border: none !important;
}

a:hover {
    color: #a97210 !important;
    text-decoration-line: underline
}
body[data-sidebar=dark] .vertical-menu, body[data-sidebar=dark] .navbar-brand-box {
    background-color: #000000 !important;
}
.ev-page .container {
    max-width: 1480px;
}
/* ✅ plus large */

.evGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 18px;
}

@media (max-width: 1200px) {
    .evGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .evGrid {
        grid-template-columns: 1fr;
    }
}

.evCard {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 14px 28px rgba(0,0,0,.08);
    border-radius: 0; /* ✅ */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .evCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 46px rgba(0,0,0,.12);
    }

.evFlyer {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0; /* ✅ */
    background: #f2f3f5;
}

.evBody {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.evTitle {
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    line-height: 1.25;
}

.evPlace {
    text-align: center;
    font-size: 13px;
    color: rgba(0,0,0,.65);
}

.evMetaRow {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.evBadge {
    border-radius: 0; /* ✅ */
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    color: #111;
}

    .evBadge.dark {
        background: #0f1013;
        color: #fff;
        border-color: #0f1013;
    }

    .evBadge.gold {
        background: rgba(169,114,16,.12);
        border-color: rgba(169,114,16,.35);
        color: #6d4706;
    }

.evFooter {
    margin-top: auto;
}

.evBtn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1013;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 0; /* ✅ */
    border: 1px solid rgba(0,0,0,.2);
}

    .evBtn:hover {
        background: #000;
        color: #fff;
    }

.evPager {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.evPage {
    min-width: 46px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0; /* ✅ */
    border: 1px solid rgba(0,0,0,.14);
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

    .evPage:hover {
        background: #0f1013;
        color: #fff;
    }

    .evPage.active {
        background: #0f1013;
        color: #fff;
        border-color: #0f1013;
    }

    .evPage.disabled {
        opacity: .45;
        pointer-events: none;
    }
/* ========================= */
/* PREMIUM FILTER BAR */
/* ========================= */

.ev-filter-wrapper {
    margin-top: 20px;
}

.ev-filter-card {
    background: rgba(0, 0, 0, 0.85); /* noir semi transparent */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    padding: 22px;
    border-radius: 0; /* ✅ pas arrondi */
}

/* layout */
.ev-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* champs */
.ev-filter-field {
    flex: 1 1 220px;
    min-width: 200px;
}

    /* input / select */
    .ev-filter-field input,
    .ev-filter-field select {
        width: 100%;
        height: 52px;
        border-radius: 0; /* ✅ pas arrondi */
        border: 1px solid rgba(0,0,0,0.15);
        padding: 0 14px;
        background: #ffffff; /* blanc net */
        outline: none;
        font-weight: 500;
        transition: border .2s ease, box-shadow .2s ease;
    }

        .ev-filter-field input:focus,
        .ev-filter-field select:focus {
            border-color: #a97210;
            box-shadow: 0 0 0 2px rgba(169,114,16,0.25);
        }

/* bouton */
.ev-filter-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 0; /* ✅ */
    background: #a97210;
    border: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 15px 30px rgba(169,114,16,0.35);
    transition: all .2s ease;
}

    .ev-filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 40px rgba(169,114,16,0.5);
    }

/* responsive */
@media (max-width: 768px) {
    .ev-filter-btn {
        width: 100%;
    }
}