/* CSS for homepage.html */

.band-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.band-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.25) !important;
}

.card-title {
    font-weight: 600;
}

.card-img-top-1 {
    height: 200px;
}

.card-img-top-2 {
    height: 300px;
    border-radius: 5px;
}

.btn-primary {
    background-color: #002e33;
    border-color: #002e33;
}

.btn-primary:hover {
    background-color: #138b90;
    border-color: #138b90;
}
