/* Home inline style block 1 */
/* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #6c757d;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 0.7;
            visibility: visible;
        }
        
        .back-to-top:hover {
            opacity: 1 !important;
            background-color: #0d6efd;
            transform: translateY(-3px);
        }
        
        /* Stili per il tema scuro */
        [data-bs-theme="dark"] {
            --bs-body-bg: #212529;
            --bs-body-color: #f8f9fa;
            background-color: #212529 !important;
            color: #f8f9fa;
        }
        
        [data-bs-theme="dark"] .navbar {
            background-color: #343a40 !important;
        }
        
        [data-bs-theme="dark"] .card {
            background-color: #2c3034;
            border-color: #444;
        }
        
        [data-bs-theme="dark"] .card-body {
            color: #f8f9fa;
        }

/* Home inline style block 2 */
.locandina-container {
                                height: 100%;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                            }
                            .locandina-link {
                                display: block;
                                width: 100%;
                                max-width: 400px;
                                height: 100%;
                                transition: transform 0.3s ease;
                            }
                            .locandina-img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                                border-radius: 8px;
                                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                                transition: all 0.3s ease;
                                max-height: 600px; /* Altezza massima per entrambe le immagini */
                            }
                            .locandina-link:hover {
                                transform: translateY(-5px);
                            }
                            .locandina-link:hover .locandina-img {
                                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
                            }
                            @media (max-width: 768px) {
                                .locandina-img {
                                    max-height: 500px;
                                }
                            }

.thank-you-text {
    font-size: 1.08rem;
    line-height: 1.72;
}

@media (max-width: 768px) {
    .thank-you-text {
        font-size: 1rem;
        line-height: 1.65;
    }
}
