﻿/* Etkinlik Sayfası Font Tanımı */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Etkinlik Detay Sayfası Stilleri */
.event-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    overflow: hidden;
    border-radius: 10px;
}

    .event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

    .event-card img {
        object-fit: cover;
        height: 400px;
        width: 100%;
    }

.event-title {
    background: #f8f9fa;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0.6rem;
    margin: 0;
}

@media (max-width: 576px) {
    .event-card img {
        height: 180px;
    }
}
