@charset "UTF-8";

/* Genel Sayfa Ayarları */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Kurumsal Renk Tanımlamaları */
.bg-thy-red {
    background-color: #C8102E;
}

.text-thy-red {
    color: #C8102E;
}

/* Filtre Butonları Aktif Durumu */
.filter-active {
    background-color: #C8102E !important;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(200, 16, 46, 0.3);
}

/* Rota Kart Tasarımları ve Akıcı Hover Efekti */
.route-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Metin Sınırlandırma (Meta Açıklamaları İçin 2 Satır Limiti) */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CSS Pure Yükleme (Loader) Animasyonu */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #C8102E;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}