/* Carosello */
.mCarouselImage {
    height: 700px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .mCarouselImage {
        height: 350px;
    }
}

.mCarouselCaption {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
}

@media (max-width: 767.98px) {
    .mCarouselCaption {
        padding: 10px;
    }
}


.mCarouselTitle, .mCarouselText {
    color: white;
}

.mCarouselTitle {
    padding-bottom: 10px;
}

@media (max-width: 767.98px) {
    .mCarousel {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Titoli e Sezioni */
.mSectionTitle {
    color: #ff6f61;
    font-weight: bold;
}

/* Card Attività */
.mCard {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mCard:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Bottone di Contatto */
.mFormContatto {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mFormBtnInvia {
    background-color: #ff6f61;
    border: none;
    transition: background-color 0.3s;
    padding-left: 20px;
    padding-right: 20px;
}

.mFormBtnInvia:hover {
    background-color: #ff5733;
}
