/* css-animations.css - ANIMACJE I EFEKTY PRZEJŚĆ - Sebolazty ADV */

/* --- EFEKT SCROLL REVEAL (POŚLIZG) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Opóźnienie dla kart wypraw, by wjeżdżały z lekkim odstępem */
.tour-card.reveal {
    transition-delay: 0.1s;
}

/* --- OGÓLNE PRZEJŚCIA (TRANSITIONS) --- */
.btn, .social-links a, .main-nav a, .gallery-img-wrapper img {
    transition: all 0.3s ease;
}