.sfondo {
    background-image: linear-gradient(rgba(223, 237, 242, 0.7), rgba(223, 237, 242, 0.7)), url('../img/unplash.jpg');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    min-height: calc(100vh - 56px - 60px);
    padding: 1px 20px;
}

.card-custom {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15)
}


/* Stile immagine in cima alla card (se presente) */
.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.button {
    display: inline-block;
    background-color: #A3B4BF;
    color: #2d3c3f;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #718891;
    color: #DFEDF2;
}

.icone-social a {
    color: #1d2628;
    font-size: 1.3rem; 
    transition: all 0.3s ease;
    display: inline-block;
}

.icone-social a:hover {
    color: #678b99;
    transform: translateY(-3px);
}

.hover-youtube:hover {
    background-color: #ff0000;
    color: white;
}
.hover-youtube:hover .bi-youtube {
    color: white !important;
}
.hover-soundcloud:hover {
    background-color: #ff5500;
    color: white;
}
.hover-soundcloud:hover .bi-cloud-fill {
    color: white !important;
}