/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}
/* Yayınevi Kartları */
.card-header {
    border-bottom: 2px solid var(--border-color);
}

.list-group-item {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-color: var(--border-color);
    transition: all 0.2s;
}

.list-group-item:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Arama Çubuğu */
#searchInput {
    border-radius: 50px;
    padding: 1rem 2rem;
}
/* Adım Numaraları */
.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Adımlar Arası Çizgi */
.row.align-items-center {
    position: relative;
}

.row.align-items-center:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px; /* Adım numarasının ortası */
    top: 100%;
    width: 2px;
    height: 50px; /* Çizgi uzunluğu */
    background-color: var(--primary-color);
    opacity: 0.3;
}