/* Etkinlikler Sayfası CSS */
.events-page {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.events-container {
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #0080c9;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* Sayfa Başlığı */
.events-header {
    margin-bottom: 40px;
    text-align: center;
}

.events-title {
    font-family: "Bebas Neue", cursive;
    font-size: 48px;
    color: #224a98;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.events-subtitle {
    font-size: 16px;
    color: #666;
}

/* Etkinlikler Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.event-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.event-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-logo-fallback {
    object-fit: contain !important;
    background: #f0f0f0;
    padding: 10px;
}

.event-item:hover .event-item-image img {
    transform: scale(1.05);
}

.event-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.95);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-item-content {
    padding: 20px;
}

.event-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: "Bebas Neue", cursive;
}

.event-item-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.event-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-item-meta i {
    color: #0080c9;
}

/* Sayfalama */
.events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 20px;
    background: #0080c9;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn:hover:not(.disabled) {
    background: #1a3a7a;
}

.pagination-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-number:hover {
    background: #0080c9;
    color: #fff;
}

.pagination-number.active {
    background: #0080c9;
    color: #fff;
}

.pagination-ellipsis {
    padding: 0 5px;
    color: #999;
}

/* Boş Durum */
.events-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.events-empty h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.events-empty p {
    font-size: 16px;
    color: #666;
}

