/* =================================================================== */
/* 1. ETKİNLİKLER SAYFASI (etkinlikler.html) STİLLERİ */
/* =================================================================== */

.events-page {
    background: rgba(255, 255, 255, 0.9);
}

.events-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.event-card-full {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.event-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.event-image-full {
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0;
    border-radius: 0;
}

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

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

.event-content-full {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-content-full h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.event-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.event-info span {
    margin-right: 1rem;
}

.event-content-full p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* =================================================================== */
/* 2. ETKİNLİKLER SAYFASI RESPONSIVE */
/* =================================================================== */

@media (max-width: 768px) {
    .events-grid-full {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .event-card-full {
        max-width: 100%;
    }
    
    .event-image-full {
        height: 400px;
    }
    
    .event-content-full {
        padding: 1.5rem;
        text-align: center;
    }
    
    .event-content-full h3 {
        font-size: 1.3rem;
    }
    
    .event-info {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .event-content-full p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}