/* Stili personalizzati per TamTam */

/* Fullscreen mobile support */
@supports (-webkit-touch-callout: none) {
    /* iOS specific */
    body {
        min-height: -webkit-fill-available;
    }
}

/* Animazioni personalizzate */
@keyframes pulse-soft {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse-soft {
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Stili per le card foto */
.photo-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Miglioramenti per mobile */
@media (max-width: 640px) {
    .photo-card img {
        height: 300px !important;
    }
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3B82F6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

