/* Acetaie Aperte Event Manager - Animations */

/* Animation per il caricamento */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading-message {
    animation: pulse 1.5s infinite;
}

/* Hover transitions */
.event-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acetaie-form select,
.acetaie-form input[type="text"],
.acetaie-form input[type="email"],
.acetaie-form input[type="tel"],
.acetaie-form textarea {
    transition: all 0.3s ease;
}

.btn-book {
    transition: all 0.3s ease;
}

.btn-book::before {
    transition: left 0.5s;
}