.event-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Better Card Body Spacing */
.card-body {
    text-align: center;
    padding: 18px 16px;
}

/* Title */
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */
.card-text.font-size-md {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5 !important;
    margin-bottom: 12px;
}

/* Date and Booking Text */
.card-text.small.text-muted {
    font-size: 13px;
    line-height: 1.4 !important;
    margin-bottom: 8px;
    color: #6c757d;
}

/* Button */
.btn-event {
    display: inline-block;        /* makes span behave like a button */
    text-align: center;
    min-width: 150px;             /* same width for all buttons */
    background-color: #FB9418;
    color: white;
    border-radius: 20px;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 14px;              /* same text size */
    transition: 0.3s;
    text-decoration: none;
}

.btn-event:hover {
    background-color: #fb9418c4;
    color: white;
}

.btn-disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.8;
}


/* Badge */
.event-image-wrapper {
    position: relative;
}

.event-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.badge-active {
    background-color: #28a745;
}

.badge-coming {
    background-color: #ffc107;
}

.badge-closed {
    background-color: #6c757d;
}
