/* ══════════════════════════════════════════════════
   OMEGA CLUB MANAGER — Frontend Styles
   Couleurs : #c8a96e (or), #000 (noir), #fff (blanc)
   ══════════════════════════════════════════════════ */

/* ── ÉVÉNEMENTS GRID ── */
.ocm-evenements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.ocm-event-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}
.ocm-event-card:hover {
    transform: translateY(-4px);
    border-color: #c8a96e;
}

.ocm-event-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.ocm-event-body {
    padding: 20px;
}

.ocm-event-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid #c8a96e;
    padding-bottom: 10px;
}

.ocm-event-date,
.ocm-event-heure,
.ocm-event-prix {
    font-size: 13px;
    color: #c8a96e;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ocm-event-desc {
    font-size: 13px;
    color: #aaa;
    margin: 12px 0;
    line-height: 1.6;
}

.ocm-event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ── BOUTONS ── */
.ocm-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all .2s ease;
    cursor: pointer;
}
.ocm-btn-gold {
    background: #c8a96e;
    color: #000;
    border: 2px solid #c8a96e;
}
.ocm-btn-gold:hover {
    background: #e8c98e;
    border-color: #e8c98e;
    color: #000;
}
.ocm-btn-outline {
    background: transparent;
    color: #c8a96e;
    border: 2px solid #c8a96e;
}
.ocm-btn-outline:hover {
    background: #c8a96e;
    color: #000;
}
.ocm-btn-gold-sm {
    background: #c8a96e;
    color: #000;
    border: none;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

/* ── ÉVÉNEMENTS HOME (version compacte) ── */
.ocm-evenements-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.ocm-home-card {
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #222;
    transition: border-color .2s;
}
.ocm-home-card:hover { border-color: #c8a96e; }

.ocm-home-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ocm-home-card-info {
    padding: 16px;
}
.ocm-home-card-info h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    border-bottom: 1px solid #c8a96e;
    padding-bottom: 8px;
}
.ocm-home-date {
    color: #c8a96e;
    font-size: 13px;
    margin: 0 0 12px;
}

/* ── ARTISTES GRID ── */
.ocm-artistes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.ocm-artiste-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
    text-align: center;
}
.ocm-artiste-card:hover {
    transform: translateY(-4px);
    border-color: #c8a96e;
}

.ocm-artiste-photo {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center top;
    background-color: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ocm-artiste-placeholder {
    font-size: 48px;
    opacity: .3;
}

.ocm-artiste-info {
    padding: 16px;
    background: #111;
}

.ocm-artiste-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 6px;
    border-bottom: 1px solid #c8a96e;
    padding-bottom: 8px;
}

.ocm-artiste-genre {
    font-size: 12px;
    color: #c8a96e;
    margin: 6px 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ocm-artiste-bio {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
    margin: 8px 0;
}

.ocm-artiste-insta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c8a96e;
    font-size: 13px;
    text-decoration: none;
    margin-top: 10px;
    padding: 6px 14px;
    border: 1px solid #c8a96e;
    border-radius: 20px;
    transition: all .2s;
}
.ocm-artiste-insta:hover {
    background: #c8a96e;
    color: #000;
}

/* ── VIDE ── */
.ocm-empty {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ocm-evenements-grid,
    .ocm-evenements-home,
    .ocm-artistes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .ocm-evenements-grid,
    .ocm-evenements-home,
    .ocm-artistes-grid {
        grid-template-columns: 1fr;
    }
}
