/* ============================================================
   DOSYA: frontend/css/custom.css
   Tailwind'e eklenen özel stiller
   ============================================================ */

/* Bottom nav aktif sekme animasyonu */
.nav-active {
    color: #0055FF;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Kart hover efekti */
.event-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:active {
    transform: scale(0.98);
}

/* Fiyat badge animasyonu */
@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.7; }
}
.badge-cheapest {
    animation: pulse-badge 2s infinite;
}

/* Skeleton loading efekti */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Filtre butonu aktif stili */
.filter-active {
    background-color: #0055FF;
    color: white;
    border-color: #0055FF;
}

/* Detay sayfası platform satırı hover */
.platform-row:hover {
    background-color: #EFF6FF;
    transition: background-color 0.15s ease;
}

/* Yumuşak sayfa geçişi */
.page-transition {
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Kategori chip scroll gizleme */
.chip-scroll::-webkit-scrollbar { display: none; }
.chip-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* WhatsApp buton */
.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #1DAA53;
}

/* Kategori Başlık ve Banner Gradiyentleri (Tailwind Bağımsız) */
.hero-city-banner {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: #FFFFFF;
}

.category-chip-active {
    background-color: #1E293B !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.category-chip-inactive {
    background-color: #F1F5F9;
    color: #334155;
}
.category-chip-inactive:hover {
    background-color: #E2E8F0;
    color: #0F172A;
}

/* Kart İmza Vurgusu */
.signature-box {
    background-color: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #78350F;
}
