/* Etkinlikler Sayfası Özel Stilleri */
.events_page {
    padding: 60px 0;
    background: #f9f9f9;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-img {
    position: relative;
    height: 100%;
    min-height: 250px;
    background: #eee;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}

.date-badge .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.event-details {
    padding: 25px;
}

.event-details h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.event-details .meta {
    margin-bottom: 15px;
}

.event-details .meta span {
    display: inline-block;
    margin-right: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

.event-details .meta i {
    margin-right: 5px;
    color: #3498db;
}

.event-actions {
    margin-top: 20px;
}

.upcoming .event-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.upcoming-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.filter-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .event-card .row {
        flex-direction: column;
    }
    .event-img {
        min-height: 200px;
    }
}
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ffcc00;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.back-button:hover {
    background-color: #e6b800;
}
