/*
 Theme Name: Astra Child
 Theme URI: https://wpastra.com/
 Description: Motyw potomny dla Astra
 Author: Twoja nazwa
 Author URI: https://city-guide.info/
 Template: astra
 Version: 1.0.0
*/

@import url("../astra/style.css");

/* Dodawaj własne style poniżej */
.card-img-top {
    object-fit: cover;
}

.city-card img {
    transition: transform 0.5s ease;
    /* płynna animacja */
}

.city-card:hover img {
    transform: scale(1.1);
    /* zoom in */
}

/* ✅ Karty artykułów – uniesienie + cień */
.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}