/* Events Showcase — Frontend styles */

.evs-wrapper {
    --evs-card-bg:    #1e1b2e;
    --evs-accent:     #e91e8c;
    --evs-title-color:#ffffff;
    --evs-text-color: #d1d1d6;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Card ────────────────────────────────────────────── */
.evs-card {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.evs-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

/* ── LEFT: date + price ──────────────────────────────── */
.evs-col-date {
    width: 110px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 12px 24px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    gap: 4px;
}

.evs-day {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: var(--evs-accent);
}

.evs-month-year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 2px;
    text-align: center;
}

.evs-price-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    border: 1.5px solid rgba(255, 255, 255, .45);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

/* ── MIDDLE: content ─────────────────────────────────── */
.evs-col-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.evs-date-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--evs-accent);
    margin: 0 0 8px;
}

.evs-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--evs-title-color);
    margin: 0 0 6px;
}

.evs-artist {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin: 0 0 14px;
}

.evs-description {
    font-size: 14px;
    line-height: 1.65;
    color: var(--evs-text-color);
    margin: 0 0 14px;
}

.evs-price-detail {
    font-size: 13px;
    font-weight: 700;
    color: var(--evs-accent);
    margin: 0 0 18px;
}

/* ── Buttons ─────────────────────────────────────────── */
.evs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.evs-btn-primary {
    display: inline-block;
    background-color: var(--evs-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
}

.evs-btn-primary:hover {
    opacity: .85;
    transform: translateY(-2px);
}

.evs-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.evs-btn-secondary:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ── RIGHT: poster image ─────────────────────────────── */
.evs-col-image {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.evs-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.evs-card:hover .evs-col-image img {
    transform: scale(1.04);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .evs-col-image { width: 160px; }
    .evs-title { font-size: 18px; }
}

@media (max-width: 640px) {
    .evs-card {
        flex-direction: column;
    }
    .evs-col-date {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 14px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .evs-day { font-size: 36px; }
    .evs-price-badge { margin-top: 0; }
    .evs-col-content { padding: 18px 20px; }
    .evs-col-image {
        width: 100%;
        max-height: 260px;
    }
    .evs-col-image img { object-position: top center; }
}
