/* Events Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Event Image */
.event-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

/* Event Content */
.event-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Event Meta */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.event-meta-item i {
    color: #DC2626;
    font-size: 14px;
    width: 16px;
}

/* Event Actions */
.event-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-reserve,
.btn-details {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-reserve {
    background-color: #DC2626;
    color: #fff;
}

.btn-reserve:hover {
    background-color: #B91C1C;
    color: #fff;
}

.btn-details {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
}

.btn-details:hover {
    background-color: #f5f5f5;
    border-color: #d4d4d4;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-title {
        font-size: 18px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .btn-reserve,
    .btn-details {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
