/*--------------------------------------------------------------
# events-index.css
--------------------------------------------------------------*/


.event-item-horizontal {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.event-item-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.event-item-horizontal .event-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

.event-item-horizontal .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.event-date-badge .day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.event-details-horizontal {
    padding: 30px;
}

.event-details-horizontal .event-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.event-details-horizontal .event-time {
    color: #666;
    font-size: 14px;
}

.event-details-horizontal h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.event-details-horizontal p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.event-info-row i {
    color: var(--accent-color);
    margin-right: 5px;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.btn-events, .btn-calendar {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-events {
    background: #00937a;
    color: white;
}

.btn-events:hover {
    background: #00937a;
    color: white;
}

.btn-calendar {
    background: #f8f9fa;
    color: var(--heading-color);
    border: 1px solid #dee2e6;
}

.btn-calendar:hover {
    background: #e9ecef;
}